From a8cda443b41b1b956f091fc9a90268aee50009c2 Mon Sep 17 00:00:00 2001 From: Mantavya Gajjar Date: Sat, 5 Jun 2010 12:09:12 +0530 Subject: [PATCH] [ADD]: start migrating module from trunk_extra_addons to trunk_addons bzr revid: mga@tinyerp.com-20100605063912-enth6zqm0m82mnp9 --- addons/hr_payroll/__init__.py | 25 ++++++++++++ addons/hr_payroll/__openerp__.py | 59 +++++++++++++++++++++++++++ addons/hr_payroll/hr_payroll.py | 22 ++++++++++ addons/hr_payroll/hr_payroll_view.xml | 8 ++++ 4 files changed, 114 insertions(+) create mode 100644 addons/hr_payroll/__init__.py create mode 100644 addons/hr_payroll/__openerp__.py create mode 100644 addons/hr_payroll/hr_payroll.py create mode 100644 addons/hr_payroll/hr_payroll_view.xml diff --git a/addons/hr_payroll/__init__.py b/addons/hr_payroll/__init__.py new file mode 100644 index 00000000000..5cd00b8b2b9 --- /dev/null +++ b/addons/hr_payroll/__init__.py @@ -0,0 +1,25 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +import hr_payroll +import report +import wizard diff --git a/addons/hr_payroll/__openerp__.py b/addons/hr_payroll/__openerp__.py new file mode 100644 index 00000000000..9f1c59abc4f --- /dev/null +++ b/addons/hr_payroll/__openerp__.py @@ -0,0 +1,59 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## +{ + 'name': 'Human Resource Payroll', + 'version': '1.0', + 'category': 'Generic Modules/Human Resources', + 'description': """Generic Payroll system + * Employee Details + * Employee Contracts + * Passport based Contract + * Allowances / Deductions + * Allow to configure Basic / Grows / Net Salary + * Employee Payslip + * Monthly Payroll Register + * Integrated with Holiday Management + """, + 'author':'Tiny/Axelor', + 'website':'http://www.openerp.com', + 'depends': [ + 'hr', + 'account', + 'hr_contract', + 'hr_holidays', + 'hr_expense' + ], + 'init_xml': [ + ], + 'update_xml': [ + 'hr_payroll_view.xml', + 'hr_payroll_workflow.xml', + 'hr_payroll_sequence.xml', + 'hr_paroll_report.xml', + 'hr_payroll_data.xml', + 'hr_payroll_wizard.xml' + ], + 'demo_xml': [ + ], + 'installable': True, + 'active': False, +} diff --git a/addons/hr_payroll/hr_payroll.py b/addons/hr_payroll/hr_payroll.py new file mode 100644 index 00000000000..073c855e827 --- /dev/null +++ b/addons/hr_payroll/hr_payroll.py @@ -0,0 +1,22 @@ +#-*- coding:utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# d$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + diff --git a/addons/hr_payroll/hr_payroll_view.xml b/addons/hr_payroll/hr_payroll_view.xml new file mode 100644 index 00000000000..b63a7a867f0 --- /dev/null +++ b/addons/hr_payroll/hr_payroll_view.xml @@ -0,0 +1,8 @@ + + + + + + + +