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 ++++++++++++++++++++++ hr_payroll_community/data/hr_payroll_demo.xml | 162 ++++++++++++++++++ hr_payroll_community/data/hr_payroll_sequence.xml | 13 ++ 3 files changed, 367 insertions(+) create mode 100644 hr_payroll_community/data/hr_payroll_data.xml create mode 100644 hr_payroll_community/data/hr_payroll_demo.xml create mode 100644 hr_payroll_community/data/hr_payroll_sequence.xml (limited to 'hr_payroll_community/data') 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 + + + + + diff --git a/hr_payroll_community/data/hr_payroll_demo.xml b/hr_payroll_community/data/hr_payroll_demo.xml new file mode 100644 index 0000000..1c87d86 --- /dev/null +++ b/hr_payroll_community/data/hr_payroll_demo.xml @@ -0,0 +1,162 @@ + + + + + + + House Rent Allowance Register + + + + Provident Fund Register + + + + Professional Tax Register + + + + Meal Voucher Register + + + + + + percentage + + contract.wage + HRA + + + House Rent Allowance + + + + + fix + + CA + + Conveyance Allowance + + + + + fix + + + PT + + + Professional Tax + + + + percentage + + + contract.wage + PF + + + Provident Fund + + + + fix + + CAGG + + Conveyance Allowance For Gravie + + + + + fix + + worked_days.WORK100 and worked_days.WORK100.number_of_days + MA + + + Meal Voucher + + + + + code + SALE + + Get 1% of sales + + result = ((inputs.SALEURO and inputs.SALEURO.amount) + (inputs.SALASIA and inputs.SALASIA.amount)) * 0.01 + + + + + + SALEURO + Sales to Europe + + + + + SALASIA + Sales to Asia + + + + + + + ME + Marketing Executive + + + + + + + MEGG + Marketing Executive for Gilles Gravie + + + + + + + + + + + + Roger Scott + Building 1, Second Floor + +3282823500 + + + + + + + Marketing Executive Contract + + + + + + Default contract for marketing executives + + + + + Contract For Gilles Gravie + + + + + + This is Gilles Gravie's contract + + + + diff --git a/hr_payroll_community/data/hr_payroll_sequence.xml b/hr_payroll_community/data/hr_payroll_sequence.xml new file mode 100644 index 0000000..3174b00 --- /dev/null +++ b/hr_payroll_community/data/hr_payroll_sequence.xml @@ -0,0 +1,13 @@ + + + + + + Salary Slip + salary.slip + SLIP/ + 3 + + + + -- cgit v1.2.3