diff --git a/hr_payslip_compute_sheet/README.rst b/hr_payslip_compute_sheet/README.rst new file mode 100644 index 00000000..442a5f44 --- /dev/null +++ b/hr_payslip_compute_sheet/README.rst @@ -0,0 +1,39 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +======================== +HR Payslip Compute Sheet +======================== + +This module adds a wizard to compute sheet. + +Installation +============ + +To install this module, you need to: + +1. Clone the branch 8.0 of the repository https://github.com/open-synergy/opnsynid-hr +2. Add the path to this repository in your configuration (addons-path) +3. Update the module list +4. Go to menu *Setting -> Modules -> Local Modules* +5. Search For *HR Payslip Compute Sheet* +6. Install the module + +Credits +======= + +Contributors +------------ + +* Michael Viriyananda +* Andhitia Rama + +Maintainer +---------- + +.. image:: https://opensynergy-indonesia.com/logo.png + :alt: OpenSynergy Indonesia + :target: https://opensynergy-indonesia.com + +This module is maintained by the OpenSynergy Indonesia. diff --git a/hr_payslip_compute_sheet/__init__.py b/hr_payslip_compute_sheet/__init__.py new file mode 100644 index 00000000..d355c437 --- /dev/null +++ b/hr_payslip_compute_sheet/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import wizards diff --git a/hr_payslip_compute_sheet/__openerp__.py b/hr_payslip_compute_sheet/__openerp__.py new file mode 100644 index 00000000..122679ec --- /dev/null +++ b/hr_payslip_compute_sheet/__openerp__.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Copyright 2016 OpenSynergy Indonesia +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +{ + "name": "HR Payslip Compute Sheet", + "version": "8.0.1.0.0", + "summary": "Adds wizard to compute sheet", + "category": "Human Resources", + "website": "https://opensynergy-indonesia.com", + "author": "OpenSynergy Indonesia", + "license": "AGPL-3", + "installable": True, + "depends": ["hr_payroll"], + "data": [ + "wizards/hr_compute_sheet_views.xml", + "views/hr_payslip_views.xml", + "data/ir_values_data.xml" + ], +} diff --git a/hr_payslip_compute_sheet/data/ir_values_data.xml b/hr_payslip_compute_sheet/data/ir_values_data.xml new file mode 100644 index 00000000..1f6d07de --- /dev/null +++ b/hr_payslip_compute_sheet/data/ir_values_data.xml @@ -0,0 +1,15 @@ + + + + + + + Compute Sheet + client_action_multi + + action + hr.payslip + + + + diff --git a/hr_payslip_compute_sheet/static/description/icon.png b/hr_payslip_compute_sheet/static/description/icon.png new file mode 100644 index 00000000..270415f7 Binary files /dev/null and b/hr_payslip_compute_sheet/static/description/icon.png differ diff --git a/hr_payslip_compute_sheet/views/hr_payslip_views.xml b/hr_payslip_compute_sheet/views/hr_payslip_views.xml new file mode 100644 index 00000000..38cabcba --- /dev/null +++ b/hr_payslip_compute_sheet/views/hr_payslip_views.xml @@ -0,0 +1,27 @@ + + + + + + Inherit HR Payslip Tree + hr.payslip + + + +