odoo-addon-contract 17.0.1.4.5__py3-none-any.whl → 18.0.2.0.0.8__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/contract/README.rst +14 -10
- odoo/addons/contract/__manifest__.py +3 -10
- odoo/addons/contract/controllers/main.py +1 -8
- odoo/addons/contract/data/contract_cron.xml +0 -2
- odoo/addons/contract/data/mail_template.xml +18 -17
- odoo/addons/contract/data/template_mail_notification.xml +1 -1
- odoo/addons/contract/i18n/ca.po +120 -33
- odoo/addons/contract/i18n/contract.pot +141 -823
- odoo/addons/contract/migrations/18.0.2.0.0/pre-migrate.py +90 -0
- odoo/addons/contract/models/__init__.py +2 -6
- odoo/addons/contract/models/account_move.py +0 -8
- odoo/addons/contract/models/account_move_line.py +14 -0
- odoo/addons/contract/models/contract.py +266 -308
- odoo/addons/contract/models/contract_line.py +34 -861
- odoo/addons/contract/models/{contract_recurrency_mixin.py → contract_recurring_mixin.py} +101 -82
- odoo/addons/contract/models/contract_tag.py +1 -3
- odoo/addons/contract/models/contract_template.py +81 -2
- odoo/addons/contract/models/contract_template_line.py +249 -3
- odoo/addons/contract/report/contract_views.xml +0 -2
- odoo/addons/contract/report/report_contract.xml +13 -13
- odoo/addons/contract/security/contract_security.xml +6 -15
- odoo/addons/contract/security/contract_tag.xml +1 -3
- odoo/addons/contract/security/ir.model.access.csv +0 -2
- odoo/addons/contract/static/description/index.html +24 -18
- odoo/addons/contract/static/src/js/contract_portal_tour.esm.js +6 -3
- odoo/addons/contract/tests/test_contract.py +42 -927
- odoo/addons/contract/tests/test_multicompany.py +5 -4
- odoo/addons/contract/tests/test_portal.py +6 -3
- odoo/addons/contract/views/contract.xml +91 -234
- odoo/addons/contract/views/contract_line.xml +48 -117
- odoo/addons/contract/views/contract_portal_templates.xml +181 -222
- odoo/addons/contract/views/contract_tag.xml +3 -3
- odoo/addons/contract/views/contract_template.xml +100 -72
- odoo/addons/contract/views/contract_template_line.xml +76 -5
- odoo/addons/contract/views/res_config_settings.xml +5 -6
- odoo/addons/contract/views/res_partner_view.xml +0 -5
- odoo/addons/contract/wizards/__init__.py +0 -2
- odoo/addons/contract/wizards/contract_manually_create_invoice.py +6 -6
- odoo/addons/contract/wizards/contract_manually_create_invoice.xml +2 -3
- {odoo_addon_contract-17.0.1.4.5.dist-info → odoo_addon_contract-18.0.2.0.0.8.dist-info}/METADATA +17 -13
- {odoo_addon_contract-17.0.1.4.5.dist-info → odoo_addon_contract-18.0.2.0.0.8.dist-info}/RECORD +43 -56
- odoo/addons/contract/data/contract_renew_cron.xml +0 -14
- odoo/addons/contract/models/abstract_contract.py +0 -82
- odoo/addons/contract/models/abstract_contract_line.py +0 -271
- odoo/addons/contract/models/contract_line_constraints.py +0 -429
- odoo/addons/contract/models/contract_terminate_reason.py +0 -14
- odoo/addons/contract/models/res_company.py +0 -15
- odoo/addons/contract/models/res_config_settings.py +0 -18
- odoo/addons/contract/security/contract_terminate_reason.xml +0 -23
- odoo/addons/contract/security/groups.xml +0 -9
- odoo/addons/contract/views/abstract_contract_line.xml +0 -117
- odoo/addons/contract/views/contract_terminate_reason.xml +0 -38
- odoo/addons/contract/wizards/contract_contract_terminate.py +0 -42
- odoo/addons/contract/wizards/contract_contract_terminate.xml +0 -33
- odoo/addons/contract/wizards/contract_line_wizard.py +0 -53
- odoo/addons/contract/wizards/contract_line_wizard.xml +0 -111
- {odoo_addon_contract-17.0.1.4.5.dist-info → odoo_addon_contract-18.0.2.0.0.8.dist-info}/WHEEL +0 -0
- {odoo_addon_contract-17.0.1.4.5.dist-info → odoo_addon_contract-18.0.2.0.0.8.dist-info}/top_level.txt +0 -0
odoo/addons/contract/README.rst
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
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
|
+
|
|
1
5
|
================================
|
|
2
6
|
Recurring - Contracts Management
|
|
3
7
|
================================
|
|
@@ -7,23 +11,23 @@ Recurring - Contracts Management
|
|
|
7
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
8
12
|
!! changes will be overwritten. !!
|
|
9
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:ccbb4509a485eac9301e998d560f6b7092c3998a0a88ab2cc153eb299dd91dc3
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Production/Stable
|
|
16
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
20
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
17
21
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
18
22
|
:alt: License: AGPL-3
|
|
19
23
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github
|
|
20
|
-
:target: https://github.com/OCA/contract/tree/
|
|
24
|
+
:target: https://github.com/OCA/contract/tree/18.0/contract
|
|
21
25
|
:alt: OCA/contract
|
|
22
26
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
23
|
-
:target: https://translation.odoo-community.org/projects/contract-
|
|
27
|
+
:target: https://translation.odoo-community.org/projects/contract-18-0/contract-18-0-contract
|
|
24
28
|
:alt: Translate me on Weblate
|
|
25
29
|
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
26
|
-
:target: https://runboat.odoo-community.org/builds?repo=OCA/contract&target_branch=
|
|
30
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/contract&target_branch=18.0
|
|
27
31
|
:alt: Try me on Runboat
|
|
28
32
|
|
|
29
33
|
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
@@ -94,9 +98,9 @@ Usage
|
|
|
94
98
|
|
|
95
99
|
|image2|
|
|
96
100
|
|
|
97
|
-
.. |image| image:: https://raw.githubusercontent.com/OCA/contract/
|
|
98
|
-
.. |image1| image:: https://raw.githubusercontent.com/OCA/contract/
|
|
99
|
-
.. |image2| image:: https://raw.githubusercontent.com/OCA/contract/
|
|
101
|
+
.. |image| image:: https://raw.githubusercontent.com/OCA/contract/18.0/contract/static/src/screenshots/portal-my.png
|
|
102
|
+
.. |image1| image:: https://raw.githubusercontent.com/OCA/contract/18.0/contract/static/src/screenshots/portal-list.png
|
|
103
|
+
.. |image2| image:: https://raw.githubusercontent.com/OCA/contract/18.0/contract/static/src/screenshots/portal-detail.png
|
|
100
104
|
|
|
101
105
|
Known issues / Roadmap
|
|
102
106
|
======================
|
|
@@ -110,7 +114,7 @@ Bug Tracker
|
|
|
110
114
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/contract/issues>`_.
|
|
111
115
|
In case of trouble, please check there if your issue has already been reported.
|
|
112
116
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
113
|
-
`feedback <https://github.com/OCA/contract/issues/new?body=module:%20contract%0Aversion:%
|
|
117
|
+
`feedback <https://github.com/OCA/contract/issues/new?body=module:%20contract%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
114
118
|
|
|
115
119
|
Do not contact contributors directly about support or help with technical issues.
|
|
116
120
|
|
|
@@ -167,6 +171,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
|
167
171
|
mission is to support the collaborative development of Odoo features and
|
|
168
172
|
promote its widespread use.
|
|
169
173
|
|
|
170
|
-
This module is part of the `OCA/contract <https://github.com/OCA/contract/tree/
|
|
174
|
+
This module is part of the `OCA/contract <https://github.com/OCA/contract/tree/18.0/contract>`_ project on GitHub.
|
|
171
175
|
|
|
172
176
|
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
{
|
|
13
13
|
"name": "Recurring - Contracts Management",
|
|
14
|
-
"version": "
|
|
14
|
+
"version": "18.0.2.0.0",
|
|
15
15
|
"category": "Contract Management",
|
|
16
16
|
"license": "AGPL-3",
|
|
17
17
|
"author": "Tecnativa, ACSONE SA/NV, Odoo Community Association (OCA)",
|
|
@@ -19,31 +19,24 @@
|
|
|
19
19
|
"depends": ["base", "account", "product", "portal"],
|
|
20
20
|
"development_status": "Production/Stable",
|
|
21
21
|
"data": [
|
|
22
|
-
"security/groups.xml",
|
|
23
22
|
"security/contract_tag.xml",
|
|
24
23
|
"security/ir.model.access.csv",
|
|
25
24
|
"security/contract_security.xml",
|
|
26
|
-
"security/contract_terminate_reason.xml",
|
|
27
25
|
"report/report_contract.xml",
|
|
28
26
|
"report/contract_views.xml",
|
|
29
27
|
"data/contract_cron.xml",
|
|
30
|
-
"data/contract_renew_cron.xml",
|
|
31
28
|
"data/mail_template.xml",
|
|
32
29
|
"data/template_mail_notification.xml",
|
|
33
30
|
"data/mail_message_subtype.xml",
|
|
34
31
|
"data/ir_ui_menu.xml",
|
|
35
|
-
"wizards/contract_line_wizard.xml",
|
|
36
32
|
"wizards/contract_manually_create_invoice.xml",
|
|
37
|
-
"wizards/contract_contract_terminate.xml",
|
|
38
33
|
"views/contract_tag.xml",
|
|
39
|
-
"views/abstract_contract_line.xml",
|
|
40
|
-
"views/contract.xml",
|
|
41
|
-
"views/contract_line.xml",
|
|
42
34
|
"views/contract_template.xml",
|
|
43
35
|
"views/contract_template_line.xml",
|
|
36
|
+
"views/contract.xml",
|
|
37
|
+
"views/contract_line.xml",
|
|
44
38
|
"views/res_partner_view.xml",
|
|
45
39
|
"views/res_config_settings.xml",
|
|
46
|
-
"views/contract_terminate_reason.xml",
|
|
47
40
|
"views/contract_portal_templates.xml",
|
|
48
41
|
],
|
|
49
42
|
"assets": {
|
|
@@ -14,11 +14,7 @@ class PortalContract(CustomerPortal):
|
|
|
14
14
|
values = super()._prepare_home_portal_values(counters)
|
|
15
15
|
if "contract_count" in counters:
|
|
16
16
|
contract_model = request.env["contract.contract"]
|
|
17
|
-
contract_count = (
|
|
18
|
-
contract_model.search_count([])
|
|
19
|
-
if contract_model.check_access_rights("read", raise_exception=False)
|
|
20
|
-
else 0
|
|
21
|
-
)
|
|
17
|
+
contract_count = contract_model.search_count([])
|
|
22
18
|
values["contract_count"] = contract_count
|
|
23
19
|
return values
|
|
24
20
|
|
|
@@ -45,9 +41,6 @@ class PortalContract(CustomerPortal):
|
|
|
45
41
|
):
|
|
46
42
|
values = self._prepare_portal_layout_values()
|
|
47
43
|
contract_obj = request.env["contract.contract"]
|
|
48
|
-
# Avoid error if the user does not have access.
|
|
49
|
-
if not contract_obj.check_access_rights("read", raise_exception=False):
|
|
50
|
-
return request.redirect("/my")
|
|
51
44
|
domain = self._get_filter_domain(kw)
|
|
52
45
|
searchbar_sortings = {
|
|
53
46
|
"date": {"label": _("Date"), "order": "recurring_next_date desc"},
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
<field name="auto_delete" eval="True" />
|
|
14
14
|
<field
|
|
15
15
|
name="report_template_ids"
|
|
16
|
-
eval="[(
|
|
16
|
+
eval="[Command.link(ref('contract.report_contract'))]"
|
|
17
17
|
/>
|
|
18
18
|
<field name="lang">{{ object.partner_id.lang }}</field>
|
|
19
19
|
<field name="body_html" type="html">
|
|
@@ -28,30 +28,30 @@
|
|
|
28
28
|
&nbsp;&nbsp;Contract: <strong t-out="object.name" /><br />
|
|
29
29
|
<t t-if="object.date_start">
|
|
30
30
|
&nbsp;&nbsp;Contract Date Start: <t
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
t-out="object.date_start or ''"
|
|
32
|
+
/><br />
|
|
33
33
|
</t>
|
|
34
34
|
|
|
35
35
|
<t t-if="object.user_id">
|
|
36
|
-
|
|
36
|
+
<t t-if="object.user_id.email">
|
|
37
37
|
&nbsp;&nbsp;Your Contact: <a
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
t-att-href="'mailto:%s?subject=Contract %s' % (object.user_id.email, object.name)"
|
|
39
|
+
t-out="object.user_id.name"
|
|
40
|
+
/>
|
|
41
41
|
</t>
|
|
42
|
-
|
|
42
|
+
<t t-else="">
|
|
43
43
|
&nbsp;&nbsp;Your Contact: <t
|
|
44
|
-
|
|
45
|
-
|
|
44
|
+
t-out="object.user_id.name"
|
|
45
|
+
/>
|
|
46
46
|
</t>
|
|
47
|
-
|
|
47
|
+
</t>
|
|
48
48
|
</p>
|
|
49
49
|
|
|
50
50
|
<br />
|
|
51
51
|
<p>If you have any questions, do not hesitate to contact us.</p>
|
|
52
52
|
<p>Thank you for choosing <t
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
t-out="object.company_id.name or 'us'"
|
|
54
|
+
/>!</p>
|
|
55
55
|
<br />
|
|
56
56
|
<br />
|
|
57
57
|
<div
|
|
@@ -63,7 +63,8 @@
|
|
|
63
63
|
<strong
|
|
64
64
|
style="text-transform:uppercase;"
|
|
65
65
|
t-out="object.company_id.name"
|
|
66
|
-
|
|
66
|
+
/>
|
|
67
|
+
</h3>
|
|
67
68
|
</div>
|
|
68
69
|
<div
|
|
69
70
|
style="width: 347px; margin: 0px; padding: 5px 14px; line-height: 16px; background-color: #F2F2F2;"
|
|
@@ -84,9 +85,9 @@
|
|
|
84
85
|
<t t-if="object.company_id.website">
|
|
85
86
|
<div>
|
|
86
87
|
Web: <a
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
88
|
+
t-att-href="object.company_id.website"
|
|
89
|
+
t-out="object.company_id.website"
|
|
90
|
+
/>
|
|
90
91
|
</div>
|
|
91
92
|
</t>
|
|
92
93
|
</div>
|
odoo/addons/contract/i18n/ca.po
CHANGED
|
@@ -9,15 +9,15 @@ msgstr ""
|
|
|
9
9
|
"Project-Id-Version: Odoo Server 11.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
11
|
"POT-Creation-Date: 2018-01-17 13:50+0000\n"
|
|
12
|
-
"PO-Revision-Date:
|
|
13
|
-
"Last-Translator:
|
|
12
|
+
"PO-Revision-Date: 2025-05-27 08:13+0000\n"
|
|
13
|
+
"Last-Translator: pere-aquarian <pere@aquarian.tech>\n"
|
|
14
14
|
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
|
15
15
|
"Language: ca\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
17
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
18
18
|
"Content-Transfer-Encoding: \n"
|
|
19
19
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
20
|
-
"X-Generator: Weblate
|
|
20
|
+
"X-Generator: Weblate 5.10.4\n"
|
|
21
21
|
|
|
22
22
|
#. module: contract
|
|
23
23
|
#: model:mail.template,body_html:contract.email_contract_template
|
|
@@ -98,6 +98,80 @@ msgid ""
|
|
|
98
98
|
" </div>\n"
|
|
99
99
|
" "
|
|
100
100
|
msgstr ""
|
|
101
|
+
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
|
|
102
|
+
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
|
|
103
|
+
" <p>Hola <t t-out=\"object.partner_id.name or '' \"></t>,</p>"
|
|
104
|
+
"\n"
|
|
105
|
+
" <p>S'ha creat un nou contracte: </p>\n"
|
|
106
|
+
"\n"
|
|
107
|
+
" <p style=\"border-left: 1px solid #8e0000; margin-left: 30px;"
|
|
108
|
+
"\">\n"
|
|
109
|
+
" &nbsp;&nbsp;<strong>REFERENCES</strong><br>\n"
|
|
110
|
+
" &nbsp;&nbsp;Contracte: <strong t-out="
|
|
111
|
+
"\"object.name\"></strong><br>\n"
|
|
112
|
+
" <t t-if=\"object.date_start\">\n"
|
|
113
|
+
" &nbsp;&nbsp;Dia d'inici del contracte: <t "
|
|
114
|
+
"t-out=\"object.date_start or ''\"></t><br>\n"
|
|
115
|
+
" </t>\n"
|
|
116
|
+
"\n"
|
|
117
|
+
" <t t-if=\"object.user_id\">\n"
|
|
118
|
+
" <t t-if=\"object.user_id.email\">\n"
|
|
119
|
+
" &nbsp;&nbsp;El seu contacte: <a t-att-"
|
|
120
|
+
"href="
|
|
121
|
+
"\"'mailto:%s?subject=Contracte %s' % (object.user_id.email, object.name)\" "
|
|
122
|
+
"t-out=\"object.user_id.name\"></a>\n"
|
|
123
|
+
" </t>\n"
|
|
124
|
+
" <t t-else=\"\">\n"
|
|
125
|
+
" &nbsp;&nbsp;El seu contacte: <t t-out="
|
|
126
|
+
"\"object.user_id.name\"></t>\n"
|
|
127
|
+
" </t>\n"
|
|
128
|
+
" </t>\n"
|
|
129
|
+
" </p>\n"
|
|
130
|
+
"\n"
|
|
131
|
+
" <br>\n"
|
|
132
|
+
" <p>Contacteu amb nosaltres si teniu qualsevol dubte.</p>\n"
|
|
133
|
+
" <p>Gràcies per triar <t t-out="
|
|
134
|
+
"\"object.company_id.name or '-nos'\"></t>!</p>\n"
|
|
135
|
+
" <br>\n"
|
|
136
|
+
" <br>\n"
|
|
137
|
+
" <div style=\"width: 375px; margin: 0px; padding: 0px; "
|
|
138
|
+
"background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-"
|
|
139
|
+
"radius: 5px 5px; background-repeat: repeat no-repeat;\">\n"
|
|
140
|
+
" <h3 style="
|
|
141
|
+
"\"margin: 0px; padding: 2px 14px; font-size: 12px; color: #DDD;\">\n"
|
|
142
|
+
" <strong style=\"text-transform:uppercase;\" t-out=\""
|
|
143
|
+
"object.company_id.name\"></strong></h3>\n"
|
|
144
|
+
" </div>\n"
|
|
145
|
+
" <div style=\"width: 347px; margin: 0px; padding: 5px 14px; "
|
|
146
|
+
"line-height: 16px; background-color: #F2F2F2;\">\n"
|
|
147
|
+
" <span style="
|
|
148
|
+
"\"color: #222; margin-bottom: 5px; display: block; \">\n"
|
|
149
|
+
" <address t-field="
|
|
150
|
+
"\"object.company_id.sudo().partner_id\" t-options='{\"widget\": \"contact\", "
|
|
151
|
+
"\"fields\": [\"name\", \"address\"], \"no_marker\": True}'></address>\n"
|
|
152
|
+
" </span>\n"
|
|
153
|
+
" <t t-if=\"object.company_id.phone\">\n"
|
|
154
|
+
" <div style=\"margin-top: 0px; margin-right: 0px; "
|
|
155
|
+
"margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; "
|
|
156
|
+
"padding-bottom: 0px; padding-left: 0px; \">\n"
|
|
157
|
+
" Telèfon: <t t-out=\"object.company_id.phone\""
|
|
158
|
+
"></t>\n"
|
|
159
|
+
" </div>\n"
|
|
160
|
+
" </t>\n"
|
|
161
|
+
" <t t-if=\"object.company_id.website\">\n"
|
|
162
|
+
" <div>\n"
|
|
163
|
+
" Web: <a t-att-href=\"object.company_id.website\" "
|
|
164
|
+
"t-out=\"object.company_id.website\"></a>\n"
|
|
165
|
+
" </div>\n"
|
|
166
|
+
" </t>\n"
|
|
167
|
+
" </div>\n"
|
|
168
|
+
" <br>\n"
|
|
169
|
+
" <a t-att-href=\"'%s/my/contracts/%s?access_token=%s' % "
|
|
170
|
+
"(object.get_base_url(), object.id, object.access_token)\" target=\"_blank\" "
|
|
171
|
+
"style=\"background-color:#875A7B;padding: 8px 16px 8px 16px; text-decoration:"
|
|
172
|
+
" none; color: #fff; border-radius: 5px; font-size:13px;\">View contract</a>\n"
|
|
173
|
+
" </div>\n"
|
|
174
|
+
" "
|
|
101
175
|
|
|
102
176
|
#. module: contract
|
|
103
177
|
#: model:mail.template,body_html:contract.mail_template_contract_modification
|
|
@@ -122,6 +196,13 @@ msgid ""
|
|
|
122
196
|
" contracts to invoice\n"
|
|
123
197
|
" </span>"
|
|
124
198
|
msgstr ""
|
|
199
|
+
"<span invisible=\"contract_to_invoice_count > 1\">\n"
|
|
200
|
+
" contracte a facturar\n"
|
|
201
|
+
" </span>\n"
|
|
202
|
+
" <span invisible="
|
|
203
|
+
"\"contract_to_invoice_count <= 1\">\n"
|
|
204
|
+
" contractes a facturar\n"
|
|
205
|
+
" </span>"
|
|
125
206
|
|
|
126
207
|
#. module: contract
|
|
127
208
|
#: model_terms:ir.ui.view,arch_db:contract.report_contract_document
|
|
@@ -157,13 +238,17 @@ msgid ""
|
|
|
157
238
|
" the\n"
|
|
158
239
|
" invoiced period"
|
|
159
240
|
msgstr ""
|
|
241
|
+
"<strong>#INVOICEMONTHNAME#</strong>\n"
|
|
242
|
+
" : Mes de la factura\n"
|
|
243
|
+
" del\n"
|
|
244
|
+
" període facturat"
|
|
160
245
|
|
|
161
246
|
#. module: contract
|
|
162
247
|
#: model_terms:ir.ui.view,arch_db:contract.contract_template_form_view
|
|
163
248
|
msgid ""
|
|
164
249
|
"<strong>#INVOICEMONTHNAME#</strong>: Invoice month name of the invoiced "
|
|
165
250
|
"period"
|
|
166
|
-
msgstr ""
|
|
251
|
+
msgstr "<strong>#INVOICEMONTHNAME#</strong>: Nom del mes del període facturat"
|
|
167
252
|
|
|
168
253
|
#. module: contract
|
|
169
254
|
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
|
@@ -366,24 +451,24 @@ msgstr "Una línia amb auto-renovació ha de tenir una data de fi"
|
|
|
366
451
|
#. module: contract
|
|
367
452
|
#: model:ir.model.fields,field_description:contract.field_contract_line__analytic_distribution
|
|
368
453
|
msgid "Analytic Distribution"
|
|
369
|
-
msgstr ""
|
|
454
|
+
msgstr "Distribució analítica"
|
|
370
455
|
|
|
371
456
|
#. module: contract
|
|
372
457
|
#: model:ir.model.fields,field_description:contract.field_contract_line__analytic_distribution_search
|
|
373
458
|
msgid "Analytic Distribution Search"
|
|
374
|
-
msgstr ""
|
|
459
|
+
msgstr "Cerca de distribució analítica"
|
|
375
460
|
|
|
376
461
|
#. module: contract
|
|
377
462
|
#: model:ir.model.fields,field_description:contract.field_contract_line__analytic_precision
|
|
378
463
|
msgid "Analytic Precision"
|
|
379
|
-
msgstr ""
|
|
464
|
+
msgstr "Precisió analítica"
|
|
380
465
|
|
|
381
466
|
#. module: contract
|
|
382
467
|
#. odoo-python
|
|
383
468
|
#: code:addons/contract/models/contract_line.py:0
|
|
384
469
|
#, python-format
|
|
385
470
|
msgid "April"
|
|
386
|
-
msgstr ""
|
|
471
|
+
msgstr "Abril"
|
|
387
472
|
|
|
388
473
|
#. module: contract
|
|
389
474
|
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
|
@@ -422,7 +507,7 @@ msgstr "Nombre d'adjunts"
|
|
|
422
507
|
#: code:addons/contract/models/contract_line.py:0
|
|
423
508
|
#, python-format
|
|
424
509
|
msgid "August"
|
|
425
|
-
msgstr ""
|
|
510
|
+
msgstr "Agost"
|
|
426
511
|
|
|
427
512
|
#. module: contract
|
|
428
513
|
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__is_auto_renew
|
|
@@ -492,7 +577,7 @@ msgstr "Categoria"
|
|
|
492
577
|
#: model:ir.model.fields,help:contract.field_contract_contract__generation_type
|
|
493
578
|
#: model:ir.model.fields,help:contract.field_contract_template__generation_type
|
|
494
579
|
msgid "Choose the document that will be automatically generated by cron."
|
|
495
|
-
msgstr ""
|
|
580
|
+
msgstr "Trieu el document que serà generat automàticament pel cron."
|
|
496
581
|
|
|
497
582
|
#. module: contract
|
|
498
583
|
#: model_terms:ir.actions.act_window,help:contract.contract_template_action
|
|
@@ -513,7 +598,7 @@ msgstr "Tancat"
|
|
|
513
598
|
#. module: contract
|
|
514
599
|
#: model:ir.model.fields,field_description:contract.field_contract_tag__color
|
|
515
600
|
msgid "Color Index"
|
|
516
|
-
msgstr ""
|
|
601
|
+
msgstr "Índex de color"
|
|
517
602
|
|
|
518
603
|
#. module: contract
|
|
519
604
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__commercial_partner_id
|
|
@@ -825,7 +910,7 @@ msgstr "Línies de contracte (fixes)"
|
|
|
825
910
|
#: code:addons/contract/models/contract.py:0
|
|
826
911
|
#, python-format
|
|
827
912
|
msgid "Contract manually invoiced: %(invoice_link)s"
|
|
828
|
-
msgstr ""
|
|
913
|
+
msgstr "Contracte facturat manualment: %(invoice_link)s"
|
|
829
914
|
|
|
830
915
|
#. module: contract
|
|
831
916
|
#: model:mail.message.subtype,name:contract.mail_message_subtype_contract_modification
|
|
@@ -955,12 +1040,12 @@ msgstr "Client"
|
|
|
955
1040
|
#. module: contract
|
|
956
1041
|
#: model:ir.actions.act_window,name:contract.action_customer_contract_lines
|
|
957
1042
|
msgid "Customer Contract Lines"
|
|
958
|
-
msgstr ""
|
|
1043
|
+
msgstr "Línies del contracte de client"
|
|
959
1044
|
|
|
960
1045
|
#. module: contract
|
|
961
1046
|
#: model:ir.ui.menu,name:contract.menu_customer_contract_line_report
|
|
962
1047
|
msgid "Customer Contract lines"
|
|
963
|
-
msgstr ""
|
|
1048
|
+
msgstr "Línies del contracte de client"
|
|
964
1049
|
|
|
965
1050
|
#. module: contract
|
|
966
1051
|
#: model:ir.actions.act_window,name:contract.action_customer_contract
|
|
@@ -1051,7 +1136,7 @@ msgstr "Dia(es)"
|
|
|
1051
1136
|
#: code:addons/contract/models/contract_line.py:0
|
|
1052
1137
|
#, python-format
|
|
1053
1138
|
msgid "December"
|
|
1054
|
-
msgstr ""
|
|
1139
|
+
msgstr "Desembre"
|
|
1055
1140
|
|
|
1056
1141
|
#. module: contract
|
|
1057
1142
|
#: model:ir.model.fields,help:contract.field_contract_abstract_contract_line__note_invoicing_mode
|
|
@@ -1130,7 +1215,7 @@ msgstr "Tipus de visualització"
|
|
|
1130
1215
|
#. module: contract
|
|
1131
1216
|
#: model:ir.model.fields,field_description:contract.field_contract_line__distribution_analytic_account_ids
|
|
1132
1217
|
msgid "Distribution Analytic Account"
|
|
1133
|
-
msgstr ""
|
|
1218
|
+
msgstr "Compte analític de la distribució"
|
|
1134
1219
|
|
|
1135
1220
|
#. module: contract
|
|
1136
1221
|
#: model:mail.template,name:contract.email_contract_template
|
|
@@ -1153,7 +1238,7 @@ msgstr ""
|
|
|
1153
1238
|
#: code:addons/contract/models/contract_line.py:0
|
|
1154
1239
|
#, python-format
|
|
1155
1240
|
msgid "February"
|
|
1156
|
-
msgstr ""
|
|
1241
|
+
msgstr "Febrer"
|
|
1157
1242
|
|
|
1158
1243
|
#. module: contract
|
|
1159
1244
|
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_search_view
|
|
@@ -1190,7 +1275,7 @@ msgstr "Generar Factures Recurrents des dels Contractes"
|
|
|
1190
1275
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__generation_type
|
|
1191
1276
|
#: model:ir.model.fields,field_description:contract.field_contract_template__generation_type
|
|
1192
1277
|
msgid "Generation Type"
|
|
1193
|
-
msgstr ""
|
|
1278
|
+
msgstr "Tipus de generació"
|
|
1194
1279
|
|
|
1195
1280
|
#. module: contract
|
|
1196
1281
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__group_id
|
|
@@ -1396,7 +1481,7 @@ msgstr "És una suspensió sense data de fi"
|
|
|
1396
1481
|
#: code:addons/contract/models/contract_line.py:0
|
|
1397
1482
|
#, python-format
|
|
1398
1483
|
msgid "January"
|
|
1399
|
-
msgstr ""
|
|
1484
|
+
msgstr "Gener"
|
|
1400
1485
|
|
|
1401
1486
|
#. module: contract
|
|
1402
1487
|
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__journal_id
|
|
@@ -1421,14 +1506,14 @@ msgstr "Apunt"
|
|
|
1421
1506
|
#: code:addons/contract/models/contract_line.py:0
|
|
1422
1507
|
#, python-format
|
|
1423
1508
|
msgid "July"
|
|
1424
|
-
msgstr ""
|
|
1509
|
+
msgstr "Juliol"
|
|
1425
1510
|
|
|
1426
1511
|
#. module: contract
|
|
1427
1512
|
#. odoo-python
|
|
1428
1513
|
#: code:addons/contract/models/contract_line.py:0
|
|
1429
1514
|
#, python-format
|
|
1430
1515
|
msgid "June"
|
|
1431
|
-
msgstr ""
|
|
1516
|
+
msgstr "Juny"
|
|
1432
1517
|
|
|
1433
1518
|
#. module: contract
|
|
1434
1519
|
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__last_date_invoiced
|
|
@@ -1501,7 +1586,7 @@ msgstr "Facturar manialment contractes de venda"
|
|
|
1501
1586
|
#: code:addons/contract/models/contract_line.py:0
|
|
1502
1587
|
#, python-format
|
|
1503
1588
|
msgid "March"
|
|
1504
|
-
msgstr ""
|
|
1589
|
+
msgstr "Març"
|
|
1505
1590
|
|
|
1506
1591
|
#. module: contract
|
|
1507
1592
|
#: model:ir.model.fields,help:contract.field_contract_abstract_contract__line_recurrence
|
|
@@ -1519,7 +1604,7 @@ msgstr ""
|
|
|
1519
1604
|
#: code:addons/contract/models/contract_line.py:0
|
|
1520
1605
|
#, python-format
|
|
1521
1606
|
msgid "May"
|
|
1522
|
-
msgstr ""
|
|
1607
|
+
msgstr "Maig"
|
|
1523
1608
|
|
|
1524
1609
|
#. module: contract
|
|
1525
1610
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_has_error
|
|
@@ -1649,7 +1734,7 @@ msgstr "Notes"
|
|
|
1649
1734
|
#: code:addons/contract/models/contract_line.py:0
|
|
1650
1735
|
#, python-format
|
|
1651
1736
|
msgid "November"
|
|
1652
|
-
msgstr ""
|
|
1737
|
+
msgstr "Novembre"
|
|
1653
1738
|
|
|
1654
1739
|
#. module: contract
|
|
1655
1740
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__message_needaction_counter
|
|
@@ -1681,7 +1766,7 @@ msgstr "Nombre d'errors"
|
|
|
1681
1766
|
#. module: contract
|
|
1682
1767
|
#: model:ir.model.fields,help:contract.field_contract_contract__message_needaction_counter
|
|
1683
1768
|
msgid "Number of messages requiring action"
|
|
1684
|
-
msgstr ""
|
|
1769
|
+
msgstr "Número de missatges que requereixen una acció"
|
|
1685
1770
|
|
|
1686
1771
|
#. module: contract
|
|
1687
1772
|
#: model:ir.model.fields,help:contract.field_contract_contract__message_has_error_counter
|
|
@@ -1693,7 +1778,7 @@ msgstr "Nombre de missatges amb error d'entrega"
|
|
|
1693
1778
|
#: code:addons/contract/models/contract_line.py:0
|
|
1694
1779
|
#, python-format
|
|
1695
1780
|
msgid "October"
|
|
1696
|
-
msgstr ""
|
|
1781
|
+
msgstr "Octubre"
|
|
1697
1782
|
|
|
1698
1783
|
#. module: contract
|
|
1699
1784
|
#: model:ir.model.fields,field_description:contract.field_account_bank_statement_line__old_contract_id
|
|
@@ -1838,7 +1923,7 @@ msgstr "Quatrimestre(s)"
|
|
|
1838
1923
|
#. module: contract
|
|
1839
1924
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__rating_ids
|
|
1840
1925
|
msgid "Ratings"
|
|
1841
|
-
msgstr ""
|
|
1926
|
+
msgstr "Valoracions"
|
|
1842
1927
|
|
|
1843
1928
|
#. module: contract
|
|
1844
1929
|
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract__recurring_rule_type
|
|
@@ -1873,7 +1958,7 @@ msgstr "Factures Recurrents"
|
|
|
1873
1958
|
#. module: contract
|
|
1874
1959
|
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|
|
1875
1960
|
msgid "Recurring Type"
|
|
1876
|
-
msgstr ""
|
|
1961
|
+
msgstr "Tipus de recurrència"
|
|
1877
1962
|
|
|
1878
1963
|
#. module: contract
|
|
1879
1964
|
#. odoo-python
|
|
@@ -1979,7 +2064,7 @@ msgstr "Enviat"
|
|
|
1979
2064
|
#: code:addons/contract/models/contract_line.py:0
|
|
1980
2065
|
#, python-format
|
|
1981
2066
|
msgid "September"
|
|
1982
|
-
msgstr ""
|
|
2067
|
+
msgstr "Setembre"
|
|
1983
2068
|
|
|
1984
2069
|
#. module: contract
|
|
1985
2070
|
#: model:ir.model.fields,field_description:contract.field_contract_abstract_contract_line__sequence
|
|
@@ -2131,12 +2216,12 @@ msgstr "Proveïdor"
|
|
|
2131
2216
|
#. module: contract
|
|
2132
2217
|
#: model:ir.actions.act_window,name:contract.action_supplier_contract_lines
|
|
2133
2218
|
msgid "Supplier Contract Lines"
|
|
2134
|
-
msgstr ""
|
|
2219
|
+
msgstr "Línies de contracte de proveïdor"
|
|
2135
2220
|
|
|
2136
2221
|
#. module: contract
|
|
2137
2222
|
#: model:ir.ui.menu,name:contract.menu_supplier_contract_line_report
|
|
2138
2223
|
msgid "Supplier Contract lines"
|
|
2139
|
-
msgstr ""
|
|
2224
|
+
msgstr "Línies de contracte de proveïdor"
|
|
2140
2225
|
|
|
2141
2226
|
#. module: contract
|
|
2142
2227
|
#: model:ir.actions.act_window,name:contract.action_supplier_contract
|
|
@@ -2183,7 +2268,7 @@ msgstr "Wizard finalitzar contracte"
|
|
|
2183
2268
|
#. module: contract
|
|
2184
2269
|
#: model:ir.model.fields,field_description:contract.field_contract_contract_terminate__terminate_with_last_date_invoiced
|
|
2185
2270
|
msgid "Terminate lines with last date invoiced"
|
|
2186
|
-
msgstr ""
|
|
2271
|
+
msgstr "Finalitzar línies amb la darrera data de factura"
|
|
2187
2272
|
|
|
2188
2273
|
#. module: contract
|
|
2189
2274
|
#: model:ir.model.fields,help:contract.field_contract_contract_terminate__terminate_with_last_date_invoiced
|
|
@@ -2191,6 +2276,8 @@ msgid ""
|
|
|
2191
2276
|
"Terminate the contract lines with the last invoiced date if they cannot be "
|
|
2192
2277
|
"terminated with the date reported in the wizard."
|
|
2193
2278
|
msgstr ""
|
|
2279
|
+
"Finalitzar línies amb la darrera data de facturació si no poden ser "
|
|
2280
|
+
"finalitzades a la data informada a l'assistent."
|
|
2194
2281
|
|
|
2195
2282
|
#. module: contract
|
|
2196
2283
|
#: model:ir.model.fields,field_description:contract.field_contract_contract__is_terminated
|
|
@@ -2452,7 +2539,7 @@ msgstr "Has de posar una data de propera factura a la línia de contracte '%s'"
|
|
|
2452
2539
|
#: code:addons/contract/models/contract.py:0
|
|
2453
2540
|
#, python-format
|
|
2454
2541
|
msgid "by contract"
|
|
2455
|
-
msgstr ""
|
|
2542
|
+
msgstr "per contracte"
|
|
2456
2543
|
|
|
2457
2544
|
#. module: contract
|
|
2458
2545
|
#: model_terms:ir.ui.view,arch_db:contract.contract_contract_form_view
|