X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fproduct_expiry%2Fproduct_expiry.py;h=e4ed28db4e6609e1aab70bdb52327e25c829bf22;hb=c196424dca20493468aaba6da09fb0e1abdcdd1f;hp=c16ccc2b1eeaced5aba85058ae9e41f0f6331d4c;hpb=d37a79d0da41c4dd9e537bf18f2aa8ee19c95325;p=odoo%2Fodoo.git diff --git a/addons/product_expiry/product_expiry.py b/addons/product_expiry/product_expiry.py index c16ccc2..e4ed28d 100644 --- a/addons/product_expiry/product_expiry.py +++ b/addons/product_expiry/product_expiry.py @@ -45,12 +45,13 @@ class stock_production_lot(osv.osv): _columns = { 'life_date': fields.datetime('End of Life Date', - help='The date on which the lot may become dangerous and should not be consumed.'), + help='This is the date on which the goods with this Serial Number may become dangerous and must not be consumed.'), 'use_date': fields.datetime('Best before Date', - help='The date on which the lot starts deteriorating without becoming dangerous.'), + help='This is the date on which the goods with this Serial Number start deteriorating, without being dangerous yet.'), 'removal_date': fields.datetime('Removal Date', - help='The date on which the lot should be removed.'), - 'alert_date': fields.datetime('Alert Date', help="The date on which an alert should be notified about the serial number."), + help='This is the date on which the goods with this Serial Number should be removed from the stock.'), + 'alert_date': fields.datetime('Alert Date', + help="This is the date on which an alert should be notified about the goods with this Serial Number."), } # Assign dates according to products data def create(self, cr, uid, vals, context=None): @@ -78,12 +79,13 @@ class product_product(osv.osv): _inherit = 'product.product' _columns = { 'life_time': fields.integer('Product Life Time', - help='The number of days before a serial number may become dangerous and should not be consumed.'), + help='When a new a Serial Number is issued, this is the number of days before the goods may become dangerous and must not be consumed.'), 'use_time': fields.integer('Product Use Time', - help='The number of days before a serial number starts deteriorating without becoming dangerous.'), + help='When a new a Serial Number is issued, this is the number of days before the goods starts deteriorating, without being dangerous yet.'), 'removal_time': fields.integer('Product Removal Time', - help='The number of days before a serial number should be removed.'), - 'alert_time': fields.integer('Product Alert Time', help="The number of days after which an alert should be notified about the serial number."), + help='When a new a Serial Number is issued, this is the number of days before the goods should be removed from the stock.'), + 'alert_time': fields.integer('Product Alert Time', + help='When a new a Serial Number is issued, this is the number of days before an alert should be notified.'), } product_product() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: