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
1=== modified file 'prestashoperpconnect/product.py'
2--- prestashoperpconnect/product.py 2013-09-25 13:50:40 +0000
3+++ prestashoperpconnect/product.py 2013-10-08 08:58:33 +0000
4@@ -175,7 +175,7 @@
5 ('description_short', 'description_short_html'),
6 ('weight', 'weight'),
7 ('wholesale_price', 'standard_price'),
8- ('price', 'lst_price'),
9+ ('price', 'list_price'),
10 ('date_add', 'date_add'),
11 ('date_upd', 'date_upd'),
12 ('id_shop_default', 'default_shop_id'),