Merge lp:~openerp-commiter/openobject-addons/6_0_bug_768368 into lp:openobject-addons/6.0

Proposed by Lorenzo Battistini
Status: Needs review
Proposed branch: lp:~openerp-commiter/openobject-addons/6_0_bug_768368
Merge into: lp:openobject-addons/6.0
Diff against target: 16 lines (+4/-2)
1 file modified
sale/sale.py (+4/-2)
To merge this branch: bzr merge lp:~openerp-commiter/openobject-addons/6_0_bug_768368
Reviewer Review Type Date Requested Status
OpenERP Core Team Pending
Review via email: mp+59651@code.launchpad.net

Description of the change

To post a comment you must log in.

Unmerged revisions

4554. By Lorenzo Battistini

[FIX] sale installation wizard offers two choices for order_policy instead of 4

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'sale/sale.py'
2--- sale/sale.py 2011-01-19 08:38:17 +0000
3+++ sale/sale.py 2011-05-02 10:55:50 +0000
4@@ -1178,8 +1178,10 @@
5 ('one', 'All at Once')
6 ], 'Picking Default Policy', required=True, help="The Shipping Policy is used to configure per order if you want to deliver as soon as possible when one product is available or you wait that all products are available.."),
7 'order_policy': fields.selection([
8- ('manual', 'Invoice Based on Sales Orders'),
9- ('picking', 'Invoice Based on Deliveries'),
10+ ('prepaid', 'Payment Before Delivery'),
11+ ('manual', 'Shipping & Manual Invoice'),
12+ ('postpaid', 'Invoice On Order After Delivery'),
13+ ('picking', 'Invoice From The Picking'),
14 ], 'Shipping Default Policy', required=True,
15 help="You can generate invoices based on sales orders or based on shippings."),
16 'step': fields.selection([