forked from Mapan/odoo17e
20 lines
730 B
Python
20 lines
730 B
Python
# -*- coding:utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import api, fields, models, _
|
|
from odoo.exceptions import ValidationError
|
|
|
|
|
|
class HrContract(models.Model):
|
|
_inherit = 'hr.contract'
|
|
|
|
l10n_ke_pension_contribution = fields.Monetary("Pension Contribution")
|
|
|
|
l10n_ke_food_allowance = fields.Monetary("Food Allowance")
|
|
l10n_ke_airtime_allowance = fields.Monetary("Airtime Allowance")
|
|
l10n_ke_pension_allowance = fields.Monetary("Pension Allowance")
|
|
|
|
l10n_ke_voluntary_medical_insurance = fields.Monetary("Voluntary medical Insurance")
|
|
l10n_ke_life_insurance = fields.Monetary("Life Insurance")
|
|
l10n_ke_education = fields.Monetary("Education")
|