odoo-addon-hr-payroll-document 16.0.1.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- odoo/addons/hr_payroll_document/README.rst +95 -0
- odoo/addons/hr_payroll_document/__init__.py +2 -0
- odoo/addons/hr_payroll_document/__manifest__.py +24 -0
- odoo/addons/hr_payroll_document/data/email_payroll_employee.xml +20 -0
- odoo/addons/hr_payroll_document/i18n/ca_ES.po +309 -0
- odoo/addons/hr_payroll_document/i18n/es.po +309 -0
- odoo/addons/hr_payroll_document/i18n/hr_payroll_document.pot +245 -0
- odoo/addons/hr_payroll_document/i18n/it.po +315 -0
- odoo/addons/hr_payroll_document/models/__init__.py +4 -0
- odoo/addons/hr_payroll_document/models/hr_employee.py +34 -0
- odoo/addons/hr_payroll_document/models/ir_attachment.py +14 -0
- odoo/addons/hr_payroll_document/models/ir_attachment_payroll_custom.py +18 -0
- odoo/addons/hr_payroll_document/models/res_users.py +18 -0
- odoo/addons/hr_payroll_document/readme/CONTRIBUTORS.rst +5 -0
- odoo/addons/hr_payroll_document/readme/DESCRIPTION.rst +4 -0
- odoo/addons/hr_payroll_document/security/ir.model.access.csv +3 -0
- odoo/addons/hr_payroll_document/static/description/icon.png +0 -0
- odoo/addons/hr_payroll_document/static/description/index.html +438 -0
- odoo/addons/hr_payroll_document/tests/__init__.py +1 -0
- odoo/addons/hr_payroll_document/tests/common.py +76 -0
- odoo/addons/hr_payroll_document/tests/test.docx +0 -0
- odoo/addons/hr_payroll_document/tests/test.pdf +0 -0
- odoo/addons/hr_payroll_document/tests/test_hr_payroll_document.py +122 -0
- odoo/addons/hr_payroll_document/views/hr_employee_views.xml +20 -0
- odoo/addons/hr_payroll_document/views/res_users_views.xml +27 -0
- odoo/addons/hr_payroll_document/wizard/__init__.py +1 -0
- odoo/addons/hr_payroll_document/wizard/payroll_management_wizard.py +216 -0
- odoo/addons/hr_payroll_document/wizard/payroll_management_wizard.xml +42 -0
- odoo_addon_hr_payroll_document-16.0.1.3.1.dist-info/METADATA +112 -0
- odoo_addon_hr_payroll_document-16.0.1.3.1.dist-info/RECORD +32 -0
- odoo_addon_hr_payroll_document-16.0.1.3.1.dist-info/WHEEL +5 -0
- odoo_addon_hr_payroll_document-16.0.1.3.1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
2
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
3
|
+
:alt: Odoo Community Association
|
|
4
|
+
|
|
5
|
+
=====================
|
|
6
|
+
HR - Payroll Document
|
|
7
|
+
=====================
|
|
8
|
+
|
|
9
|
+
..
|
|
10
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
11
|
+
!! This file is generated by oca-gen-addon-readme !!
|
|
12
|
+
!! changes will be overwritten. !!
|
|
13
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
+
!! source digest: sha256:0a1433fb1fb696e8ffb0fb469e9d901e496d1363488ef86b830516e681153057
|
|
15
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
|
+
|
|
17
|
+
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
18
|
+
:target: https://odoo-community.org/page/development-status
|
|
19
|
+
:alt: Production/Stable
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
21
|
+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
22
|
+
:alt: License: AGPL-3
|
|
23
|
+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fpayroll-lightgray.png?logo=github
|
|
24
|
+
:target: https://github.com/OCA/payroll/tree/16.0/hr_payroll_document
|
|
25
|
+
:alt: OCA/payroll
|
|
26
|
+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
27
|
+
:target: https://translation.odoo-community.org/projects/payroll-16-0/payroll-16-0-hr_payroll_document
|
|
28
|
+
:alt: Translate me on Weblate
|
|
29
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
30
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/payroll&target_branch=16.0
|
|
31
|
+
:alt: Try me on Runboat
|
|
32
|
+
|
|
33
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
34
|
+
|
|
35
|
+
This module have a wizard view to manage the different payrolls of employees which is identified by the identification_id attribute.
|
|
36
|
+
|
|
37
|
+
By default, the employee's payroll is encrypted using their identification number.
|
|
38
|
+
This behavior can be changed by the employee in their profile or by HR in the employee's form.
|
|
39
|
+
|
|
40
|
+
**Table of contents**
|
|
41
|
+
|
|
42
|
+
.. contents::
|
|
43
|
+
:local:
|
|
44
|
+
|
|
45
|
+
Bug Tracker
|
|
46
|
+
===========
|
|
47
|
+
|
|
48
|
+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/payroll/issues>`_.
|
|
49
|
+
In case of trouble, please check there if your issue has already been reported.
|
|
50
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
51
|
+
`feedback <https://github.com/OCA/payroll/issues/new?body=module:%20hr_payroll_document%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
52
|
+
|
|
53
|
+
Do not contact contributors directly about support or help with technical issues.
|
|
54
|
+
|
|
55
|
+
Credits
|
|
56
|
+
=======
|
|
57
|
+
|
|
58
|
+
Authors
|
|
59
|
+
~~~~~~~
|
|
60
|
+
|
|
61
|
+
* APSL
|
|
62
|
+
|
|
63
|
+
Contributors
|
|
64
|
+
~~~~~~~~~~~~
|
|
65
|
+
|
|
66
|
+
* Antoni Marroig Campomar <amarroig@apsl.net>
|
|
67
|
+
* Miquel Alzanillas Monserrat <malzanillas@apsl.net>
|
|
68
|
+
* `PyTech <https://www.pytech.it>`_:
|
|
69
|
+
|
|
70
|
+
* Simone Rubino <simone.rubino@pytech.it>
|
|
71
|
+
|
|
72
|
+
Maintainers
|
|
73
|
+
~~~~~~~~~~~
|
|
74
|
+
|
|
75
|
+
This module is maintained by the OCA.
|
|
76
|
+
|
|
77
|
+
.. image:: https://odoo-community.org/logo.png
|
|
78
|
+
:alt: Odoo Community Association
|
|
79
|
+
:target: https://odoo-community.org
|
|
80
|
+
|
|
81
|
+
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
82
|
+
mission is to support the collaborative development of Odoo features and
|
|
83
|
+
promote its widespread use.
|
|
84
|
+
|
|
85
|
+
.. |maintainer-peluko00| image:: https://github.com/peluko00.png?size=40px
|
|
86
|
+
:target: https://github.com/peluko00
|
|
87
|
+
:alt: peluko00
|
|
88
|
+
|
|
89
|
+
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
|
|
90
|
+
|
|
91
|
+
|maintainer-peluko00|
|
|
92
|
+
|
|
93
|
+
This module is part of the `OCA/payroll <https://github.com/OCA/payroll/tree/16.0/hr_payroll_document>`_ project on GitHub.
|
|
94
|
+
|
|
95
|
+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "HR - Payroll Document",
|
|
3
|
+
"summary": "Manage payroll for each employee",
|
|
4
|
+
"author": "APSL, Odoo Community Association (OCA)",
|
|
5
|
+
"website": "https://github.com/OCA/payroll",
|
|
6
|
+
"development_status": "Production/Stable",
|
|
7
|
+
"license": "AGPL-3",
|
|
8
|
+
"category": "Payrolls",
|
|
9
|
+
"version": "16.0.1.3.1",
|
|
10
|
+
"depends": ["hr", "base_vat"],
|
|
11
|
+
"maintainers": ["peluko00"],
|
|
12
|
+
"external_dependencies": {
|
|
13
|
+
"python": [
|
|
14
|
+
"pypdf",
|
|
15
|
+
],
|
|
16
|
+
},
|
|
17
|
+
"data": [
|
|
18
|
+
"wizard/payroll_management_wizard.xml",
|
|
19
|
+
"security/ir.model.access.csv",
|
|
20
|
+
"data/email_payroll_employee.xml",
|
|
21
|
+
"views/hr_employee_views.xml",
|
|
22
|
+
"views/res_users_views.xml",
|
|
23
|
+
],
|
|
24
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
|
2
|
+
<odoo>
|
|
3
|
+
<record id="payroll_employee_email_template" model="mail.template">
|
|
4
|
+
<field name="name">Payroll Employee</field>
|
|
5
|
+
<field name="model_id" ref="hr.model_hr_employee" />
|
|
6
|
+
<field name="email_from">{{object.company_id.email}}</field>
|
|
7
|
+
<field name="email_to">{{object.work_email}}</field>
|
|
8
|
+
<field name="subject">Payroll {{ctx.get('subject')}}</field>
|
|
9
|
+
<field name="auto_delete" eval="False" />
|
|
10
|
+
<field name="body_html">
|
|
11
|
+
<![CDATA[<html>
|
|
12
|
+
<head></head>
|
|
13
|
+
<body style="margin: 0; padding: 0;">
|
|
14
|
+
<table style="padding:20px;background-color:#ededed; border-collapse:separate" width="100%" cellpadding="0" border="0"><tbody><!-- HEADER --><tr><td style="min-width:590px" align="center"><table style="min-width:590px;background-color:#fff; padding:20px; border-collapse:separate" width="590" cellpadding="0" border="0"><tbody><tr><td style="text-align:right" valign="middle"><img src="/logo.png" style="padding:0px;margin:0px; height:auto; width:80px" alt="{{object.company_id.name}}"></td></tr><tr><td style="text-align:left" valign="middle"><h2 style="color:rgb(28, 130, 156)"><font style="color:rgb(107, 175, 103);">Payroll <t t-out="ctx.get('subject')" contenteditable="false" data-oe-t-inline="true"/></font></h2></td></tr></tbody></table></td></tr><!-- CONTENT --><tr><td style="min-width:590px" align="center"><table style="min-width:590px;background-color:rgb(255, 255, 255); padding:20px; border-collapse:separate" width="590" cellpadding="0" border="0"><tbody><tr><td style="font-family:Arial,Helvetica,sans-serif;color:#555; font-size:14px" valign="top"><p> </p><p>Hello <t t-out="object.name" contenteditable="false" data-oe-t-inline="true"/>,</p><br><p>We send you the payroll with the subject <t t-out="ctx.get('subject')" contenteditable="false" data-oe-t-inline="true"/>.<br></p></td></tr><tr><td style="font-family:Arial,Helvetica,sans-serif;color:#555; font-size:14px" valign="top"><br></td></tr><tr><td style="font-family:Arial,Helvetica,sans-serif;color:#555; font-size:14px" valign="top"><br><p></p></td></tr></tbody></table></td></tr><!-- FOOTER --><tr><td style="min-width:590px" align="center"><table style="min-width:590px;background-color:#95ce3f; padding:20px; border-collapse:separate" width="590" cellpadding="0" border="0"><tbody> </tbody></table></td></tr></tbody></table>
|
|
15
|
+
<p></p>
|
|
16
|
+
</html>
|
|
17
|
+
]]>
|
|
18
|
+
</field>
|
|
19
|
+
</record>
|
|
20
|
+
</odoo>
|
|
@@ -0,0 +1,309 @@
|
|
|
1
|
+
# Translation of Odoo Server.
|
|
2
|
+
# This file contains the translation of the following modules:
|
|
3
|
+
# * hr_payroll_document
|
|
4
|
+
#
|
|
5
|
+
msgid ""
|
|
6
|
+
msgstr ""
|
|
7
|
+
"Project-Id-Version: Odoo Server 16.0\n"
|
|
8
|
+
"Report-Msgid-Bugs-To: \n"
|
|
9
|
+
"POT-Creation-Date: 2023-12-14 10:27+0000\n"
|
|
10
|
+
"PO-Revision-Date: 2023-12-14 10:27+0000\n"
|
|
11
|
+
"Last-Translator: \n"
|
|
12
|
+
"Language-Team: \n"
|
|
13
|
+
"Language: \n"
|
|
14
|
+
"MIME-Version: 1.0\n"
|
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
16
|
+
"Content-Transfer-Encoding: \n"
|
|
17
|
+
"Plural-Forms: \n"
|
|
18
|
+
|
|
19
|
+
#. module: hr_payroll_document
|
|
20
|
+
#: model:mail.template,body_html:hr_payroll_document.payroll_employee_email_template
|
|
21
|
+
msgid ""
|
|
22
|
+
"\n"
|
|
23
|
+
" <html>\n"
|
|
24
|
+
" <head></head>\n"
|
|
25
|
+
" <body style=\"margin: 0; padding: 0;\">\n"
|
|
26
|
+
" <table style=\"padding:20px;background-color:#ededed; "
|
|
27
|
+
"border-collapse:separate\" width=\"100%\" cellpadding=\"0\" "
|
|
28
|
+
"border=\"0\"><tbody><!-- HEADER --><tr><td style=\"min-width:590px\" "
|
|
29
|
+
"align=\"center\"><table style=\"min-width:590px;background-color:#fff; "
|
|
30
|
+
"padding:20px; border-collapse:separate\" width=\"590\" cellpadding=\"0\" "
|
|
31
|
+
"border=\"0\"><tbody><tr><td style=\"text-align:right\" "
|
|
32
|
+
"valign=\"middle\"><img src=\"/logo.png\" style=\"padding:0px;margin:0px; "
|
|
33
|
+
"height:auto; width:80px\" alt=\"{{object.company_id.name}}\"></td></"
|
|
34
|
+
"tr><tr><td style=\"text-align:left\" valign=\"middle\"><h2 style=\"color:"
|
|
35
|
+
"rgb(28, 130, 156)\"><font style=\"color:rgb(107, 175, 103);\">Payroll <t t-"
|
|
36
|
+
"out=\"ctx.get('subject')\" contenteditable=\"false\" data-oe-t-"
|
|
37
|
+
"inline=\"true\"/></font></h2></td></tr></tbody></table></td></tr><!-- "
|
|
38
|
+
"CONTENT --><tr><td style=\"min-width:590px\" align=\"center\"><table "
|
|
39
|
+
"style=\"min-width:590px;background-color:rgb(255, 255, 255); padding:20px; "
|
|
40
|
+
"border-collapse:separate\" width=\"590\" cellpadding=\"0\" "
|
|
41
|
+
"border=\"0\"><tbody><tr><td style=\"font-family:Arial,Helvetica,sans-serif;"
|
|
42
|
+
"color:#555; font-size:14px\" valign=\"top\"><p> </p><p>Hello <t t-"
|
|
43
|
+
"out=\"object.name\" contenteditable=\"false\" data-oe-t-inline=\"true\"/>,</"
|
|
44
|
+
"p><br><p>We send you the payroll with the subject <t t-out=\"ctx."
|
|
45
|
+
"get('subject')\" contenteditable=\"false\" data-oe-t-inline=\"true\"/>.<br></"
|
|
46
|
+
"p></td></tr><tr><td style=\"font-family:Arial,Helvetica,sans-serif;color:"
|
|
47
|
+
"#555; font-size:14px\" valign=\"top\"><br></td></tr><tr><td style=\"font-"
|
|
48
|
+
"family:Arial,Helvetica,sans-serif;color:#555; font-size:14px\" "
|
|
49
|
+
"valign=\"top\"><br><p></p></td></tr></tbody></table></td></tr><!-- FOOTER --"
|
|
50
|
+
"><tr><td style=\"min-width:590px\" align=\"center\"><table style=\"min-"
|
|
51
|
+
"width:590px;background-color:#95ce3f; padding:20px; border-collapse:"
|
|
52
|
+
"separate\" width=\"590\" cellpadding=\"0\" border=\"0\"><tbody> </tbody></"
|
|
53
|
+
"table></td></tr></tbody></table>\n"
|
|
54
|
+
" <p></p>\n"
|
|
55
|
+
" </html>\n"
|
|
56
|
+
" \n"
|
|
57
|
+
" "
|
|
58
|
+
msgstr ""
|
|
59
|
+
"\n"
|
|
60
|
+
" <html>\n"
|
|
61
|
+
" <head></head>\n"
|
|
62
|
+
" <body style=\"margin: 0; padding: 0;\">\n"
|
|
63
|
+
" <table style=\"padding:20px;background-color:#ededed; "
|
|
64
|
+
"border-collapse:separate\" width=\"100%\" cellpadding=\"0\" "
|
|
65
|
+
"border=\"0\"><tbody><!-- HEADER --><tr><td style=\"min-width:590px\" "
|
|
66
|
+
"align=\"center\"><table style=\"min-width:590px;background-color:#fff; "
|
|
67
|
+
"padding:20px; border-collapse:separate\" width=\"590\" cellpadding=\"0\" "
|
|
68
|
+
"border=\"0\"><tbody><tr><td style=\"text-align:right\" "
|
|
69
|
+
"valign=\"middle\"><img src=\"/logo.png\" style=\"padding:0px;margin:0px; "
|
|
70
|
+
"height:auto; width:80px\" alt=\"{{object.company_id.name}}\"></td></"
|
|
71
|
+
"tr><tr><td style=\"text-align:left\" valign=\"middle\"><h2 style=\"color:"
|
|
72
|
+
"rgb(28, 130, 156)\"><font style=\"color:rgb(107, 175, 103);\">Nòmina <t t-"
|
|
73
|
+
"out=\"ctx.get('month')\" contenteditable=\"false\" data-oe-t-inline=\"true\"/"
|
|
74
|
+
"></font></h2></td></tr></tbody></table></td></tr><!-- CONTENT --><tr><td "
|
|
75
|
+
"style=\"min-width:590px\" align=\"center\"><table style=\"min-width:590px;"
|
|
76
|
+
"background-color:rgb(255, 255, 255); padding:20px; border-collapse:"
|
|
77
|
+
"separate\" width=\"590\" cellpadding=\"0\" border=\"0\"><tbody><tr><td "
|
|
78
|
+
"style=\"font-family:Arial,Helvetica,sans-serif;color:#555; font-size:14px\" "
|
|
79
|
+
"valign=\"top\"><p> </p><p>Hola <t t-out=\"object.name\" "
|
|
80
|
+
"contenteditable=\"false\" data-oe-t-inline=\"true\"/>,</p><br><p>Et remetem "
|
|
81
|
+
"la teva nòmina del mes de <t t-out=\"ctx.get('subject')\" "
|
|
82
|
+
"contenteditable=\"false\" data-oe-t-inline=\"true\"/>.<br></p></td></"
|
|
83
|
+
"tr><tr><td style=\"font-family:Arial,Helvetica,sans-serif;color:#555; font-"
|
|
84
|
+
"size:14px\" valign=\"top\"><br></td></tr><tr><td style=\"font-family:Arial,"
|
|
85
|
+
"Helvetica,sans-serif;color:#555; font-size:14px\" valign=\"top\"><br><p></"
|
|
86
|
+
"p></td></tr></tbody></table></td></tr><!-- FOOTER --><tr><td style=\"min-"
|
|
87
|
+
"width:590px\" align=\"center\"><table style=\"min-width:590px;background-"
|
|
88
|
+
"color:#95ce3f; padding:20px; border-collapse:separate\" width=\"590\" "
|
|
89
|
+
"cellpadding=\"0\" border=\"0\"><tbody> </tbody></table></td></tr></tbody></"
|
|
90
|
+
"table>\n"
|
|
91
|
+
" <p></p>\n"
|
|
92
|
+
" </html>\n"
|
|
93
|
+
" \n"
|
|
94
|
+
" "
|
|
95
|
+
|
|
96
|
+
#. module: hr_payroll_document
|
|
97
|
+
#: model:ir.model,name:hr_payroll_document.model_ir_attachment
|
|
98
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment__payrol_rel
|
|
99
|
+
msgid "Attachment"
|
|
100
|
+
msgstr "Adjunt"
|
|
101
|
+
|
|
102
|
+
#. module: hr_payroll_document
|
|
103
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__attachment_id
|
|
104
|
+
msgid "Attachment File"
|
|
105
|
+
msgstr "Fitxer Adjunt"
|
|
106
|
+
|
|
107
|
+
#. module: hr_payroll_document
|
|
108
|
+
#: model_terms:ir.ui.view,arch_db:hr_payroll_document.payrolls_management_wizard_form
|
|
109
|
+
msgid "Close"
|
|
110
|
+
msgstr "Tancar"
|
|
111
|
+
|
|
112
|
+
#. module: hr_payroll_document
|
|
113
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__create_date
|
|
114
|
+
msgid "Create Date"
|
|
115
|
+
msgstr "Data de creació"
|
|
116
|
+
|
|
117
|
+
#. module: hr_payroll_document
|
|
118
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__create_uid
|
|
119
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__create_uid
|
|
120
|
+
msgid "Created by"
|
|
121
|
+
msgstr "Creat per"
|
|
122
|
+
|
|
123
|
+
#. module: hr_payroll_document
|
|
124
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__create_date
|
|
125
|
+
msgid "Created on"
|
|
126
|
+
msgstr "Creat el"
|
|
127
|
+
|
|
128
|
+
#. module: hr_payroll_document
|
|
129
|
+
#: model_terms:ir.ui.view,arch_db:hr_payroll_document.res_users_view_form_profile
|
|
130
|
+
#: model_terms:ir.ui.view,arch_db:hr_payroll_document.view_employee_form
|
|
131
|
+
msgid "Disable encryption"
|
|
132
|
+
msgstr ""
|
|
133
|
+
|
|
134
|
+
#. module: hr_payroll_document
|
|
135
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_hr_employee__no_payroll_encryption
|
|
136
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_res_users__no_payroll_encryption
|
|
137
|
+
msgid "Disable payrolls encryption"
|
|
138
|
+
msgstr ""
|
|
139
|
+
|
|
140
|
+
#. module: hr_payroll_document
|
|
141
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__display_name
|
|
142
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__display_name
|
|
143
|
+
msgid "Display Name"
|
|
144
|
+
msgstr "Nom a mostrar"
|
|
145
|
+
|
|
146
|
+
#. module: hr_payroll_document
|
|
147
|
+
#: model:ir.model,name:hr_payroll_document.model_hr_employee
|
|
148
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__employee
|
|
149
|
+
msgid "Employee"
|
|
150
|
+
msgstr "Empleat"
|
|
151
|
+
|
|
152
|
+
#. module: hr_payroll_document
|
|
153
|
+
#. odoo-python
|
|
154
|
+
#: code:addons/hr_payroll_document/tests/test_hr_payroll_document.py:0
|
|
155
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
156
|
+
#, python-format
|
|
157
|
+
msgid "Employees not found"
|
|
158
|
+
msgstr "Empleats no trobats"
|
|
159
|
+
|
|
160
|
+
#. module: hr_payroll_document
|
|
161
|
+
#: model:ir.model.fields,help:hr_payroll_document.field_payroll_management_wizard__subject
|
|
162
|
+
msgid "Enter the title of the payroll whether it is the month, week, day, etc."
|
|
163
|
+
msgstr "Introduïu el títol de la nòmina ja sigui el mes, setmana, dia, etc."
|
|
164
|
+
|
|
165
|
+
#. module: hr_payroll_document
|
|
166
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__id
|
|
167
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__id
|
|
168
|
+
msgid "ID"
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
171
|
+
#. module: hr_payroll_document
|
|
172
|
+
#. odoo-python
|
|
173
|
+
#: code:addons/hr_payroll_document/tests/test_hr_payroll_document.py:0
|
|
174
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
175
|
+
#, python-format
|
|
176
|
+
msgid "IDs whose employee has not been found: "
|
|
177
|
+
msgstr "IDs dels empleats que no s'han trobat: "
|
|
178
|
+
|
|
179
|
+
#. module: hr_payroll_document
|
|
180
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__identification_id
|
|
181
|
+
msgid "Identification ID"
|
|
182
|
+
msgstr "Identificació ID"
|
|
183
|
+
|
|
184
|
+
#. module: hr_payroll_document
|
|
185
|
+
#: model:ir.model.fields,help:hr_payroll_document.field_hr_employee__no_payroll_encryption
|
|
186
|
+
#: model:ir.model.fields,help:hr_payroll_document.field_res_users__no_payroll_encryption
|
|
187
|
+
msgid ""
|
|
188
|
+
"If this is disabled (default), the PDF payrolls are encrypted using the "
|
|
189
|
+
"Identification No.\n"
|
|
190
|
+
"Only future payrolls are affected by this change, existing payrolls will not "
|
|
191
|
+
"change their encryption status."
|
|
192
|
+
msgstr ""
|
|
193
|
+
|
|
194
|
+
#. module: hr_payroll_document
|
|
195
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom____last_update
|
|
196
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard____last_update
|
|
197
|
+
msgid "Last Modified on"
|
|
198
|
+
msgstr "Darrera modificació el"
|
|
199
|
+
|
|
200
|
+
#. module: hr_payroll_document
|
|
201
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__write_uid
|
|
202
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__write_uid
|
|
203
|
+
msgid "Last Updated by"
|
|
204
|
+
msgstr "Darrera actualització per"
|
|
205
|
+
|
|
206
|
+
#. module: hr_payroll_document
|
|
207
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__write_date
|
|
208
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__write_date
|
|
209
|
+
msgid "Last Updated on"
|
|
210
|
+
msgstr "Darrera actualització el"
|
|
211
|
+
|
|
212
|
+
#. module: hr_payroll_document
|
|
213
|
+
#. odoo-python
|
|
214
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
215
|
+
#, python-format
|
|
216
|
+
msgid "Missing pdf file signature"
|
|
217
|
+
msgstr "Els fitxers han de ser de tipus pdf"
|
|
218
|
+
|
|
219
|
+
#. module: hr_payroll_document
|
|
220
|
+
#. odoo-python
|
|
221
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
222
|
+
#: model_terms:ir.ui.view,arch_db:hr_payroll_document.res_users_view_form_profile
|
|
223
|
+
#, python-format
|
|
224
|
+
msgid "Payroll"
|
|
225
|
+
msgstr "Nòmina"
|
|
226
|
+
|
|
227
|
+
#. module: hr_payroll_document
|
|
228
|
+
#. odoo-python
|
|
229
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
230
|
+
#, python-format
|
|
231
|
+
msgid "Payroll "
|
|
232
|
+
msgstr "Nòmina "
|
|
233
|
+
|
|
234
|
+
#. module: hr_payroll_document
|
|
235
|
+
#: model:mail.template,name:hr_payroll_document.payroll_employee_email_template
|
|
236
|
+
msgid "Payroll Employee"
|
|
237
|
+
msgstr "Nòmina Empleat"
|
|
238
|
+
|
|
239
|
+
#. module: hr_payroll_document
|
|
240
|
+
#: model:ir.model,name:hr_payroll_document.model_payroll_management_wizard
|
|
241
|
+
msgid "Payroll Management"
|
|
242
|
+
msgstr "Gestió Nòmines"
|
|
243
|
+
|
|
244
|
+
#. module: hr_payroll_document
|
|
245
|
+
#: model:ir.model,name:hr_payroll_document.model_ir_attachment_payroll_custom
|
|
246
|
+
msgid "Payroll attachment"
|
|
247
|
+
msgstr "Adjunt Nòmina"
|
|
248
|
+
|
|
249
|
+
#. module: hr_payroll_document
|
|
250
|
+
#: model:mail.template,subject:hr_payroll_document.payroll_employee_email_template
|
|
251
|
+
msgid "Payroll {{ctx.get('subject')}}"
|
|
252
|
+
msgstr "Nòmina {{ctx.get('month')}}"
|
|
253
|
+
|
|
254
|
+
#. module: hr_payroll_document
|
|
255
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__payrolls
|
|
256
|
+
msgid "Payrolls"
|
|
257
|
+
msgstr "Nòmines"
|
|
258
|
+
|
|
259
|
+
#. module: hr_payroll_document
|
|
260
|
+
#: model:ir.actions.act_window,name:hr_payroll_document.payrolls_management_wizard_action
|
|
261
|
+
#: model:ir.ui.menu,name:hr_payroll_document.payrolls_management_wizard_menu_action
|
|
262
|
+
msgid "Payrolls Management"
|
|
263
|
+
msgstr "Gestió Nòmines"
|
|
264
|
+
|
|
265
|
+
#. module: hr_payroll_document
|
|
266
|
+
#. odoo-python
|
|
267
|
+
#: code:addons/hr_payroll_document/tests/test_hr_payroll_document.py:0
|
|
268
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
269
|
+
#, python-format
|
|
270
|
+
msgid "Payrolls sent"
|
|
271
|
+
msgstr "Nòmines enviades"
|
|
272
|
+
|
|
273
|
+
#. module: hr_payroll_document
|
|
274
|
+
#. odoo-python
|
|
275
|
+
#: code:addons/hr_payroll_document/tests/test_hr_payroll_document.py:0
|
|
276
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
277
|
+
#, python-format
|
|
278
|
+
msgid "Payrolls sent to employees correctly"
|
|
279
|
+
msgstr "Nòmines envides als empleats correctament"
|
|
280
|
+
|
|
281
|
+
#. module: hr_payroll_document
|
|
282
|
+
#: model_terms:ir.ui.view,arch_db:hr_payroll_document.payrolls_management_wizard_form
|
|
283
|
+
msgid "Send"
|
|
284
|
+
msgstr "Enviar"
|
|
285
|
+
|
|
286
|
+
#. module: hr_payroll_document
|
|
287
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_ir_attachment_payroll_custom__subject
|
|
288
|
+
#: model:ir.model.fields,field_description:hr_payroll_document.field_payroll_management_wizard__subject
|
|
289
|
+
msgid "Subject"
|
|
290
|
+
msgstr "Assumpte"
|
|
291
|
+
|
|
292
|
+
#. module: hr_payroll_document
|
|
293
|
+
#. odoo-python
|
|
294
|
+
#: code:addons/hr_payroll_document/models/hr_employee.py:0
|
|
295
|
+
#, python-format
|
|
296
|
+
msgid "The field identification ID is not valid"
|
|
297
|
+
msgstr "El camp identificatiu ID no és vàlid"
|
|
298
|
+
|
|
299
|
+
#. module: hr_payroll_document
|
|
300
|
+
#: model:ir.model,name:hr_payroll_document.model_res_users
|
|
301
|
+
msgid "User"
|
|
302
|
+
msgstr ""
|
|
303
|
+
|
|
304
|
+
#. module: hr_payroll_document
|
|
305
|
+
#. odoo-python
|
|
306
|
+
#: code:addons/hr_payroll_document/wizard/payroll_management_wizard.py:0
|
|
307
|
+
#, python-format
|
|
308
|
+
msgid "You must to filled country field of company"
|
|
309
|
+
msgstr "Falta emplenar el camp de país de l'empresa"
|