odoo-addon-contract 18.0.2.0.9__py3-none-any.whl → 18.0.2.1.0__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 +1 -1
- odoo/addons/contract/__manifest__.py +1 -1
- odoo/addons/contract/i18n/contract.pot +13 -0
- odoo/addons/contract/models/contract.py +1 -9
- odoo/addons/contract/models/contract_line.py +11 -0
- odoo/addons/contract/static/description/index.html +1 -1
- odoo/addons/contract/views/contract_line.xml +46 -2
- {odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/METADATA +2 -2
- {odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/RECORD +11 -11
- {odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/WHEEL +0 -0
- {odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/top_level.txt +0 -0
odoo/addons/contract/README.rst
CHANGED
|
@@ -11,7 +11,7 @@ Recurring - Contracts Management
|
|
|
11
11
|
!! This file is generated by oca-gen-addon-readme !!
|
|
12
12
|
!! changes will be overwritten. !!
|
|
13
13
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
14
|
-
!! source digest: sha256:
|
|
14
|
+
!! source digest: sha256:854a5a7d18c7c91627da27711c09e20a819cbe1e85c20327d4bca4c1df0717c1
|
|
15
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
16
16
|
|
|
17
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
|
@@ -690,6 +690,7 @@ msgid "Date Start"
|
|
|
690
690
|
msgstr ""
|
|
691
691
|
|
|
692
692
|
#. module: contract
|
|
693
|
+
#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view
|
|
693
694
|
#: model_terms:ir.ui.view,arch_db:contract.portal_my_contracts
|
|
694
695
|
msgid "Date end"
|
|
695
696
|
msgstr ""
|
|
@@ -708,6 +709,11 @@ msgstr ""
|
|
|
708
709
|
msgid "Date of next invoice"
|
|
709
710
|
msgstr ""
|
|
710
711
|
|
|
712
|
+
#. module: contract
|
|
713
|
+
#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view
|
|
714
|
+
msgid "Date start"
|
|
715
|
+
msgstr ""
|
|
716
|
+
|
|
711
717
|
#. module: contract
|
|
712
718
|
#: model:ir.model.fields.selection,name:contract.selection__contract_contract__recurring_rule_type__daily
|
|
713
719
|
#: model:ir.model.fields.selection,name:contract.selection__contract_line__recurring_rule_type__daily
|
|
@@ -1174,6 +1180,11 @@ msgstr ""
|
|
|
1174
1180
|
msgid "Next Period Start"
|
|
1175
1181
|
msgstr ""
|
|
1176
1182
|
|
|
1183
|
+
#. module: contract
|
|
1184
|
+
#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view
|
|
1185
|
+
msgid "Next invoice date"
|
|
1186
|
+
msgstr ""
|
|
1187
|
+
|
|
1177
1188
|
#. module: contract
|
|
1178
1189
|
#: model_terms:ir.ui.view,arch_db:contract.contract_line_form_view
|
|
1179
1190
|
msgid "Next period to invoice"
|
|
@@ -1266,6 +1277,7 @@ msgstr ""
|
|
|
1266
1277
|
#: model:ir.model.fields,field_description:contract.field_contract_line__partner_id
|
|
1267
1278
|
#: model:ir.model.fields,field_description:contract.field_contract_template__partner_id
|
|
1268
1279
|
#: model:ir.model.fields,field_description:contract.field_contract_template_line__partner_id
|
|
1280
|
+
#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view
|
|
1269
1281
|
msgid "Partner"
|
|
1270
1282
|
msgstr ""
|
|
1271
1283
|
|
|
@@ -1324,6 +1336,7 @@ msgstr ""
|
|
|
1324
1336
|
#. module: contract
|
|
1325
1337
|
#: model:ir.model.fields,field_description:contract.field_contract_line__product_id
|
|
1326
1338
|
#: model:ir.model.fields,field_description:contract.field_contract_template_line__product_id
|
|
1339
|
+
#: model_terms:ir.ui.view,arch_db:contract.contract_line_search_view
|
|
1327
1340
|
msgid "Product"
|
|
1328
1341
|
msgstr ""
|
|
1329
1342
|
|
|
@@ -568,14 +568,6 @@ class ContractContract(models.Model):
|
|
|
568
568
|
"""
|
|
569
569
|
self.ensure_one()
|
|
570
570
|
|
|
571
|
-
def can_be_invoiced(contract_line):
|
|
572
|
-
return (
|
|
573
|
-
not contract_line.is_canceled
|
|
574
|
-
and contract_line.recurring_next_date
|
|
575
|
-
and contract_line.recurring_next_date <= date_ref
|
|
576
|
-
and contract_line.next_period_date_start
|
|
577
|
-
)
|
|
578
|
-
|
|
579
571
|
lines2invoice = previous = self.env["contract.line"]
|
|
580
572
|
current_section = current_note = False
|
|
581
573
|
for line in self.contract_line_ids:
|
|
@@ -589,7 +581,7 @@ class ContractContract(models.Model):
|
|
|
589
581
|
elif line.note_invoicing_mode == "with_next_line":
|
|
590
582
|
current_note = line
|
|
591
583
|
elif line.is_recurring_note or not line.display_type:
|
|
592
|
-
if
|
|
584
|
+
if line._can_be_invoiced(date_ref):
|
|
593
585
|
if current_section:
|
|
594
586
|
lines2invoice |= current_section
|
|
595
587
|
current_section = False
|
|
@@ -30,6 +30,8 @@ class ContractLine(models.Model):
|
|
|
30
30
|
auto_join=True,
|
|
31
31
|
ondelete="cascade",
|
|
32
32
|
)
|
|
33
|
+
# replace from abstract to add the store=True
|
|
34
|
+
partner_id = fields.Many2one(store=True)
|
|
33
35
|
currency_id = fields.Many2one(related="contract_id.currency_id")
|
|
34
36
|
create_invoice_visibility = fields.Boolean(
|
|
35
37
|
compute="_compute_create_invoice_visibility"
|
|
@@ -261,6 +263,15 @@ class ContractLine(models.Model):
|
|
|
261
263
|
}
|
|
262
264
|
)
|
|
263
265
|
|
|
266
|
+
def _can_be_invoiced(self, date_ref):
|
|
267
|
+
self.ensure_one()
|
|
268
|
+
return (
|
|
269
|
+
not self.is_canceled
|
|
270
|
+
and self.recurring_next_date
|
|
271
|
+
and self.recurring_next_date <= date_ref
|
|
272
|
+
and self.next_period_date_start
|
|
273
|
+
)
|
|
274
|
+
|
|
264
275
|
@api.model
|
|
265
276
|
def get_view(self, view_id=None, view_type="form", **options):
|
|
266
277
|
default_contract_type = self.env.context.get("default_contract_type")
|
|
@@ -372,7 +372,7 @@ ul.auto-toc {
|
|
|
372
372
|
!! This file is generated by oca-gen-addon-readme !!
|
|
373
373
|
!! changes will be overwritten. !!
|
|
374
374
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
375
|
-
!! source digest: sha256:
|
|
375
|
+
!! source digest: sha256:854a5a7d18c7c91627da27711c09e20a819cbe1e85c20327d4bca4c1df0717c1
|
|
376
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
377
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/18.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-18-0/contract-18-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=18.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
378
378
|
<p>This module enables contracts management with recurring invoicing
|
|
@@ -171,16 +171,60 @@
|
|
|
171
171
|
domain="[]"
|
|
172
172
|
context="{'group_by':'contract_id'}"
|
|
173
173
|
/>
|
|
174
|
+
<filter
|
|
175
|
+
string="Partner"
|
|
176
|
+
name="group_by_partner"
|
|
177
|
+
domain="[]"
|
|
178
|
+
context="{'group_by':'partner_id'}"
|
|
179
|
+
/>
|
|
180
|
+
<filter
|
|
181
|
+
string="Product"
|
|
182
|
+
name="group_by_product"
|
|
183
|
+
domain="[]"
|
|
184
|
+
context="{'group_by':'product_id'}"
|
|
185
|
+
/>
|
|
186
|
+
<separator />
|
|
187
|
+
<filter
|
|
188
|
+
string="Date start"
|
|
189
|
+
name="group_by_date_start"
|
|
190
|
+
domain="[]"
|
|
191
|
+
context="{'group_by':'date_start'}"
|
|
192
|
+
/>
|
|
193
|
+
<filter
|
|
194
|
+
string="Date end"
|
|
195
|
+
name="group_by_date_end"
|
|
196
|
+
domain="[]"
|
|
197
|
+
context="{'group_by':'date_end'}"
|
|
198
|
+
/>
|
|
199
|
+
<filter
|
|
200
|
+
string="Next invoice date"
|
|
201
|
+
name="group_by_recurring_next_date"
|
|
202
|
+
domain="[]"
|
|
203
|
+
context="{'group_by':'recurring_next_date'}"
|
|
204
|
+
/>
|
|
174
205
|
</group>
|
|
175
206
|
</search>
|
|
176
207
|
</field>
|
|
177
208
|
</record>
|
|
178
209
|
|
|
210
|
+
<record id="contract_line_view_pivot" model="ir.ui.view">
|
|
211
|
+
<field name="name">contract.line.view.pivot</field>
|
|
212
|
+
<field name="model">contract.line</field>
|
|
213
|
+
<field name="arch" type="xml">
|
|
214
|
+
<pivot>
|
|
215
|
+
<field name="contract_id" type="row" />
|
|
216
|
+
<field name="date_start" interval="month" type="col" />
|
|
217
|
+
<field name="quantity" type="measure" />
|
|
218
|
+
<field name="specific_price" type="measure" />
|
|
219
|
+
</pivot>
|
|
220
|
+
</field>
|
|
221
|
+
</record>
|
|
222
|
+
|
|
179
223
|
<!-- Add action for contract lines -->
|
|
180
224
|
<record id="action_supplier_contract_lines" model="ir.actions.act_window">
|
|
181
225
|
<field name="name">Supplier Contract Lines</field>
|
|
182
226
|
<field name="res_model">contract.line</field>
|
|
183
|
-
<field name="view_mode">list,form</field>
|
|
227
|
+
<field name="view_mode">list,pivot,form</field>
|
|
184
228
|
<field name="domain">[('contract_id.contract_type', '=', 'purchase')]</field>
|
|
185
229
|
<field name="context">
|
|
186
230
|
{'search_default_group_by_contract': 1}
|
|
@@ -192,7 +236,7 @@
|
|
|
192
236
|
<record id="action_customer_contract_lines" model="ir.actions.act_window">
|
|
193
237
|
<field name="name">Customer Contract Lines</field>
|
|
194
238
|
<field name="res_model">contract.line</field>
|
|
195
|
-
<field name="view_mode">list,form</field>
|
|
239
|
+
<field name="view_mode">list,pivot,form</field>
|
|
196
240
|
<field name="domain">[('contract_id.contract_type', '=', 'sale')]</field>
|
|
197
241
|
<field name="context">
|
|
198
242
|
{'search_default_group_by_contract': 1}
|
{odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-contract
|
|
3
|
-
Version: 18.0.2.0
|
|
3
|
+
Version: 18.0.2.1.0
|
|
4
4
|
Requires-Python: >=3.10
|
|
5
5
|
Requires-Dist: odoo==18.0.*
|
|
6
6
|
Summary: Recurring - Contracts Management
|
|
@@ -28,7 +28,7 @@ Recurring - Contracts Management
|
|
|
28
28
|
!! This file is generated by oca-gen-addon-readme !!
|
|
29
29
|
!! changes will be overwritten. !!
|
|
30
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
31
|
-
!! source digest: sha256:
|
|
31
|
+
!! source digest: sha256:854a5a7d18c7c91627da27711c09e20a819cbe1e85c20327d4bca4c1df0717c1
|
|
32
32
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
33
33
|
|
|
34
34
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
|
{odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/contract/README.rst,sha256=
|
|
1
|
+
odoo/addons/contract/README.rst,sha256=St3WDwkK2l_MrIgw5nhaaktso530_vodQNy6iT-fUAE,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=NWi8lTaM_qb2IABnOFJ0g2hSMQ30NQkeeysQX0ewjq8,1777
|
|
4
4
|
odoo/addons/contract/controllers/__init__.py,sha256=ZAYSY9pxyJjumL2QVLuxqtBzjLwKPiQsVXMBAWvNGGY,85
|
|
5
5
|
odoo/addons/contract/controllers/main.py,sha256=5C-WzZ6zPWeea-Kb0U01a1yNCtcn29iZeoc9hjkODa4,3676
|
|
6
6
|
odoo/addons/contract/data/contract_cron.xml,sha256=yYTdn4fmIU5zsfFEgx-H_55M9nwc0WfJ3Q6ufxQKPt8,549
|
|
@@ -14,7 +14,7 @@ odoo/addons/contract/i18n/bg.po,sha256=HKiX7UPdRtcVuFaIBSeCdqqYYpIj_IiT0w-ieLelz
|
|
|
14
14
|
odoo/addons/contract/i18n/bs.po,sha256=ACEE8jnjCyENxcD5C0VZIEdqS3-2wezhRCCJ9b8ApSo,65475
|
|
15
15
|
odoo/addons/contract/i18n/ca.po,sha256=T1BlUy97vJ8SblckbFthocuEQ7vdWsd0vUNvgo5r5FI,122613
|
|
16
16
|
odoo/addons/contract/i18n/ca_ES.po,sha256=WU8XV5_VBwV0JUvach_2xvQ-2W-KNy5dfKvgxwYF0M0,65130
|
|
17
|
-
odoo/addons/contract/i18n/contract.pot,sha256=
|
|
17
|
+
odoo/addons/contract/i18n/contract.pot,sha256=THbGOLjKx8zHn2cBJ8gwx2wCtubBTaBazRR9r72zTJ8,65428
|
|
18
18
|
odoo/addons/contract/i18n/cs.po,sha256=WoyZs1ezfNisU9GAHOSz2-QpSmtshAULnTNXgeEVhOo,65500
|
|
19
19
|
odoo/addons/contract/i18n/da.po,sha256=1y80aHfUEFWHVDu95qRMi5mAu5cPjOqcLNV5nXX8Umg,65480
|
|
20
20
|
odoo/addons/contract/i18n/de.po,sha256=hAj3MHJUmqaWWidyoNowOLQlgflNjKvFR9lDdq2CJhE,105429
|
|
@@ -84,8 +84,8 @@ odoo/addons/contract/migrations/18.0.2.0.0/pre-migrate.py,sha256=ywaZcxy-bxj2MRi
|
|
|
84
84
|
odoo/addons/contract/models/__init__.py,sha256=n3UpKXb_Oi-2ebHho6pWrd6kw_cMK6GG1E3fl7ey_zc,372
|
|
85
85
|
odoo/addons/contract/models/account_move.py,sha256=QdSF_E5cifIgOiPiZ1PKXxuA5y9y4PC-kkUurDdGKo4,387
|
|
86
86
|
odoo/addons/contract/models/account_move_line.py,sha256=X-GJ66Q_6BySwImRLMpFxgIqfhsOaEUb6xLSQveB0uc,396
|
|
87
|
-
odoo/addons/contract/models/contract.py,sha256=
|
|
88
|
-
odoo/addons/contract/models/contract_line.py,sha256=
|
|
87
|
+
odoo/addons/contract/models/contract.py,sha256=2zUJmp8-4ZhOxVJ4sLE9q1dotjXbeXsolA8PZx2LxGc,26533
|
|
88
|
+
odoo/addons/contract/models/contract_line.py,sha256=K2zZ12anxju7f_lyVadnmiEQXvtfF6_aiBbvLZPE0sI,10660
|
|
89
89
|
odoo/addons/contract/models/contract_modification.py,sha256=d0tv2Zn6_WrR633pmzwAavzC2I3sLYmGokOKtMn7AYY,1147
|
|
90
90
|
odoo/addons/contract/models/contract_recurring_mixin.py,sha256=KE4sMLd241v1RgTtdPGHbak-RD2sJmSLYsKNPWaQ8Mg,9278
|
|
91
91
|
odoo/addons/contract/models/contract_tag.py,sha256=h5Up3F6ijIhQbYSB6xCqZVVUtyLYxfj4MsAIKv2Q5-Q,434
|
|
@@ -103,7 +103,7 @@ odoo/addons/contract/security/contract_security.xml,sha256=HZuxPZMX-EMf8QtXdwbnL
|
|
|
103
103
|
odoo/addons/contract/security/contract_tag.xml,sha256=cetorNv2M6tHKHcnfwUeX85EZyT3tpoBLF8W-XZ7sK8,890
|
|
104
104
|
odoo/addons/contract/security/ir.model.access.csv,sha256=icelaOGF35WgUrxB2l18IVfcUNlPuJnzy4LG676_zt0,1569
|
|
105
105
|
odoo/addons/contract/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
106
|
-
odoo/addons/contract/static/description/index.html,sha256=
|
|
106
|
+
odoo/addons/contract/static/description/index.html,sha256=uHW9PHDsKaRtQZ6GqJLviFR7NTe3fZ9Em4NrLRAXovw,17445
|
|
107
107
|
odoo/addons/contract/static/src/img/contract_icon.svg,sha256=2IFs70Oy9WtE9of2SO4Vj08mwzcw-I5s_LL3UvtKlus,9643
|
|
108
108
|
odoo/addons/contract/static/src/js/contract_portal_tour.esm.js,sha256=ULRzpiiKOhvKx0P-SBoMVBJzGtOQfi70yf2-1djxFuk,589
|
|
109
109
|
odoo/addons/contract/static/src/screenshots/portal-detail.png,sha256=8pMCU4nqwnSM-rbWZd3iJxXdYLBiYzuWNvT_NKslcoo,113399
|
|
@@ -116,7 +116,7 @@ odoo/addons/contract/tests/test_contract_manually_create_invoice.py,sha256=GfA-h
|
|
|
116
116
|
odoo/addons/contract/tests/test_multicompany.py,sha256=0CPfv0-JSFsXRInazugzzYrogSZFa6lrdNwuBLbaTX8,4552
|
|
117
117
|
odoo/addons/contract/tests/test_portal.py,sha256=pyhXyzB5o-jdzJW6x10tF7pRuIUQWLQXTSUsB7nUB2k,1298
|
|
118
118
|
odoo/addons/contract/views/contract.xml,sha256=A2ac8FZ5Yv3A8R6NdDlSLsSInA2bxicSER35r7Ed-aE,27247
|
|
119
|
-
odoo/addons/contract/views/contract_line.xml,sha256=
|
|
119
|
+
odoo/addons/contract/views/contract_line.xml,sha256=lv4yMV7z6viOdRbjKAovbuk0if8rc8ORG6qrn4Zv7RQ,11368
|
|
120
120
|
odoo/addons/contract/views/contract_portal_templates.xml,sha256=3kvWLvjFWP4_BsJDiHGWb4JhO6svzD0EaF5HoONX6oU,16972
|
|
121
121
|
odoo/addons/contract/views/contract_tag.xml,sha256=rgaNYk1wJxX9Jm0W0qOYEUJSBUdD3emL5_RuQYJtUI8,1678
|
|
122
122
|
odoo/addons/contract/views/contract_template.xml,sha256=3AT-3amt3J3qePo9cYXDusPlRi46yQUY73FAerURxrE,7864
|
|
@@ -126,7 +126,7 @@ odoo/addons/contract/views/res_partner_view.xml,sha256=v7RAxXm0japPQeOsf2zLgieZH
|
|
|
126
126
|
odoo/addons/contract/wizards/__init__.py,sha256=ZSirPz2XSS6FGPESnPJHqIJamHdHrdL7j2oYu_kglTs,47
|
|
127
127
|
odoo/addons/contract/wizards/contract_manually_create_invoice.py,sha256=LIOStLcchRqOeRbHCPnEmrEj1c9_8BSW6HixsBmU57Y,2986
|
|
128
128
|
odoo/addons/contract/wizards/contract_manually_create_invoice.xml,sha256=JPgtH9mDP74PhTgsJ0lZ1zmn8P3WWRRKp9QUWn38W-4,3730
|
|
129
|
-
odoo_addon_contract-18.0.2.0.
|
|
130
|
-
odoo_addon_contract-18.0.2.0.
|
|
131
|
-
odoo_addon_contract-18.0.2.0.
|
|
132
|
-
odoo_addon_contract-18.0.2.0.
|
|
129
|
+
odoo_addon_contract-18.0.2.1.0.dist-info/METADATA,sha256=ZczyakvNg-zjyQRzlcsIOrpWC_uTAwD0vtG-1_5ZaTE,6785
|
|
130
|
+
odoo_addon_contract-18.0.2.1.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
|
|
131
|
+
odoo_addon_contract-18.0.2.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
|
|
132
|
+
odoo_addon_contract-18.0.2.1.0.dist-info/RECORD,,
|
|
File without changes
|
{odoo_addon_contract-18.0.2.0.9.dist-info → odoo_addon_contract-18.0.2.1.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|