odoo-addon-automation-oca 16.0.1.5.3.1__py3-none-any.whl → 16.0.1.5.4__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/automation_oca/README.rst +6 -2
- odoo/addons/automation_oca/__manifest__.py +1 -1
- odoo/addons/automation_oca/models/automation_record_step.py +8 -1
- odoo/addons/automation_oca/static/description/index.html +22 -16
- odoo/addons/automation_oca/tests/test_automation_activity.py +30 -0
- {odoo_addon_automation_oca-16.0.1.5.3.1.dist-info → odoo_addon_automation_oca-16.0.1.5.4.dist-info}/METADATA +7 -3
- {odoo_addon_automation_oca-16.0.1.5.3.1.dist-info → odoo_addon_automation_oca-16.0.1.5.4.dist-info}/RECORD +9 -9
- {odoo_addon_automation_oca-16.0.1.5.3.1.dist-info → odoo_addon_automation_oca-16.0.1.5.4.dist-info}/WHEEL +0 -0
- {odoo_addon_automation_oca-16.0.1.5.3.1.dist-info → odoo_addon_automation_oca-16.0.1.5.4.dist-info}/top_level.txt +0 -0
|
@@ -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
|
Automation Oca
|
|
3
7
|
==============
|
|
@@ -7,13 +11,13 @@ Automation Oca
|
|
|
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:f8ad9dc9fe9dcc4fa324aadc5c89f580c5e73b1c020060870593c1c336f0b596
|
|
11
15
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
16
|
|
|
13
17
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
14
18
|
:target: https://odoo-community.org/page/development-status
|
|
15
19
|
:alt: Beta
|
|
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%2Fautomation-lightgray.png?logo=github
|
|
@@ -320,11 +320,18 @@ class AutomationRecordStep(models.Model):
|
|
|
320
320
|
|
|
321
321
|
def _activate(self):
|
|
322
322
|
todo = self.filtered(lambda r: not r.scheduled_date)
|
|
323
|
+
current_date = fields.Datetime.now()
|
|
323
324
|
for record in todo:
|
|
324
325
|
config = record.configuration_step_id
|
|
325
|
-
|
|
326
|
+
scheduled_date = fields.Datetime.now() + relativedelta(
|
|
326
327
|
**{config.trigger_interval_type: config.trigger_interval}
|
|
327
328
|
)
|
|
329
|
+
record.write(
|
|
330
|
+
{
|
|
331
|
+
"scheduled_date": scheduled_date,
|
|
332
|
+
"do_not_wait": scheduled_date < current_date,
|
|
333
|
+
}
|
|
334
|
+
)
|
|
328
335
|
todo._trigger_activities()
|
|
329
336
|
|
|
330
337
|
def _set_activity_done(self):
|
|
@@ -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">Automation Oca</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="automation-oca">
|
|
370
|
+
<h1>Automation Oca</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:f8ad9dc9fe9dcc4fa324aadc5c89f580c5e73b1c020060870593c1c336f0b596
|
|
371
376
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
372
|
-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.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/automation/tree/16.0/automation_oca"><img alt="OCA/automation" src="https://img.shields.io/badge/github-OCA%2Fautomation-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/automation-16-0/automation-16-0-automation_oca"><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/automation&target_branch=16.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 allows to automate several process according to some rules.</p>
|
|
374
379
|
<p>This is useful for creating automated actions on your database like:</p>
|
|
375
380
|
<ul class="simple">
|
|
@@ -400,9 +405,9 @@ items</li>
|
|
|
400
405
|
</ul>
|
|
401
406
|
</div>
|
|
402
407
|
<div class="section" id="usage">
|
|
403
|
-
<
|
|
408
|
+
<h2><a class="toc-backref" href="#toc-entry-1">Usage</a></h2>
|
|
404
409
|
<div class="section" id="configure-your-processes">
|
|
405
|
-
<
|
|
410
|
+
<h3><a class="toc-backref" href="#toc-entry-2">Configure your processes</a></h3>
|
|
406
411
|
<ol class="arabic simple">
|
|
407
412
|
<li>Access the <tt class="docutils literal">Automation</tt> menu.</li>
|
|
408
413
|
<li>Create a new Automation Configuration.</li>
|
|
@@ -427,7 +432,7 @@ new records need to be created.</li>
|
|
|
427
432
|
<p><img alt="Configuration Screenshot" src="https://raw.githubusercontent.com/OCA/automation/16.0/automation_oca/static/description/configuration.png" /></p>
|
|
428
433
|
</div>
|
|
429
434
|
<div class="section" id="configuration-of-steps">
|
|
430
|
-
<
|
|
435
|
+
<h3><a class="toc-backref" href="#toc-entry-3">Configuration of steps</a></h3>
|
|
431
436
|
<p>Steps can trigger one of the following options:</p>
|
|
432
437
|
<ul class="simple">
|
|
433
438
|
<li><tt class="docutils literal">Mail</tt>: Sends an email using a template.</li>
|
|
@@ -473,12 +478,12 @@ it is important to define correctly the text partner or email to field
|
|
|
473
478
|
on the template</p>
|
|
474
479
|
</div>
|
|
475
480
|
<div class="section" id="records-creation">
|
|
476
|
-
<
|
|
481
|
+
<h3><a class="toc-backref" href="#toc-entry-4">Records creation</a></h3>
|
|
477
482
|
<p>Records are created using a cron action. This action is executed every 6
|
|
478
483
|
hours by default.</p>
|
|
479
484
|
</div>
|
|
480
485
|
<div class="section" id="step-execution">
|
|
481
|
-
<
|
|
486
|
+
<h3><a class="toc-backref" href="#toc-entry-5">Step execution</a></h3>
|
|
482
487
|
<p>Steps are executed using a cron action. This action is executed every
|
|
483
488
|
hour by default. On the record view, you can execute manually an action.</p>
|
|
484
489
|
<p>There is a way to enforce step execution when finalize the previous one.
|
|
@@ -487,7 +492,7 @@ immediate without a cron.</p>
|
|
|
487
492
|
</div>
|
|
488
493
|
</div>
|
|
489
494
|
<div class="section" id="bug-tracker">
|
|
490
|
-
<
|
|
495
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Bug Tracker</a></h2>
|
|
491
496
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/automation/issues">GitHub Issues</a>.
|
|
492
497
|
In case of trouble, please check there if your issue has already been reported.
|
|
493
498
|
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
@@ -495,28 +500,28 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
|
|
|
495
500
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
496
501
|
</div>
|
|
497
502
|
<div class="section" id="credits">
|
|
498
|
-
<
|
|
503
|
+
<h2><a class="toc-backref" href="#toc-entry-7">Credits</a></h2>
|
|
499
504
|
<div class="section" id="authors">
|
|
500
|
-
<
|
|
505
|
+
<h3><a class="toc-backref" href="#toc-entry-8">Authors</a></h3>
|
|
501
506
|
<ul class="simple">
|
|
502
507
|
<li>Dixmit</li>
|
|
503
508
|
</ul>
|
|
504
509
|
</div>
|
|
505
510
|
<div class="section" id="contributors">
|
|
506
|
-
<
|
|
511
|
+
<h3><a class="toc-backref" href="#toc-entry-9">Contributors</a></h3>
|
|
507
512
|
<ul class="simple">
|
|
508
513
|
<li>Enric Tobella (<a class="reference external" href="https://www.dixmit.com/">Dixmit</a>)</li>
|
|
509
514
|
</ul>
|
|
510
515
|
</div>
|
|
511
516
|
<div class="section" id="other-credits">
|
|
512
|
-
<
|
|
517
|
+
<h3><a class="toc-backref" href="#toc-entry-10">Other credits</a></h3>
|
|
513
518
|
<p>The development of this module has been financially supported by:</p>
|
|
514
519
|
<ul class="simple">
|
|
515
520
|
<li>Associacion Española de Odoo (<a class="reference external" href="https://www.aeodoo.org/">AEODOO</a>)</li>
|
|
516
521
|
</ul>
|
|
517
522
|
</div>
|
|
518
523
|
<div class="section" id="maintainers">
|
|
519
|
-
<
|
|
524
|
+
<h3><a class="toc-backref" href="#toc-entry-11">Maintainers</a></h3>
|
|
520
525
|
<p>This module is maintained by the OCA.</p>
|
|
521
526
|
<a class="reference external image-reference" href="https://odoo-community.org">
|
|
522
527
|
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
|
|
@@ -529,5 +534,6 @@ promote its widespread use.</p>
|
|
|
529
534
|
</div>
|
|
530
535
|
</div>
|
|
531
536
|
</div>
|
|
537
|
+
</div>
|
|
532
538
|
</body>
|
|
533
539
|
</html>
|
|
@@ -116,6 +116,36 @@ class TestAutomationActivity(AutomationTestCase):
|
|
|
116
116
|
self.partner_01.activity_ids.action_feedback()
|
|
117
117
|
self.assertTrue(record_activity.activity_done_on)
|
|
118
118
|
self.assertTrue(record_child_activity.scheduled_date)
|
|
119
|
+
self.assertFalse(record_child_activity.processed_on)
|
|
120
|
+
|
|
121
|
+
def test_activity_execution_child_immediate(self):
|
|
122
|
+
"""
|
|
123
|
+
We will check the execution of the child task (activity_done) is only scheduled
|
|
124
|
+
after the activity is done
|
|
125
|
+
"""
|
|
126
|
+
activity = self.create_activity_action()
|
|
127
|
+
child_activity = self.create_server_action(
|
|
128
|
+
parent_id=activity.id, trigger_type="activity_done", trigger_interval=-1
|
|
129
|
+
)
|
|
130
|
+
self.configuration.editable_domain = "[('id', '=', %s)]" % self.partner_01.id
|
|
131
|
+
self.configuration.start_automation()
|
|
132
|
+
self.env["automation.configuration"].cron_automation()
|
|
133
|
+
self.env["automation.record.step"]._cron_automation_steps()
|
|
134
|
+
record_activity = self.env["automation.record.step"].search(
|
|
135
|
+
[("configuration_step_id", "=", activity.id)]
|
|
136
|
+
)
|
|
137
|
+
record_child_activity = self.env["automation.record.step"].search(
|
|
138
|
+
[("configuration_step_id", "=", child_activity.id)]
|
|
139
|
+
)
|
|
140
|
+
self.assertEqual(
|
|
141
|
+
record_activity, self.partner_01.activity_ids.automation_record_step_id
|
|
142
|
+
)
|
|
143
|
+
self.assertFalse(record_activity.activity_done_on)
|
|
144
|
+
self.assertFalse(record_child_activity.scheduled_date)
|
|
145
|
+
self.partner_01.activity_ids.action_feedback()
|
|
146
|
+
self.assertTrue(record_activity.activity_done_on)
|
|
147
|
+
self.assertTrue(record_child_activity.scheduled_date)
|
|
148
|
+
self.assertTrue(record_child_activity.processed_on)
|
|
119
149
|
|
|
120
150
|
def test_activity_execution_on_cancel(self):
|
|
121
151
|
"""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-automation_oca
|
|
3
|
-
Version: 16.0.1.5.
|
|
3
|
+
Version: 16.0.1.5.4
|
|
4
4
|
Summary: Automate actions in threaded models
|
|
5
5
|
Home-page: https://github.com/OCA/automation
|
|
6
6
|
Author: Dixmit,Odoo Community Association (OCA)
|
|
@@ -13,6 +13,10 @@ Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
14
|
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
15
15
|
|
|
16
|
+
.. image:: https://odoo-community.org/readme-banner-image
|
|
17
|
+
:target: https://odoo-community.org/get-involved?utm_source=readme
|
|
18
|
+
:alt: Odoo Community Association
|
|
19
|
+
|
|
16
20
|
==============
|
|
17
21
|
Automation Oca
|
|
18
22
|
==============
|
|
@@ -22,13 +26,13 @@ Automation Oca
|
|
|
22
26
|
!! This file is generated by oca-gen-addon-readme !!
|
|
23
27
|
!! changes will be overwritten. !!
|
|
24
28
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
25
|
-
!! source digest: sha256:
|
|
29
|
+
!! source digest: sha256:f8ad9dc9fe9dcc4fa324aadc5c89f580c5e73b1c020060870593c1c336f0b596
|
|
26
30
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
31
|
|
|
28
32
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
29
33
|
:target: https://odoo-community.org/page/development-status
|
|
30
34
|
:alt: Beta
|
|
31
|
-
.. |badge2| image:: https://img.shields.io/badge/
|
|
35
|
+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
|
|
32
36
|
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
|
33
37
|
:alt: License: AGPL-3
|
|
34
38
|
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fautomation-lightgray.png?logo=github
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/automation_oca/README.rst,sha256=
|
|
1
|
+
odoo/addons/automation_oca/README.rst,sha256=8qVWovzijsZQAitkT-2j6okJpLkNYsezwoqMmRGoE18,7127
|
|
2
2
|
odoo/addons/automation_oca/__init__.py,sha256=dnUeA_K1torbiMNF3tt2dtECdk-FkWm01DByr9MBMIA,69
|
|
3
|
-
odoo/addons/automation_oca/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/automation_oca/__manifest__.py,sha256=D2bYN9Zr8dsiMP8mm3XlIskIIhPZau78iUee3LPlASo,1181
|
|
4
4
|
odoo/addons/automation_oca/controllers/__init__.py,sha256=4KFqEP2QHFbPN66eQJMdGsmNz2v7ywWv_FR1pW_kkLk,19
|
|
5
5
|
odoo/addons/automation_oca/controllers/main.py,sha256=DRL6AJKy18ekRPaKtmRoEh5i6fNQDWpoq2GTHztKOKI,2355
|
|
6
6
|
odoo/addons/automation_oca/data/cron.xml,sha256=viAGNb5X619yXQyfpO_HcJOAiQGzEE-m6Sp4y6F4gDs,1297
|
|
@@ -14,7 +14,7 @@ odoo/addons/automation_oca/models/automation_configuration.py,sha256=VaWXg_6EnUn
|
|
|
14
14
|
odoo/addons/automation_oca/models/automation_configuration_step.py,sha256=euIPXQ8OFPPLKJrxSUbyQJQqdj9jo1rh8_mdbHYpZOs,20752
|
|
15
15
|
odoo/addons/automation_oca/models/automation_filter.py,sha256=W8VM977yXH_hZUKCO8ZDKsvzIjYegoIGMN1QLEvikOY,706
|
|
16
16
|
odoo/addons/automation_oca/models/automation_record.py,sha256=LYZ1fkijB2R3QjBoJN_gnsPzqjkp-Gk_6LyPywMQAQA,7172
|
|
17
|
-
odoo/addons/automation_oca/models/automation_record_step.py,sha256=
|
|
17
|
+
odoo/addons/automation_oca/models/automation_record_step.py,sha256=lL6d7DM4zuuvqUlutFY74ePh2CtSfiPTlA6qkNl58zA,17189
|
|
18
18
|
odoo/addons/automation_oca/models/automation_tag.py,sha256=mIsuTsLQv8ZLLdykBmvLQ6fLKHJMKZ8qfAwaVibw78c,488
|
|
19
19
|
odoo/addons/automation_oca/models/link_tracker.py,sha256=F8TxTsq5Mzd1H18RygZn4YDjZs8WIPO-B9o1EhaADYg,1745
|
|
20
20
|
odoo/addons/automation_oca/models/mail_activity.py,sha256=D5l4CeIM_IvZ_a5g3iMC8qiD1u1iUIYRmGvDRRSHv9o,855
|
|
@@ -29,7 +29,7 @@ odoo/addons/automation_oca/security/security.xml,sha256=pT37-cLbQIP--Tzp0fljiyvN
|
|
|
29
29
|
odoo/addons/automation_oca/static/description/configuration.png,sha256=W8cAn7-cQEVhf7Zy979xMDHi1cKWbDH7uyWkjvGi9gc,55863
|
|
30
30
|
odoo/addons/automation_oca/static/description/icon.png,sha256=abhQ1HbvsatZ_WVS_G6qroJgWNa1Hppd961RD7vrAug,37729
|
|
31
31
|
odoo/addons/automation_oca/static/description/icon.svg,sha256=NkJAwQ9YAXML6VIKe90VZzKUZb58-zGNL029-GC8Pm4,4641
|
|
32
|
-
odoo/addons/automation_oca/static/description/index.html,sha256=
|
|
32
|
+
odoo/addons/automation_oca/static/description/index.html,sha256=BAn8qG7downgK7nKjYIL-ERCnRum30LxLm-5_-uBKdA,18438
|
|
33
33
|
odoo/addons/automation_oca/static/src/fields/automation_activity/automation_activity.esm.js,sha256=pbzjSHVYdYcMOXzXtC-lyVYrydk_1YRtMVh88XpTo-E,1779
|
|
34
34
|
odoo/addons/automation_oca/static/src/fields/automation_graph/automation_graph.esm.js,sha256=vbPRaNzH1_wbB0gEBhZvm0gT0VXdgtElQIYeAOJZuNM,3214
|
|
35
35
|
odoo/addons/automation_oca/static/src/fields/automation_graph/automation_graph.xml,sha256=86VqoFswW3ZppaR0KFG4_giKPeT8vgdC1A1vpBtPjFk,297
|
|
@@ -40,7 +40,7 @@ odoo/addons/automation_oca/static/src/views/automation_kanban/automation_kanban_
|
|
|
40
40
|
odoo/addons/automation_oca/tests/__init__.py,sha256=5VS2h2Hl3gUzMQqKgPUYnq-_Wkk7SfD_k0YgTsfXj3g,185
|
|
41
41
|
odoo/addons/automation_oca/tests/common.py,sha256=Zu5AcWGMgoDKdsQ4VMyhHTnot1f7Hunh4tDH9CSHbXw,3558
|
|
42
42
|
odoo/addons/automation_oca/tests/test_automation_action.py,sha256=GT7Kja9l1Z-9MzWhKPuDc1a5-IkdHNgABtNVX50Sr24,8994
|
|
43
|
-
odoo/addons/automation_oca/tests/test_automation_activity.py,sha256=
|
|
43
|
+
odoo/addons/automation_oca/tests/test_automation_activity.py,sha256=qxFLK1OAfOgDApNRC5pZPjuf3JUXHDfFewkungxcAbg,15269
|
|
44
44
|
odoo/addons/automation_oca/tests/test_automation_base.py,sha256=SjBtUxD7JRvG0neCWpPi36fcxafV3nR4IKg9jmNvFcw,28453
|
|
45
45
|
odoo/addons/automation_oca/tests/test_automation_mail.py,sha256=zOzRfhH0-Zz0Jm1TX15efgXibjj7Au19597DZWvAQGc,24704
|
|
46
46
|
odoo/addons/automation_oca/tests/test_automation_security.py,sha256=iazrh9TJDCLaK1vXKXMNqBf0bizedBd3QxUwCodjesY,3883
|
|
@@ -56,7 +56,7 @@ odoo/addons/automation_oca/wizards/__init__.py,sha256=1yOQpQirzOswywec7gg_gshvEP
|
|
|
56
56
|
odoo/addons/automation_oca/wizards/automation_configuration_test.py,sha256=YK0HD6Ds6B4PMaI97MUpVQaB-wsVTmw6Hpbh532tU-g,1363
|
|
57
57
|
odoo/addons/automation_oca/wizards/automation_configuration_test.xml,sha256=r9lUzD3SeFSLStlc07iXxO1b9e9RbZdUCrvMA46zfm8,1916
|
|
58
58
|
odoo/addons/automation_oca/wizards/mail_compose_message.py,sha256=XL6UGz8_fEwniXM80DhQXink4SMnWg7HHR0kHLekMyc,612
|
|
59
|
-
odoo_addon_automation_oca-16.0.1.5.
|
|
60
|
-
odoo_addon_automation_oca-16.0.1.5.
|
|
61
|
-
odoo_addon_automation_oca-16.0.1.5.
|
|
62
|
-
odoo_addon_automation_oca-16.0.1.5.
|
|
59
|
+
odoo_addon_automation_oca-16.0.1.5.4.dist-info/METADATA,sha256=2IHaV_ZywUScNgCWN7M8vhhBjki-1TeqenXjOiZs7XI,7644
|
|
60
|
+
odoo_addon_automation_oca-16.0.1.5.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
61
|
+
odoo_addon_automation_oca-16.0.1.5.4.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
62
|
+
odoo_addon_automation_oca-16.0.1.5.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|