[IMP] product_expiry: fix English capitalization

bzr revid: rco@openerp.com-20120509135050-xmqpjdgcqhlz9b5e
This commit is contained in:
Raphael Collet 2012-05-09 15:50:50 +02:00
parent 119ad7b806
commit 44e8013b39
1 changed files with 5 additions and 5 deletions

View File

@ -50,7 +50,7 @@ class stock_production_lot(osv.osv):
help='The date on which the lot starts deteriorating without becoming dangerous.'),
'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."),
'alert_date': fields.datetime('Alert Date', help="The date on which an alert should be notified about the serial number."),
}
# Assign dates according to products data
def create(self, cr, uid, vals, context=None):
@ -78,12 +78,12 @@ 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='The number of days before a serial number may become dangerous and should 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='The number of days before a serial number starts deteriorating without becoming dangerous.'),
'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='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."),
}
product_product()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: