Merge lp:~camptocamp/prestashoperpconnect/fix-quantity-mapping-on-sale_order_line_RDE into lp:prestashoperpconnect

Proposed by Romain Deheele - Camptocamp
Status: Merged
Merged at revision: 271
Proposed branch: lp:~camptocamp/prestashoperpconnect/fix-quantity-mapping-on-sale_order_line_RDE
Merge into: lp:prestashoperpconnect
Diff against target: 11 lines (+1/-1)
1 file modified
prestashoperpconnect/unit/mapper.py (+1/-1)
To merge this branch: bzr merge lp:~camptocamp/prestashoperpconnect/fix-quantity-mapping-on-sale_order_line_RDE
Reviewer Review Type Date Requested Status
arthru Approve
Review via email: mp+192322@code.launchpad.net

Description of the change

Hello,

This branch fixes sale.order.line mapping to provide the correct quantity.

Regards,

Romain

To post a comment you must log in.
Revision history for this message
Maxime Jacquet (m-jacquet) wrote :

Hi,
Looks good to me !

Maxime

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/unit/mapper.py'
2--- prestashoperpconnect/unit/mapper.py 2013-10-14 15:08:06 +0000
3+++ prestashoperpconnect/unit/mapper.py 2013-10-23 12:29:37 +0000
4@@ -408,7 +408,7 @@
5 ('product_name', 'name'),
6 ('id', 'sequence'),
7 ('product_price', 'price_unit'),
8- ('unit_price_tax_excl', 'product_uom_qty'),
9+ ('product_quantity', 'product_uom_qty'),
10 ('reduction_percent', 'discount'),
11 ]
12