Merge lp:~camptocamp/prestashoperpconnect/fix-sale-price-mapping into lp:prestashoperpconnect

Proposed by Romain Deheele - Camptocamp
Status: Merged
Merged at revision: 260
Proposed branch: lp:~camptocamp/prestashoperpconnect/fix-sale-price-mapping
Merge into: lp:prestashoperpconnect
Diff against target: 12 lines (+1/-1)
1 file modified
prestashoperpconnect/product.py (+1/-1)
To merge this branch: bzr merge lp:~camptocamp/prestashoperpconnect/fix-sale-price-mapping
Reviewer Review Type Date Requested Status
arthru Approve
Review via email: mp+189788@code.launchpad.net

Description of the change

Hello,

Product import doesn't update the sale price in OpenERP.
This branch changes price mapping : set list_price instead of lst_price.

Best Regards,

Romain

To post a comment you must log in.
Revision history for this message
arthru (arthru) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'prestashoperpconnect/product.py'
--- prestashoperpconnect/product.py 2013-09-25 13:50:40 +0000
+++ prestashoperpconnect/product.py 2013-10-08 08:58:33 +0000
@@ -175,7 +175,7 @@
175 ('description_short', 'description_short_html'),175 ('description_short', 'description_short_html'),
176 ('weight', 'weight'),176 ('weight', 'weight'),
177 ('wholesale_price', 'standard_price'),177 ('wholesale_price', 'standard_price'),
178 ('price', 'lst_price'),178 ('price', 'list_price'),
179 ('date_add', 'date_add'),179 ('date_add', 'date_add'),
180 ('date_upd', 'date_upd'),180 ('date_upd', 'date_upd'),
181 ('id_shop_default', 'default_shop_id'),181 ('id_shop_default', 'default_shop_id'),