[ADD]: start migrating module from trunk_extra_addons to trunk_addons
authorMantavya Gajjar <mga@tinyerp.com>
Sat, 5 Jun 2010 06:39:12 +0000 (12:09 +0530)
committerMantavya Gajjar <mga@tinyerp.com>
Sat, 5 Jun 2010 06:39:12 +0000 (12:09 +0530)
bzr revid: mga@tinyerp.com-20100605063912-enth6zqm0m82mnp9

addons/hr_payroll/__init__.py [new file with mode: 0644]
addons/hr_payroll/__openerp__.py [new file with mode: 0644]
addons/hr_payroll/hr_payroll.py [new file with mode: 0644]
addons/hr_payroll/hr_payroll_view.xml [new file with mode: 0644]

diff --git a/addons/hr_payroll/__init__.py b/addons/hr_payroll/__init__.py
new file mode 100644 (file)
index 0000000..5cd00b8
--- /dev/null
@@ -0,0 +1,25 @@
+#-*- coding:utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution    
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). 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 <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
+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 (file)
index 0000000..9f1c59a
--- /dev/null
@@ -0,0 +1,59 @@
+#-*- coding:utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution    
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). 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 <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+{
+    '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 (file)
index 0000000..073c855
--- /dev/null
@@ -0,0 +1,22 @@
+#-*- coding:utf-8 -*-
+##############################################################################
+#
+#    OpenERP, Open Source Management Solution    
+#    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). 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 <http://www.gnu.org/licenses/>.
+#
+##############################################################################
+
diff --git a/addons/hr_payroll/hr_payroll_view.xml b/addons/hr_payroll/hr_payroll_view.xml
new file mode 100644 (file)
index 0000000..b63a7a8
--- /dev/null
@@ -0,0 +1,8 @@
+<?xml version="1.0"?>
+<openerp>
+    <data>
+    
+        
+        
+    </data>
+</openerp>