From 1ca3b3df3421961caec3b747a364071c80f5c7da Mon Sep 17 00:00:00 2001 From: stephanchrst Date: Tue, 10 May 2022 17:14:58 +0700 Subject: initial commit --- hr_payroll_community/data/hr_payroll_data.xml | 192 ++++++++++++++++++++++++++ 1 file changed, 192 insertions(+) create mode 100644 hr_payroll_community/data/hr_payroll_data.xml (limited to 'hr_payroll_community/data/hr_payroll_data.xml') diff --git a/hr_payroll_community/data/hr_payroll_data.xml b/hr_payroll_community/data/hr_payroll_data.xml new file mode 100644 index 0000000..a1b104d --- /dev/null +++ b/hr_payroll_community/data/hr_payroll_data.xml @@ -0,0 +1,192 @@ + + + + + Employees + + + + + Basic + BASIC + + + + Allowance + ALW + + + + Gross + GROSS + + + + Deduction + DED + + + + Net + NET + + + + Company Contribution + COMP + + + + House Rent Allowance + HRA + + + + Dearness Allowance + DA + + + + Travel Allowance + Travel + + + + Meal Allowance + Meal + + + + Medical Allowance + Medical + + + + Other Allowance + Other + + + + + + + + + + + Basic Salary + + BASIC + + none + code + result = contract.wage + + + + Gross + + GROSS + + none + code + result = categories.BASIC + categories.ALW + + + + Net Salary + + NET + + none + code + result = categories.BASIC + categories.ALW + categories.DED + + + + + House Rent Allowance + + HRA + + none + code + result = contract.hra + + + + Dearness Allowance + + DA + + none + code + result = contract.da + + + + Travel Allowance + + Travel + + none + code + result = contract.travel_allowance + + + + Meal Allowance + + Meal + + none + code + result = contract.meal_allowance + + + + Medical Allowance + + Medical + + none + code + result = contract.medical_allowance + + + + Other Allowance + + Other + + none + code + result = contract.other_allowance + + + + + + + + BASE + Base for new structures + + + + + + + + Payroll + 2 + + + + Payroll Rate + 4 + + + + + -- cgit v1.2.3