[IMP] sale.order: improve English in labels and tooltips

bzr revid: rco@openerp.com-20120427133326-ofsz2ovqidalx4y3
This commit is contained in:
Raphael Collet 2012-04-27 15:33:26 +02:00
parent 33deda8f83
commit 00ee3bccd2
1 changed files with 10 additions and 9 deletions

View File

@ -222,16 +222,17 @@ class sale_order(osv.osv):
'incoterm': fields.many2one('stock.incoterms', 'Incoterm', help="Incoterm which stands for 'International Commercial terms' implies its a series of sales terms which are used in the commercial transaction."),
'picking_policy': fields.selection([('direct', 'Deliver each product when available'), ('one', 'Deliver all products at once')],
'Ship Policy', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="""If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?"""),
'Shipping Policy', required=True, readonly=True, states={'draft': [('readonly', False)]},
help="""If you don't have enough stock available to deliver all at once, do you accept partial shipments or not?"""),
'order_policy': fields.selection([
('prepaid', 'Before Delivery'),
('manual', 'On Demand'),
('picking', 'On Delivery Order'),
], 'Create Invoice', required=True, readonly=True, states={'draft': [('readonly', False)]},
help="""The Create Invoice is used to synchronise invoice and delivery operations.
- The 'Before Delivery' choice will create the draft invoice and the invoice must be paid before the delivery.
- The 'On Demand' will create the picking order directly and wait for the user to manually click on the 'Invoice' button to generate the draft invoice based on the sale order or the sale order lines.
- The 'On Delivery Order' choice will generate the draft invoice based on sales order after all picking lists have been finished."""),
('manual', 'On Demand'),
('picking', 'On Delivery Order'),
('prepaid', 'Before Delivery'),
], 'Create Invoice', required=True, readonly=True, states={'draft': [('readonly', False)]},
help="""This field controls how invoice and delivery operations are synchronized.
- With 'On Demand', the invoice is created manually when needed.
- With 'On Delivery Order', a draft invoice is generated after all pickings have been processed.
- With 'Before Delivery', a draft invoice is created, and it must be paid before delivery."""),
'pricelist_id': fields.many2one('product.pricelist', 'Pricelist', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Pricelist for current sales order."),
'project_id': fields.many2one('account.analytic.account', 'Contract/Analytic Account', readonly=True, states={'draft': [('readonly', False)]}, help="The analytic account related to a sales order."),