odoo-addon-contract 17.0.1.4.5.3__py3-none-any.whl → 17.0.1.4.6__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 +6 -2
- odoo/addons/contract/__manifest__.py +1 -1
- odoo/addons/contract/models/contract.py +29 -0
- odoo/addons/contract/static/description/index.html +19 -13
- odoo/addons/contract/tests/test_contract.py +36 -0
- {odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.dist-info}/METADATA +8 -3
- {odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.dist-info}/RECORD +9 -9
- {odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.dist-info}/WHEEL +1 -1
- {odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.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,13 +11,13 @@ 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:8f6c24b59e2d912a429dbb8b2db18ce6c701538ed54c602cc6d647b07846b86d
|
|
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
|
|
@@ -39,6 +39,9 @@ class ContractContract(models.Model):
|
|
|
39
39
|
group_id = fields.Many2one(
|
|
40
40
|
string="Group",
|
|
41
41
|
comodel_name="account.analytic.account",
|
|
42
|
+
compute="_compute_group_id",
|
|
43
|
+
store=True,
|
|
44
|
+
readonly=False,
|
|
42
45
|
ondelete="restrict",
|
|
43
46
|
)
|
|
44
47
|
currency_id = fields.Many2one(
|
|
@@ -139,6 +142,32 @@ class ContractContract(models.Model):
|
|
|
139
142
|
string="Modifications",
|
|
140
143
|
)
|
|
141
144
|
|
|
145
|
+
@api.depends(
|
|
146
|
+
"contract_line_ids",
|
|
147
|
+
"contract_line_ids.analytic_distribution",
|
|
148
|
+
"contract_line_fixed_ids",
|
|
149
|
+
"contract_line_fixed_ids.analytic_distribution",
|
|
150
|
+
)
|
|
151
|
+
def _compute_group_id(self):
|
|
152
|
+
"""Compute the group_id based on the analytic_distribution
|
|
153
|
+
in the contract lines.
|
|
154
|
+
If all contract lines have the same analytic account, set it as group_id.
|
|
155
|
+
Otherwise, set group_id to False.
|
|
156
|
+
"""
|
|
157
|
+
for record in self:
|
|
158
|
+
record.group_id = False
|
|
159
|
+
all_analytic_accounts = []
|
|
160
|
+
contract_lines = record.contract_line_ids | record.contract_line_fixed_ids
|
|
161
|
+
for line in contract_lines:
|
|
162
|
+
if line.analytic_distribution:
|
|
163
|
+
all_analytic_accounts.extend(
|
|
164
|
+
int(acc_id)
|
|
165
|
+
for account_ids in line.analytic_distribution.keys()
|
|
166
|
+
for acc_id in account_ids.split(",")
|
|
167
|
+
)
|
|
168
|
+
if len(set(all_analytic_accounts)) == 1:
|
|
169
|
+
record.group_id = all_analytic_accounts[0]
|
|
170
|
+
|
|
142
171
|
def get_formview_id(self, access_uid=None):
|
|
143
172
|
if self.contract_type == "sale":
|
|
144
173
|
return self.env.ref("contract.contract_contract_customer_form_view").id
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<head>
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
5
5
|
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
6
|
-
<title>
|
|
6
|
+
<title>README.rst</title>
|
|
7
7
|
<style type="text/css">
|
|
8
8
|
|
|
9
9
|
/*
|
|
@@ -360,16 +360,21 @@ ul.auto-toc {
|
|
|
360
360
|
</style>
|
|
361
361
|
</head>
|
|
362
362
|
<body>
|
|
363
|
-
<div class="document"
|
|
364
|
-
<h1 class="title">Recurring - Contracts Management</h1>
|
|
363
|
+
<div class="document">
|
|
365
364
|
|
|
365
|
+
|
|
366
|
+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
|
|
367
|
+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
|
|
368
|
+
</a>
|
|
369
|
+
<div class="section" id="recurring-contracts-management">
|
|
370
|
+
<h1>Recurring - Contracts Management</h1>
|
|
366
371
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
373
|
!! changes will be overwritten. !!
|
|
369
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:8f6c24b59e2d912a429dbb8b2db18ce6c701538ed54c602cc6d647b07846b86d
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
|
-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/
|
|
377
|
+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/contract/tree/17.0/contract"><img alt="OCA/contract" src="https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/contract-17-0/contract-17-0-contract"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/contract&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
373
378
|
<p>This module enables contracts management with recurring invoicing
|
|
374
379
|
functions. Also you can print and send by email contract report.</p>
|
|
375
380
|
<p>It works for customer contract and supplier contracts.</p>
|
|
@@ -390,14 +395,14 @@ functions. Also you can print and send by email contract report.</p>
|
|
|
390
395
|
</ul>
|
|
391
396
|
</div>
|
|
392
397
|
<div class="section" id="configuration">
|
|
393
|
-
<
|
|
398
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Configuration</a></h2>
|
|
394
399
|
<p>To view discount field in contract line, you need to set <em>Discount on
|
|
395
400
|
lines</em> in user access rights.</p>
|
|
396
401
|
<p>Contracts can be viewed on the portal (list and detail) if the user
|
|
397
402
|
logged into the portal is a follower of the contract.</p>
|
|
398
403
|
</div>
|
|
399
404
|
<div class="section" id="usage">
|
|
400
|
-
<
|
|
405
|
+
<h2><a class="toc-backref" href="#toc-entry-2">Usage</a></h2>
|
|
401
406
|
<ol class="arabic simple">
|
|
402
407
|
<li>Contracts are in Invoicing -> Customers -> Customer and Invoicing ->
|
|
403
408
|
Vendors -> Supplier Contracts</li>
|
|
@@ -441,14 +446,14 @@ the template on the contract and fields will be filled automatically.</li>
|
|
|
441
446
|
<p><img alt="image2" src="https://raw.githubusercontent.com/OCA/contract/17.0/contract/static/src/screenshots/portal-detail.png" /></p>
|
|
442
447
|
</div>
|
|
443
448
|
<div class="section" id="known-issues-roadmap">
|
|
444
|
-
<
|
|
449
|
+
<h2><a class="toc-backref" href="#toc-entry-3">Known issues / Roadmap</a></h2>
|
|
445
450
|
<ul class="simple">
|
|
446
451
|
<li>Recover states and others functional fields in Contracts.</li>
|
|
447
452
|
<li>Add recurrence flag at template level.</li>
|
|
448
453
|
</ul>
|
|
449
454
|
</div>
|
|
450
455
|
<div class="section" id="bug-tracker">
|
|
451
|
-
<
|
|
456
|
+
<h2><a class="toc-backref" href="#toc-entry-4">Bug Tracker</a></h2>
|
|
452
457
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/contract/issues">GitHub Issues</a>.
|
|
453
458
|
In case of trouble, please check there if your issue has already been reported.
|
|
454
459
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -456,16 +461,16 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
456
461
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
457
462
|
</div>
|
|
458
463
|
<div class="section" id="credits">
|
|
459
|
-
<
|
|
464
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Credits</a></h2>
|
|
460
465
|
<div class="section" id="authors">
|
|
461
|
-
<
|
|
466
|
+
<h3><a class="toc-backref" href="#toc-entry-6">Authors</a></h3>
|
|
462
467
|
<ul class="simple">
|
|
463
468
|
<li>Tecnativa</li>
|
|
464
469
|
<li>ACSONE SA/NV</li>
|
|
465
470
|
</ul>
|
|
466
471
|
</div>
|
|
467
472
|
<div class="section" id="contributors">
|
|
468
|
-
<
|
|
473
|
+
<h3><a class="toc-backref" href="#toc-entry-7">Contributors</a></h3>
|
|
469
474
|
<ul>
|
|
470
475
|
<li><p class="first">Angel Moya <<a class="reference external" href="mailto:angel.moya@domatix.com">angel.moya@domatix.com</a>></p>
|
|
471
476
|
</li>
|
|
@@ -504,7 +509,7 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
504
509
|
</ul>
|
|
505
510
|
</div>
|
|
506
511
|
<div class="section" id="maintainers">
|
|
507
|
-
<
|
|
512
|
+
<h3><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h3>
|
|
508
513
|
<p>This module is maintained by the OCA.</p>
|
|
509
514
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
510
515
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -517,5 +522,6 @@ promote its widespread use.</p>
|
|
|
517
522
|
</div>
|
|
518
523
|
</div>
|
|
519
524
|
</div>
|
|
525
|
+
</div>
|
|
520
526
|
</body>
|
|
521
527
|
</html>
|
|
@@ -2403,3 +2403,39 @@ class TestContract(TestContractBase):
|
|
|
2403
2403
|
self.contract3.contract_line_ids.recurring_next_date = fields.Date.today()
|
|
2404
2404
|
invoice_id = self.contract3.recurring_create_invoice()
|
|
2405
2405
|
self.assertEqual(invoice_id.invoice_line_ids[0].name, "Header for May Services")
|
|
2406
|
+
|
|
2407
|
+
def test_analytic_account(self):
|
|
2408
|
+
"""Tests the automatic setting of the analytic account on the contract
|
|
2409
|
+
depending on the analytic accounts set on the contract lines.
|
|
2410
|
+
# Case 1: only one contract line with one analytic account
|
|
2411
|
+
=> the analytic account is set on the contract
|
|
2412
|
+
# Case 2: only one contract line with two analytic accounts
|
|
2413
|
+
=> the analytic account is not set on the contract
|
|
2414
|
+
# Case 3: two contract lines, with the same analytic account
|
|
2415
|
+
=> the analytic account is set on the contract
|
|
2416
|
+
# Case 4: two contract lines, each one with one analytic account
|
|
2417
|
+
=> the analytic account is not set on the contract
|
|
2418
|
+
"""
|
|
2419
|
+
plan = self.env["account.analytic.plan"].create({"name": "Test plan contract"})
|
|
2420
|
+
self.analytic_account_1 = self.env["account.analytic.account"].create(
|
|
2421
|
+
{"name": "Test account contract 1", "plan_id": plan.id}
|
|
2422
|
+
)
|
|
2423
|
+
self.analytic_account_2 = self.env["account.analytic.account"].create(
|
|
2424
|
+
{"name": "Test account contract 2", "plan_id": plan.id}
|
|
2425
|
+
)
|
|
2426
|
+
# Case 1: only one contract line with one analytic account
|
|
2427
|
+
self.acct_line.analytic_distribution = {self.analytic_account_1.id: 100}
|
|
2428
|
+
self.assertEqual(self.contract.group_id, self.analytic_account_1)
|
|
2429
|
+
# Case 2: only one contract line with two analytic accounts
|
|
2430
|
+
self.acct_line.analytic_distribution = {
|
|
2431
|
+
self.analytic_account_1.id: 50,
|
|
2432
|
+
self.analytic_account_2.id: 50,
|
|
2433
|
+
}
|
|
2434
|
+
self.assertFalse(self.contract.group_id)
|
|
2435
|
+
# Case 3: two contract lines, with the same analytic account
|
|
2436
|
+
self.acct_line.analytic_distribution = {self.analytic_account_1.id: 100}
|
|
2437
|
+
new_contract_line = self.acct_line.copy()
|
|
2438
|
+
self.assertEqual(self.contract.group_id, self.analytic_account_1)
|
|
2439
|
+
# Case 4: two contract lines, each one with one analytic account
|
|
2440
|
+
new_contract_line.analytic_distribution = {self.analytic_account_2.id: 100}
|
|
2441
|
+
self.assertFalse(self.contract.group_id)
|
{odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-contract
|
|
3
|
-
Version: 17.0.1.4.
|
|
3
|
+
Version: 17.0.1.4.6
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo>=17.0a,<17.1dev
|
|
6
6
|
Summary: Recurring - Contracts Management
|
|
@@ -13,6 +13,11 @@ Classifier: Framework :: Odoo
|
|
|
13
13
|
Classifier: Framework :: Odoo :: 17.0
|
|
14
14
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
15
15
|
Classifier: Development Status :: 5 - Production/Stable
|
|
16
|
+
Description-Content-Type: text/x-rst
|
|
17
|
+
|
|
18
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
19
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
20
|
+
:alt: Odoo Community Association
|
|
16
21
|
|
|
17
22
|
================================
|
|
18
23
|
Recurring - Contracts Management
|
|
@@ -23,13 +28,13 @@ Recurring - Contracts Management
|
|
|
23
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
24
29
|
!! changes will be overwritten. !!
|
|
25
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
26
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:8f6c24b59e2d912a429dbb8b2db18ce6c701538ed54c602cc6d647b07846b86d
|
|
27
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
33
|
|
|
29
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
30
35
|
:target: https://odoo-community.org/page/development-status
|
|
31
36
|
:alt: Production/Stable
|
|
32
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
37
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
33
38
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
34
39
|
:alt: License: AGPL-3
|
|
35
40
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcontract-lightgray.png?logo=github
|
{odoo_addon_contract-17.0.1.4.5.3.dist-info → odoo_addon_contract-17.0.1.4.6.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/contract/README.rst,sha256=
|
|
1
|
+
odoo/addons/contract/README.rst,sha256=0J-HwO3NAIwZf2oZMbgBaln5s_bcnAerTpvrxLsax50,6176
|
|
2
2
|
odoo/addons/contract/__init__.py,sha256=dnUeA_K1torbiMNF3tt2dtECdk-FkWm01DByr9MBMIA,69
|
|
3
|
-
odoo/addons/contract/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/contract/__manifest__.py,sha256=CfD1DeXlcl3f1eO69_FEIft2vHBQHAjtIg8anlEhVgU,2084
|
|
4
4
|
odoo/addons/contract/controllers/__init__.py,sha256=ZAYSY9pxyJjumL2QVLuxqtBzjLwKPiQsVXMBAWvNGGY,85
|
|
5
5
|
odoo/addons/contract/controllers/main.py,sha256=bh4rySoMQWEzVWjez9Jn0cpl6edK3Frh63AROkiRfio,3995
|
|
6
6
|
odoo/addons/contract/data/contract_cron.xml,sha256=Sf-dhqWi0FqEIDGI0L4FJh5E--RonzhZepZwecY_KaI,637
|
|
@@ -84,7 +84,7 @@ odoo/addons/contract/models/__init__.py,sha256=zuv-r67B013SUlCuzjrrupfEOTsgfAXyP
|
|
|
84
84
|
odoo/addons/contract/models/abstract_contract.py,sha256=oZBawlf0KQ1_iXNw7ns6M7x6mMBI2xvSR46ow2Flhrw,2907
|
|
85
85
|
odoo/addons/contract/models/abstract_contract_line.py,sha256=2Tcl1mH3uUSzYpaYXebbPeoRPGtPsgAn73cQOVS6-Vc,10252
|
|
86
86
|
odoo/addons/contract/models/account_move.py,sha256=5jbL9XA-pc6pWlUFAk8QEeiUPR1f6kiJN1x-mtthCx4,568
|
|
87
|
-
odoo/addons/contract/models/contract.py,sha256=
|
|
87
|
+
odoo/addons/contract/models/contract.py,sha256=KPj_NyfhzcNYPXOGXIdln4WqMmGSvjVsQGu8nFcVtUo,28314
|
|
88
88
|
odoo/addons/contract/models/contract_line.py,sha256=NVPkSYQ-yMjtvgVWsxVyaEiRgeq56RypXWIvrTULuoM,41279
|
|
89
89
|
odoo/addons/contract/models/contract_line_constraints.py,sha256=b2ickNjNcRDsihwfjl0JxNk-_n9_2WEPHL_JdJPXwvM,11126
|
|
90
90
|
odoo/addons/contract/models/contract_modification.py,sha256=d0tv2Zn6_WrR633pmzwAavzC2I3sLYmGokOKtMn7AYY,1147
|
|
@@ -109,7 +109,7 @@ odoo/addons/contract/security/contract_terminate_reason.xml,sha256=9FuazMNgwNWVE
|
|
|
109
109
|
odoo/addons/contract/security/groups.xml,sha256=kv3a7HwzgFu5bHzaLoPDOkCkFnlJblkfJBHlE4HWKdg,390
|
|
110
110
|
odoo/addons/contract/security/ir.model.access.csv,sha256=PCzdDvEoQpqozFHSk1uU_JyREUP2U2gVV1lWeQm17Z8,1836
|
|
111
111
|
odoo/addons/contract/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
112
|
-
odoo/addons/contract/static/description/index.html,sha256=
|
|
112
|
+
odoo/addons/contract/static/description/index.html,sha256=oYr1-7j1TKpyspssSOBRty5sKCHPR2BvqeS_mQg03gM,17445
|
|
113
113
|
odoo/addons/contract/static/src/img/contract_icon.svg,sha256=2IFs70Oy9WtE9of2SO4Vj08mwzcw-I5s_LL3UvtKlus,9643
|
|
114
114
|
odoo/addons/contract/static/src/js/contract_portal_tour.esm.js,sha256=MfKevsZ3HOhegDM23KYNEylJgT71Z38y7ZlmfQq7hMM,424
|
|
115
115
|
odoo/addons/contract/static/src/screenshots/portal-detail.png,sha256=8pMCU4nqwnSM-rbWZd3iJxXdYLBiYzuWNvT_NKslcoo,113399
|
|
@@ -117,7 +117,7 @@ odoo/addons/contract/static/src/screenshots/portal-list.png,sha256=gWSW4rlncFZem
|
|
|
117
117
|
odoo/addons/contract/static/src/screenshots/portal-my.png,sha256=YrtvTDjoc839Eka5zSZ8FQhtzoMEeW4FrXGrYAwAkS4,22985
|
|
118
118
|
odoo/addons/contract/static/src/scss/frontend.scss,sha256=LilfXNOwW8D2eXOMY0ZgrEv8hU5Vn1u9inCEIJp8D0g,1863
|
|
119
119
|
odoo/addons/contract/tests/__init__.py,sha256=iive8lH1QtzKmbhBBzzU4AQgSAgWxdJF1mMLEFOiA4c,138
|
|
120
|
-
odoo/addons/contract/tests/test_contract.py,sha256=
|
|
120
|
+
odoo/addons/contract/tests/test_contract.py,sha256=a5PPx9h9obMCbVrh7zfXxTFOQ2j6D3I2AEl7N36jE7U,104164
|
|
121
121
|
odoo/addons/contract/tests/test_contract_manually_create_invoice.py,sha256=GfA-hDaI4mSztE-2zQgFE_bQM-nsKzFhQRybi8EGeLo,2541
|
|
122
122
|
odoo/addons/contract/tests/test_multicompany.py,sha256=tzoZO47kgNl05I4lbc-ynfmrJT9dhY6VINxxMdoj7Tk,4513
|
|
123
123
|
odoo/addons/contract/tests/test_portal.py,sha256=YRJkx2FcYz-oLhFlXQzFjtzqq3crJIgLTunWwiqua0E,1174
|
|
@@ -138,7 +138,7 @@ odoo/addons/contract/wizards/contract_line_wizard.py,sha256=ItgL8eYPTnP5JI3kPAZm
|
|
|
138
138
|
odoo/addons/contract/wizards/contract_line_wizard.xml,sha256=t_Abc2wd9a_8jS6Cjlo_1nNilqycD_XWdt3Joi2o2Zo,4400
|
|
139
139
|
odoo/addons/contract/wizards/contract_manually_create_invoice.py,sha256=Q1BwQ9Vh4YdEiPlm6DS7iRcWauyEn9eoEY5S3MtbpgA,2962
|
|
140
140
|
odoo/addons/contract/wizards/contract_manually_create_invoice.xml,sha256=EzgPmH5sJZcLjlUwB29tYw9EuyXaZC53xt9dDy9LopM,3791
|
|
141
|
-
odoo_addon_contract-17.0.1.4.
|
|
142
|
-
odoo_addon_contract-17.0.1.4.
|
|
143
|
-
odoo_addon_contract-17.0.1.4.
|
|
144
|
-
odoo_addon_contract-17.0.1.4.
|
|
141
|
+
odoo_addon_contract-17.0.1.4.6.dist-info/METADATA,sha256=bvLO6X-0lmT_yRvNlPZM5tdBTv_uTcnTCsALBjln_Y8,6793
|
|
142
|
+
odoo_addon_contract-17.0.1.4.6.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
143
|
+
odoo_addon_contract-17.0.1.4.6.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
144
|
+
odoo_addon_contract-17.0.1.4.6.dist-info/RECORD,,
|
|
File without changes
|