8 lines
317 B
Python
8 lines
317 B
Python
from odoo import models, fields
|
|
|
|
class AccountJournal(models.Model):
|
|
_inherit = "account.journal"
|
|
|
|
prevent_reset_to_draft_sent_invoice = fields.Boolean("Prevent to reset to draft a sent invoice")
|
|
prevent_deletion_of_posted_account_move = fields.Boolean("Prevent to delete an already posted account move")
|