mirror of
https://github.com/bringout/oca-ocb-vertical-industry.git
synced 2026-04-22 11:52:06 +02:00
19.0 vanilla
This commit is contained in:
parent
4607ccbd2e
commit
825ff6514e
487 changed files with 184979 additions and 195262 deletions
|
|
@ -43,3 +43,35 @@ class TestFleet(common.TransactionCase):
|
|||
})
|
||||
res = self.env["fleet.vehicle"].search([('contract_renewal_overdue', '=', True), ('id', '=', car_1.id)])
|
||||
self.assertEqual(res, car_1)
|
||||
|
||||
def test_exclude_resolved_vehicles_from_overdue(self):
|
||||
"""
|
||||
if there is an expired contract for the car, but it also has an open contract
|
||||
it should not be considered overdue
|
||||
"""
|
||||
user = new_test_user(self.env, "test base user", groups="base.group_user")
|
||||
brand = self.env["fleet.vehicle.model.brand"].create({
|
||||
"name": "Audi",
|
||||
})
|
||||
model = self.env["fleet.vehicle.model"].create({
|
||||
"brand_id": brand.id,
|
||||
"name": "A3",
|
||||
})
|
||||
car_1 = self.env["fleet.vehicle"].create({
|
||||
"model_id": model.id,
|
||||
"driver_id": user.partner_id.id,
|
||||
"plan_to_change_car": False
|
||||
})
|
||||
|
||||
Log = self.env['fleet.vehicle.log.contract']
|
||||
Log.create({
|
||||
'vehicle_id': car_1.id,
|
||||
'expiration_date': fields.Date.add(fields.Date.today(), days=-2)
|
||||
})
|
||||
Log.create({
|
||||
'vehicle_id': car_1.id,
|
||||
'expiration_date': fields.Date.add(fields.Date.today(), days=365)
|
||||
})
|
||||
|
||||
res = self.env["fleet.vehicle"].search([('contract_renewal_overdue', '=', True), ('id', '=', car_1.id)])
|
||||
self.assertFalse(res)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue