10 lines
211 B
Plaintext
10 lines
211 B
Plaintext
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class HrContract(models.Model):
|
||
|
_inherit = 'hr.payslip'
|
||
|
|
||
|
l10n_{{code}}_field = fields.Char()
|