[IMP] Product : Help corrected for uos conversion

bzr revid: jvo@tinyerp.com-20100517151035-ehsk3cm11s8xnq33
This commit is contained in:
Jay (Open ERP) 2010-05-17 20:40:35 +05:30
parent 5af7c635b6
commit f750c8b4d8
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class product_template(osv.osv):
help='Used by companies that manage two units of measure: invoicing and inventory management. For example, in food industries, you will manage a stock of ham but invoice in Kg. Keep empty to use the default UOM.'),
'uos_coeff': fields.float('UOM -> UOS Coeff', digits=(16,4),
help='Coefficient to convert UOM to UOS\n'
' uos = uos * coeff'),
' uos = uom * coeff'),
'mes_type': fields.selection((('fixed', 'Fixed'), ('variable', 'Variable')), 'Measure Type', required=True),
'seller_delay': fields.function(_calc_seller_delay, method=True, type='integer', string='Supplier Lead Time', help="This is the average delay in days between the purchase order confirmation and the reception of goods for this product and for the default supplier. It is used by the scheduler to order requests based on reordering delays."),
'seller_ids': fields.one2many('product.supplierinfo', 'product_id', 'Partners'),