forked from Mapan/odoo17e
13 lines
399 B
Python
13 lines
399 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import models, fields
|
|
|
|
|
|
class Company(models.Model):
|
|
_inherit = "res.company"
|
|
|
|
account_check_printing_layout = fields.Selection(
|
|
selection_add=[('l10n_ph_check_printing.action_print_check', 'Print Check - PH')],
|
|
ondelete={'l10n_ph_check_printing.action_print_check': 'set default'},
|
|
)
|