string added start and end

This commit is contained in:
projectsodoo 2020-12-28 11:15:10 +05:30
parent 7f19a411c8
commit 596308549c
1 changed files with 2 additions and 2 deletions

View File

@ -8,8 +8,8 @@ from odoo.osv import expression
class AccountAnalyticLine(models.Model):
_inherit = 'account.analytic.line'
start_time = fields.Float('Start Time', digits=(16, 2))
end_time = fields.Float('End Time', digits=(16, 2))
start_time = fields.Float(string='Start Time', digits=(16, 2))
end_time = fields.Float(string='End Time', digits=(16, 2))
_sql_constraints = [