[ADD]add log object for fuel, insurance, services

bzr revid: csn@openerp.com-20120921151022-yjp2vtpic6vl18kl
This commit is contained in:
Cedric Snauwaert 2012-09-21 17:10:22 +02:00
parent 059f36dd89
commit 70b5da1183
1 changed files with 21 additions and 0 deletions

View File

@ -98,6 +98,27 @@ class fleet_vehicle_log(osv.Model):
}
class fleet_vehicle_log_fuel(osv.Model):
_inherit = 'fleet.vehicle.log'
_name = 'fleet.vehicle.log.fuel'
_columns = {
'description' : fields.text('Description'),
}
class fleet_vehicle_log_insurance(osv.Model):
_inherit = 'fleet.vehicle.log'
_name = 'fleet.vehicle.log.insurance'
_columns = {
'description' : fields.text('Description'),
}
class fleet_vehicle_log_services(osv.Model):
_inherit = 'fleet.vehicle.log'
_name = 'fleet.vehicle.log.services'
_columns = {
'description' : fields.text('Description'),
}
class hr_employee(osv.Model):
_inherit = 'hr.employee'