mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
13 lines
331 B
Python
13 lines
331 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2020 Tecnativa - Pedro M. Baeza
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
_inherit = ["account.move", "mail.thread"]
|
|
_name = "account.move"
|
|
|
|
state = fields.Selection(track_visibility='always')
|