Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
14
sale_automatic_workflow/models/account_move.py
Executable file
14
sale_automatic_workflow/models/account_move.py
Executable file
@@ -0,0 +1,14 @@
|
||||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class AccountMove(models.Model):
|
||||
_inherit = "account.move"
|
||||
|
||||
workflow_process_id = fields.Many2one(
|
||||
comodel_name="sale.workflow.process", string="Sale Workflow Process", copy=False
|
||||
)
|
||||
Reference in New Issue
Block a user