# Copyright (C) 2024-Today - Akretion (). # @author Magno Costa # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from odoo import models class StockRule(models.Model): _inherit = "stock.rule" def _get_custom_move_fields(self): fields = super()._get_custom_move_fields() fields += ["invoice_state"] return fields