[REF] stock help tooltip improved
authorQuentin (OpenERP) <qdp-launchpad@openerp.com>
Fri, 28 Mar 2014 14:16:52 +0000 (15:16 +0100)
committerQuentin (OpenERP) <qdp-launchpad@openerp.com>
Fri, 28 Mar 2014 14:16:52 +0000 (15:16 +0100)
bzr revid: qdp-launchpad@openerp.com-20140328141652-c3m8we42rtnz575v

addons/stock/stock.py

index 2e1d99b..9152f51 100644 (file)
@@ -2378,7 +2378,7 @@ class stock_inventory(osv.osv):
 
     _columns = {
         'name': fields.char('Inventory Reference', size=64, required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Inventory Name."),
-        'date': fields.datetime('Inventory Date', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="Inventory Create Date."),
+        'date': fields.datetime('Inventory Date', required=True, readonly=True, states={'draft': [('readonly', False)]}, help="The date that will be used for the validation date of the stock move related to this inventory (and for the valuation accounting entries, if any)"),
         'line_ids': fields.one2many('stock.inventory.line', 'inventory_id', 'Inventories', readonly=False, states={'done': [('readonly', True)]}, help="Inventory Lines."),
         'move_ids': fields.one2many('stock.move', 'inventory_id', 'Created Moves', help="Inventory Moves.", states={'done': [('readonly', True)]}),
         'state': fields.selection([('draft', 'Draft'), ('cancel', 'Cancelled'), ('confirm', 'In Progress'), ('done', 'Validated')], 'Status', readonly=True, select=True),