Files
Odoo-18.0-20251222/partner_invoicing_mode/models/queue_job.py
tocmo0nlord adbe430761
Some checks failed
pre-commit / pre-commit (push) Has been cancelled
tests / Detect unreleased dependencies (push) Has been cancelled
tests / test with OCB (push) Has been cancelled
tests / test with Odoo (push) Has been cancelled
Initial commit: Odoo 18.0-20251222 extra-addons
2026-03-13 20:43:25 +00:00

16 lines
492 B
Python

# Copyright 2020 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
from odoo import models
class QueueJob(models.Model):
_inherit = "queue.job"
def related_action_open_invoice(self):
"""Open a form view with the invoice related to the job."""
action = self.related_action_open_record()
if len(self.records.exists()) > 1:
action["view_id"] = self.env.ref("account.view_out_invoice_tree").id
return action