[IMP]: procurement: Improved tooltip for min-max qty of minimun stock rule

bzr revid: rpa@tinyerp.com-20110420061348-uy8xmycbeehfa7l3
This commit is contained in:
Rucha (Open ERP) 2011-04-20 11:43:48 +05:30
parent eeaa825232
commit 71049f8bb6
1 changed files with 3 additions and 3 deletions

View File

@ -512,11 +512,11 @@ class stock_warehouse_orderpoint(osv.osv):
'product_id': fields.many2one('product.product', 'Product', required=True, ondelete='cascade', domain=[('type','=','product')]),
'product_uom': fields.many2one('product.uom', 'Product UOM', required=True),
'product_min_qty': fields.float('Min Quantity', required=True,
help="When the virtual stock goes below the Min Quantity, OpenERP generates "\
help="When the virtual stock goes below the Min Quantity specified for this field, OpenERP generates "\
"a procurement to bring the virtual stock to the Max Quantity."),
'product_max_qty': fields.float('Max Quantity', required=True,
help="When the virtual stock goes below the Max Quantity, OpenERP generates "\
"a procurement to bring the virtual stock to the Max Quantity."),
help="When the virtual stock goes below the Min Quantity, OpenERP generates "\
"a procurement to bring the virtual stock to the Quantity specified as Max Quantity."),
'qty_multiple': fields.integer('Qty Multiple', required=True,
help="The procurement quantity will be rounded up to this multiple."),
'procurement_id': fields.many2one('procurement.order', 'Latest procurement', ondelete="set null"),