Commit 0c0fe812 authored by Sebastien Robin's avatar Sebastien Robin

corrected so that we do not use targets any more


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2548 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent ebebc1e5
...@@ -345,8 +345,8 @@ class ERP5ShopOrderConduit(ERP5Conduit): ...@@ -345,8 +345,8 @@ class ERP5ShopOrderConduit(ERP5Conduit):
# The object is a ShopOrder # The object is a ShopOrder
if kw.has_key('country'): if kw.has_key('country'):
object.setTargetStartDate(kw['target_start_date']) object.setStartDate(kw['target_start_date'])
object.setTargetStopDate(kw['target_stop_date']) object.setStopDate(kw['target_stop_date'])
# Find the organisation and the person folder # Find the organisation and the person folder
person_path = erp5_site_path + '/person' person_path = erp5_site_path + '/person'
person_folder = erp5_site.restrictedTraverse(person_path) person_folder = erp5_site.restrictedTraverse(person_path)
...@@ -845,7 +845,7 @@ class ERP5ShopOrderConduit(ERP5Conduit): ...@@ -845,7 +845,7 @@ class ERP5ShopOrderConduit(ERP5Conduit):
opt_order_line_object.setQuantityUnit('unit') opt_order_line_object.setQuantityUnit('unit')
opt_order_line_object.setPrice(opt_prod_price) opt_order_line_object.setPrice(opt_prod_price)
# There is the same quantity of the base product # There is the same quantity of the base product
opt_order_line_object.setTargetQuantity(kw['quantity']) opt_order_line_object.setQuantity(kw['quantity'])
# Link the Order Line with the product # Link the Order Line with the product
opt_order_line_object.setResource("product/" + opt_prod_id) opt_order_line_object.setResource("product/" + opt_prod_id)
...@@ -862,7 +862,7 @@ class ERP5ShopOrderConduit(ERP5Conduit): ...@@ -862,7 +862,7 @@ class ERP5ShopOrderConduit(ERP5Conduit):
# break # break
# Migrate the line informations # Migrate the line informations
object.setTargetQuantity(kw['quantity']) object.setQuantity(kw['quantity'])
object.setDescription(kw['title']) object.setDescription(kw['title'])
object.setQuantityUnit('unit') object.setQuantityUnit('unit')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment