1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_au_hr_payroll/models/res_company.py
2024-12-10 09:04:09 +07:00

17 lines
587 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
l10n_au_branch_code = fields.Char(
string="Branch Code",
help="The branch code of the company, if any.")
l10n_au_wpn_number = fields.Char(
string="Withholding Payer Number",
help="Number given to individuals / enterprises that have PAYGW obligations but don't have an ABN.")
l10n_au_sfei = fields.Char(
string="Superannuation Fund Generated Employer Identifier")