Files
Odoo-Modules/fusion_accounting/fusion_accounting_hr_payroll/models/account_journal.py
gsinghpal 9ebf89bde2 changes
2026-05-16 13:18:52 -04:00

13 lines
394 B
Python

from odoo import fields, models
class AccountJournal(models.Model):
_inherit = 'account.journal'
is_payroll_journal = fields.Boolean(
string='Used for Payroll',
help="Marks this journal as the salary / payroll posting journal "
"for the company. Informational; the actual fallback is set "
"on res.company.fusion_payroll_journal_id.",
)