bzr revid: rde-ba0444cb8637f4bf874073c58de26387dee7c1de

This commit is contained in:
rde 2007-05-14 08:39:26 +00:00
parent e3a3d8b856
commit e83beb72df
1 changed files with 2 additions and 4 deletions

View File

@ -133,13 +133,11 @@ class sale_order(osv.osv):
('postpaid','Automatic Invoice after delivery'),
('picking','Invoice from the pickings'),
], 'Shipping Policy', required=True, readonly=True, states={'draft':[('readonly',False)]},
help="""
The Shipping Policy is used to synchronise invoice and delivery operations.
help="""The Shipping Policy is used to synchronise invoice and delivery operations.
- The 'Pay before delivery' choice will first generate the invoice and then generate the picking order after the payment of this invoice.
- The 'Shipping & Manual Invoice' will create the picking order directly and wait for the user to manually click on the 'Invoice' button to generate the draft invoice.
- The 'Invoice after delivery' choice will generate the draft invoice after the picking list have been finished.
- The 'Invoice from the pickings' choice is used to create an invoice during the picking process.
"""),
- The 'Invoice from the pickings' choice is used to create an invoice during the picking process."""),
'pricelist_id':fields.many2one('product.pricelist', 'Pricelist', required=True, readonly=True, states={'draft':[('readonly',False)]}),
'project_id':fields.many2one('account.analytic.account', 'Profit/Cost Center', readonly=True, states={'draft':[('readonly', False)]}),