details:   /erp/devel/pi/rev/5d6088b23934
changeset: 11155:5d6088b23934
user:      Iván Perdomo <ivan.perdomo <at> openbravo.com>
date:      Wed Mar 09 19:00:50 2011 +0100
summary:   Fixes issue 16190: Avoid skiping not updatable properties are they 
are UI concept

diffstat:

 
modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonToDataConverter.java
 |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 46ebbcd9c34e -r 5d6088b23934 
modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonToDataConverter.java
--- 
a/modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonToDataConverter.java
        Wed Mar 09 18:55:52 2011 +0100
+++ 
b/modules/org.openbravo.service.json/src/org/openbravo/service/json/JsonToDataConverter.java
        Wed Mar 09 19:00:50 2011 +0100
@@ -723,7 +723,8 @@
     // do not change not changeable properties
     doNotHandleThisProperty |= property.isInactive();
     // do not change not updatable properties
-    doNotHandleThisProperty |= !obObject.isNewOBObject() && 
!property.isUpdatable();
+    // Updatable is a UI concept
+    // doNotHandleThisProperty |= !obObject.isNewOBObject() && 
!property.isUpdatable();
     return doNotHandleThisProperty;
   }
 

------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits

Reply via email to