15 lines
456 B
Python
Executable File
15 lines
456 B
Python
Executable File
# 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
|
|
)
|