Skip to content
Snippets Groups Projects
Commit 7144321c authored by Goffin Simon's avatar Goffin Simon
Browse files

[FIX] account_fleet: Field vehicle_id unavailable on vendor refund


The fleet vehicle_id must be visible on vendor refund

opw:2471784

closes odoo/odoo#67130

Signed-off-by: default avatarWilliam André (wan) <wan@odoo.com>
parent d9834e65
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ class AccountMove(models.Model):
log_list = []
not_posted_before = self.filtered(lambda r: not r.posted_before)
posted = super()._post(soft) # We need the move name to be set, but we also need to know which move are posted for the first time.
for line in (not_posted_before & posted).line_ids.filtered(lambda ml: ml.vehicle_id):
for line in (not_posted_before & posted).line_ids.filtered(lambda ml: ml.vehicle_id and ml.move_id.move_type == 'in_invoice'):
val = {
'service_type_id': vendor_bill_service.id,
'vehicle_id': line.vehicle_id.id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment