[Erp5-report] r17920 - /erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py

nobody at svn.erp5.org nobody at svn.erp5.org
Fri Nov 30 14:01:08 CET 2007


Author: aurel
Date: Fri Nov 30 14:01:07 2007
New Revision: 17920

URL: http://svn.erp5.org?rev=17920&view=rev
Log:
modify way to import bank account inventory to follow their new
structure 

Modified:
    erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py

Modified: erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py
URL: http://svn.erp5.org/erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py?rev=17920&r1=17919&r2=17920&view=diff
==============================================================================
--- erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py (original)
+++ erp5/trunk/products/ERP5SyncML/Conduit/BaobabConduit.py Fri Nov 30 14:01:07 2007
@@ -478,16 +478,18 @@
     ### handle bank account inventory objects
     elif portal_type == 'Bank Account Inventory':
       if bank_account_inventory_module == None: return None
-      subobject = bank_account_inventory_module.newContent( portal_type = 'Bank Account Inventory'
+      subobject = bank_account_inventory_module.newContent( portal_type = 'Bank Account Inventory Group'
                                                           , id          = object_id
                                                           )
 
     ### handle bank account inventory line objects
     elif portal_type == 'Bank Account Inventory Line':
-      subobject = object.newContent( portal_type = 'Bank Account Inventory Line'
+      subobject = object.newContent( portal_type = 'Bank Account Inventory'
                                    , id          = object_id
                                    )
-
+      subsubobject = subobject.newContent( portal_type = 'Bank Account Inventory Line'
+                                   , id          = 'line'
+                                          )
     return subobject
 
 
@@ -610,14 +612,18 @@
 
     ### Bank Account Inventory Line objects needs two properties to get the right bank account object
     # This part is only usefull for bank account inventory line, it is not used for most portal types
-    if object.getPortalType() == 'Bank Account Inventory Line':
+    if object.getPortalType() == 'Bank Account Inventory':
+      line = object['line']
       # Make sure variables will be defined
       currency_id         = None
       bank_account_number = None
       for k,v in kw.items():
         if k == 'currency'      : currency_id         = v
         if k == 'account_number': bank_account_number = v
+        if k == "amount"        : quantity            = float(v)
       # try to find the bank account
+      line.setQuantity(quantity)
+
       if bank_account_number != None:
         bank_account_object = None
         # We use here the catalog in order to find very quickly




More information about the Erp5-report mailing list