From afffc5418d4236bffd14ff1eace977c22698f3bb Mon Sep 17 00:00:00 2001 From: rde <> Date: Fri, 4 May 2007 10:21:02 +0000 Subject: [PATCH] Fixed typo in sale.py bzr revid: rde-48daaa9cc40d0457dc1ee0439d5a6a57b65398ca --- addons/sale/sale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sale/sale.py b/addons/sale/sale.py index a8d8aa6bef0..a490b31f54d 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -132,7 +132,7 @@ class sale_order(osv.osv): ('manual','Shipping & Manual Invoice'), ('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 invoive 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 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 finnished"), + ], 'Shipping Policy', required=True, readonly=True, states={'draft':[('readonly',False)]}, help="The Shipping Policy is used to synchronise invoive 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 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"), '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)]}),