Commit 36533273 authored by Sebastien Robin's avatar Sebastien Robin

do not use variation, only categories


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2168 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 984032fb
...@@ -843,7 +843,11 @@ class ERP5ShopOrderConduit(ERP5Conduit): ...@@ -843,7 +843,11 @@ class ERP5ShopOrderConduit(ERP5Conduit):
category_list.append(customer_product_variation_list[variation_key]) category_list.append(customer_product_variation_list[variation_key])
#object.setVariationBaseCategoryList(customer_product_base_variation_list) #object.setVariationBaseCategoryList(customer_product_base_variation_list)
# # TODO : fix this # # TODO : fix this
object.setVariationCategoryList(category_list) #object.setVariationCategoryList(category_list)
previous_category_list = object.getCategoryList()
LOG('ERP5ShopOrderConduit, previous_category_list',0,previous_category_list)
category_list = list(previous_category_list) + list(category_list)
object.setCategoryList(category_list)
# Do all workflow change at the end # Do all workflow change at the end
LOG("enter workflow loop >>>>>>>>",0,repr(workflow_joblist)) LOG("enter workflow loop >>>>>>>>",0,repr(workflow_joblist))
......
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