forked from Mapan/odoo17e
12 lines
282 B
Python
12 lines
282 B
Python
# -*- coding:utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class HrPayslipRun(models.Model):
|
|
_inherit = 'hr.payslip.run'
|
|
|
|
l10n_ch_pay_13th_month = fields.Boolean(
|
|
string="Pay Thirteen Month")
|