Merge lp:~magentoerpconnect-community/magentoerpconnect/fix-grouped-product-export into lp:magentoerpconnect/oerp6.1-oldstable

Status: Merged
Merge reported by: Guewen Baconnier @ Camptocamp
Merged at revision: not available
Proposed branch: lp:~magentoerpconnect-community/magentoerpconnect/fix-grouped-product-export
Merge into: lp:magentoerpconnect/oerp6.1-oldstable
Diff against target: 11 lines (+1/-1)
1 file modified
magentoerpconnect/product.py (+1/-1)
To merge this branch: bzr merge lp:~magentoerpconnect-community/magentoerpconnect/fix-grouped-product-export
Reviewer Review Type Date Requested Status
Guewen Baconnier @ Camptocamp Approve
Sébastien BEAU - http://www.akretion.com Pending
Review via email: mp+98507@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Guewen Baconnier @ Camptocamp (gbaconnier-c2c) wrote :

Thanks

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'magentoerpconnect/product.py'
2--- magentoerpconnect/product.py 2012-03-16 10:42:08 +0000
3+++ magentoerpconnect/product.py 2012-03-20 20:15:29 +0000
4@@ -1285,7 +1285,7 @@
5 child_ids = []
6 product_type = self.read(cr, uid, id, ['product_type'])['product_type']
7 if product_type == 'grouped': # lookup for Magento "grouped product"
8- quantities, childs_ids = self.action_before_exporting_grouped_product(cr, uid, id, external_referential_ids, defaults, context)
9+ quantities, child_ids = self.action_before_exporting_grouped_product(cr, uid, id, external_referential_ids, defaults, context)
10
11 self.action_before_exporting(cr, uid, id, product_type, external_referential_ids, defaults, context=context)
12