odoo-addon-automation-oca 16.0.1.2.0.2__py3-none-any.whl → 16.0.1.3.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.
@@ -7,7 +7,7 @@ Automation Oca
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:dd397d9fb907b934f5a679fcebb66f13e6eb548ceb0c7b21c5d81a0596d600c2
10
+ !! source digest: sha256:7590da06e1c26c7c195b09fd60c5cfdbc01f941e5b611fc3c9cd7b3e0526374d
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -130,6 +130,10 @@ Step execution
130
130
  Steps are executed using a cron action. This action is executed every
131
131
  hour by default. On the record view, you can execute manually an action.
132
132
 
133
+ There is a way to enforce step execution when finalize the previous one.
134
+ If we set a negative value on the period, the execution will be
135
+ immediate without a cron.
136
+
133
137
  .. |Configuration Screenshot| image:: https://raw.githubusercontent.com/OCA/automation/16.0/automation_oca/static/description/configuration.png
134
138
 
135
139
  Bug Tracker
@@ -5,7 +5,7 @@
5
5
  "name": "Automation Oca",
6
6
  "summary": """
7
7
  Automate actions in threaded models""",
8
- "version": "16.0.1.2.0",
8
+ "version": "16.0.1.3.0",
9
9
  "license": "AGPL-3",
10
10
  "category": "Automation",
11
11
  "author": "Dixmit,Odoo Community Association (OCA)",
@@ -87,6 +87,11 @@ msgstr ""
87
87
  msgid "<span class=\"col-2\">of</span>"
88
88
  msgstr ""
89
89
 
90
+ #. module: automation_oca
91
+ #: model_terms:ir.ui.view,arch_db:automation_oca.automation_configuration_form_view
92
+ msgid "<span class=\"pe-1\">Immediatly</span>"
93
+ msgstr ""
94
+
90
95
  #. module: automation_oca
91
96
  #: model_terms:ir.ui.view,arch_db:automation_oca.automation_record_form_view
92
97
  msgid "<span>This record is an orphan record</span>"
@@ -422,6 +427,11 @@ msgstr ""
422
427
  msgid "Display Name"
423
428
  msgstr ""
424
429
 
430
+ #. module: automation_oca
431
+ #: model:ir.model.fields,field_description:automation_oca.field_automation_record_step__do_not_wait
432
+ msgid "Do Not Wait"
433
+ msgstr ""
434
+
425
435
  #. module: automation_oca
426
436
  #: model:ir.model.fields,field_description:automation_oca.field_automation_configuration__domain
427
437
  #: model:ir.model.fields,field_description:automation_oca.field_automation_configuration_step__domain
@@ -648,6 +658,13 @@ msgstr ""
648
658
  msgid "If checked, some messages have a delivery error."
649
659
  msgstr ""
650
660
 
661
+ #. module: automation_oca
662
+ #: model_terms:ir.ui.view,arch_db:automation_oca.automation_configuration_step_form_view
663
+ msgid ""
664
+ "In this case, the task will be executed automatically when we create it in "
665
+ "the same process."
666
+ msgstr ""
667
+
651
668
  #. module: automation_oca
652
669
  #: model:ir.model.fields,help:automation_oca.field_automation_record__is_orphan_record
653
670
  msgid "Indicates if this record is a placeholder for a missing resource."
@@ -1160,6 +1177,14 @@ msgstr ""
1160
1177
  msgid "Server Action"
1161
1178
  msgstr ""
1162
1179
 
1180
+ #. module: automation_oca
1181
+ #: model:ir.model.fields,help:automation_oca.field_automation_configuration_step__trigger_interval
1182
+ msgid ""
1183
+ "Set a negative time trigger if you want the step to be executed\n"
1184
+ " immediately, in parallel with the previous step, without waiting for it to\n"
1185
+ " finish."
1186
+ msgstr ""
1187
+
1163
1188
  #. module: automation_oca
1164
1189
  #: model_terms:ir.ui.view,arch_db:automation_oca.automation_configuration_step_form_view
1165
1190
  msgid "Specific Domain"
@@ -47,7 +47,11 @@ class AutomationConfigurationStep(models.Model):
47
47
  trigger_interval_hours = fields.Integer(
48
48
  compute="_compute_trigger_interval_hours", store=True
49
49
  )
50
- trigger_interval = fields.Integer()
50
+ trigger_interval = fields.Integer(
51
+ help="""Set a negative time trigger if you want the step to be executed
52
+ immediately, in parallel with the previous step, without waiting for it to
53
+ finish."""
54
+ )
51
55
  trigger_interval_type = fields.Selection(
52
56
  [("hours", "Hour(s)"), ("days", "Day(s)")], required=True, default="hours"
53
57
  )
@@ -510,9 +514,12 @@ class AutomationConfigurationStep(models.Model):
510
514
  )
511
515
 
512
516
  def _create_record_activity_vals(self, record, **kwargs):
517
+ scheduled_date = self._get_record_activity_scheduled_date()
518
+ do_not_wait = scheduled_date and scheduled_date < fields.Datetime.now()
513
519
  return {
514
520
  "configuration_step_id": self.id,
521
+ "do_not_wait": do_not_wait,
515
522
  "expiry_date": self._get_expiry_date(),
516
- "scheduled_date": self._get_record_activity_scheduled_date(),
523
+ "scheduled_date": scheduled_date,
517
524
  **kwargs,
518
525
  }
@@ -27,6 +27,7 @@ class AutomationRecordStep(models.Model):
27
27
  )
28
28
  step_type = fields.Selection(related="configuration_step_id.step_type", store=True)
29
29
  scheduled_date = fields.Datetime(readonly=True)
30
+ do_not_wait = fields.Boolean()
30
31
  expiry_date = fields.Datetime(readonly=True)
31
32
  processed_on = fields.Datetime(readonly=True)
32
33
  parent_id = fields.Many2one("automation.record.step", readonly=True)
@@ -267,7 +268,11 @@ class AutomationRecordStep(models.Model):
267
268
  # Creates a cron trigger.
268
269
  # On glue modules we could use queue job for a more discrete example
269
270
  # But cron trigger fulfills the job in some way
270
- for date in set(self.mapped("scheduled_date")):
271
+ for activity in self.filtered(lambda r: r.do_not_wait):
272
+ activity.run()
273
+ for date in set(
274
+ self.filtered(lambda r: not r.do_not_wait).mapped("scheduled_date")
275
+ ):
271
276
  if date:
272
277
  self.env["ir.cron.trigger"].create(
273
278
  {
@@ -54,3 +54,6 @@ Step execution
54
54
 
55
55
  Steps are executed using a cron action. This action is executed every hour by default.
56
56
  On the record view, you can execute manually an action.
57
+
58
+ There is a way to enforce step execution when finalize the previous one.
59
+ If we set a negative value on the period, the execution will be immediate without a cron.
@@ -367,7 +367,7 @@ ul.auto-toc {
367
367
  !! This file is generated by oca-gen-addon-readme !!
368
368
  !! changes will be overwritten. !!
369
369
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:dd397d9fb907b934f5a679fcebb66f13e6eb548ceb0c7b21c5d81a0596d600c2
370
+ !! source digest: sha256:7590da06e1c26c7c195b09fd60c5cfdbc01f941e5b611fc3c9cd7b3e0526374d
371
371
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
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/licence-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&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
373
  <p>This module allows to automate several process according to some rules.</p>
@@ -481,6 +481,9 @@ hours by default.</p>
481
481
  <h2><a class="toc-backref" href="#toc-entry-5">Step execution</a></h2>
482
482
  <p>Steps are executed using a cron action. This action is executed every
483
483
  hour by default. On the record view, you can execute manually an action.</p>
484
+ <p>There is a way to enforce step execution when finalize the previous one.
485
+ If we set a negative value on the period, the execution will be
486
+ immediate without a cron.</p>
484
487
  </div>
485
488
  </div>
486
489
  <div class="section" id="bug-tracker">
@@ -5,6 +5,22 @@ from .common import AutomationTestCase
5
5
 
6
6
 
7
7
  class TestAutomationAction(AutomationTestCase):
8
+ def test_activity_immediate_execution(self):
9
+ """
10
+ We will check the execution of the tasks and that we cannot execute them again
11
+ """
12
+ activity = self.create_server_action(trigger_interval=-1)
13
+ self.configuration.editable_domain = "[('id', '=', %s)]" % self.partner_01.id
14
+ self.configuration.start_automation()
15
+ self.env["automation.configuration"].cron_automation()
16
+ self.assertFalse(self.partner_01.comment)
17
+ self.assertTrue(self.partner_02.comment)
18
+ record_activity = self.env["automation.record.step"].search(
19
+ [("configuration_step_id", "=", activity.id)]
20
+ )
21
+ self.assertEqual(1, len(record_activity))
22
+ self.assertEqual("done", record_activity.state)
23
+
8
24
  def test_activity_execution(self):
9
25
  """
10
26
  We will check the execution of the tasks and that we cannot execute them again
@@ -252,10 +252,19 @@
252
252
  aria-label="Select time"
253
253
  title="Select time"
254
254
  />
255
- <span class="pe-1"><field
256
- name="trigger_interval"
257
- /></span>
258
- <field name="trigger_interval_type" />
255
+ <t
256
+ t-if="record.trigger_interval.raw_value >= 0"
257
+ >
258
+ <span class="pe-1"><field
259
+ name="trigger_interval"
260
+ /></span>
261
+ <field
262
+ name="trigger_interval_type"
263
+ />
264
+ </t>
265
+ <t t-else="">
266
+ <span class="pe-1">Immediatly</span>
267
+ </t>
259
268
  </strong>
260
269
  </div>
261
270
  </div>
@@ -15,6 +15,13 @@
15
15
  placeholder="e.g. Remember unpaid invoices"
16
16
  /></h1>
17
17
  </div>
18
+ <div
19
+ class="alert alert-warning"
20
+ role="alert"
21
+ attrs="{'invisible': [('trigger_interval', '>=', 0)]}"
22
+ >
23
+ In this case, the task will be executed automatically when we create it in the same process.
24
+ </div>
18
25
  <group>
19
26
  <group>
20
27
  <field name="step_type" />
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-automation_oca
3
- Version: 16.0.1.2.0.2
3
+ Version: 16.0.1.3.0
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)
@@ -22,7 +22,7 @@ Automation Oca
22
22
  !! This file is generated by oca-gen-addon-readme !!
23
23
  !! changes will be overwritten. !!
24
24
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
25
- !! source digest: sha256:dd397d9fb907b934f5a679fcebb66f13e6eb548ceb0c7b21c5d81a0596d600c2
25
+ !! source digest: sha256:7590da06e1c26c7c195b09fd60c5cfdbc01f941e5b611fc3c9cd7b3e0526374d
26
26
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
27
 
28
28
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
@@ -145,6 +145,10 @@ Step execution
145
145
  Steps are executed using a cron action. This action is executed every
146
146
  hour by default. On the record view, you can execute manually an action.
147
147
 
148
+ There is a way to enforce step execution when finalize the previous one.
149
+ If we set a negative value on the period, the execution will be
150
+ immediate without a cron.
151
+
148
152
  .. |Configuration Screenshot| image:: https://raw.githubusercontent.com/OCA/automation/16.0/automation_oca/static/description/configuration.png
149
153
 
150
154
  Bug Tracker
@@ -1,20 +1,20 @@
1
- odoo/addons/automation_oca/README.rst,sha256=NYgWSKNqAFgZUgfVbzWTaJGG65OWaWay6eQ4UJiDBwI,6798
1
+ odoo/addons/automation_oca/README.rst,sha256=3BeUQ9xh-1Hyy9owzpuYk-WKdcbG232k3mKv8l7N1CE,6962
2
2
  odoo/addons/automation_oca/__init__.py,sha256=dnUeA_K1torbiMNF3tt2dtECdk-FkWm01DByr9MBMIA,69
3
- odoo/addons/automation_oca/__manifest__.py,sha256=7RfifhM21bOvpwKwe-GtzTb6RcsSSPhYdmE_1cjEFi8,1181
3
+ odoo/addons/automation_oca/__manifest__.py,sha256=PvQWKc3S0lh7yte3hsjJRoCH-1hHNngiiFc1MhrGJxU,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
7
7
  odoo/addons/automation_oca/demo/demo.xml,sha256=beyrfyRzVTDZ1Mm2sL5Y57W4GDsUvj9gOMUlrEMM1M8,2838
8
- odoo/addons/automation_oca/i18n/automation_oca.pot,sha256=qJoNSkCh2nDKd4s5NE8XKKNj5WokZtPwL5LzBLhX9xI,50650
8
+ odoo/addons/automation_oca/i18n/automation_oca.pot,sha256=tx_0kaITykM6HZKKivdyQtFwlAVMIqKQmiquxNafHxg,51526
9
9
  odoo/addons/automation_oca/i18n/es.po,sha256=2muwuW9g_Kd9scH1FHZXyez5eaidTu9CxIqL3ZuTtnM,56471
10
10
  odoo/addons/automation_oca/i18n/fr.po,sha256=aSOY-jAHTLrT2l7TWyW0YY9qTzv25ZLjZkAO9j1ZbdQ,54292
11
11
  odoo/addons/automation_oca/i18n/it.po,sha256=-Dpb86X-rYojjhKZftgaP7IaemYKuGeKdrhSTL67siw,56804
12
12
  odoo/addons/automation_oca/models/__init__.py,sha256=gRWvgicyFDELSeVnpRow1mGuWjfm3ima2Lo-NqlymKg,318
13
13
  odoo/addons/automation_oca/models/automation_configuration.py,sha256=VaWXg_6EnUnTdLDV_eZnWKXXVU27nGmZR_lnGIeKstA,12086
14
- odoo/addons/automation_oca/models/automation_configuration_step.py,sha256=RrK2LroFzaPY2xjcmssQf6bFTJuk2IB5Fx0LKYhePyY,19626
14
+ odoo/addons/automation_oca/models/automation_configuration_step.py,sha256=3je70PMzMFkJP36L8OlOPIjD7befywVmY47o3tnzFV8,19973
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=Q6aO1pbHHqXeWkugzURHc_U2jp9fP2_RGqPmH_Dbl_k,7362
17
- odoo/addons/automation_oca/models/automation_record_step.py,sha256=njKySvUJnVZrqIlG3tERsYFEVbCucc-wmdJgO3aK6sw,15071
17
+ odoo/addons/automation_oca/models/automation_record_step.py,sha256=kgoxSDz8_8LSWIUYcNZ_FF_S50CWnkTrdaMtmuYZiPk,15257
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=RIw89CNjEMWRE2azgEHsZeXtr64VU6AGWnv5DOERP4k,470
@@ -23,13 +23,13 @@ odoo/addons/automation_oca/models/mail_thread.py,sha256=a1n52bOGi79RGm8G2LT8VTIk
23
23
  odoo/addons/automation_oca/readme/CONTRIBUTORS.md,sha256=p8_-Mu8Mj7YOCCgizqC5Y02wD8jghcxSizPsYhmQQDs,52
24
24
  odoo/addons/automation_oca/readme/CREDITS.md,sha256=bvu5tCnp4li7NCDhDhQuoWX_1DFfX7RIWUSsiwo7e0w,135
25
25
  odoo/addons/automation_oca/readme/DESCRIPTION.md,sha256=tcf06j1PNB7EKdYZeATHF4zHYShcEQ3p9qlvu3iPPgk,347
26
- odoo/addons/automation_oca/readme/USAGE.md,sha256=egVqZjqsW2NglrzBL3M6_jFtk0uqNAJgFnduM4D9kOo,3334
26
+ odoo/addons/automation_oca/readme/USAGE.md,sha256=4orDugmPwZ35m1QqqOjIrVOeXoCzBX5JdgL0WF9rXCk,3498
27
27
  odoo/addons/automation_oca/security/ir.model.access.csv,sha256=bqg_yjGA2q_wpEVIyYIltmPV8Am3S43bASDcCR6lRz4,1628
28
28
  odoo/addons/automation_oca/security/security.xml,sha256=pT37-cLbQIP--Tzp0fljiyvNBPvakzyBgyf47KEC1xo,1627
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=_L9iWcWyb4wTphaqc1kOU3v2y1y7eFnJBpUHpbm45gs,18045
32
+ odoo/addons/automation_oca/static/description/index.html,sha256=qnLdRYyKeBkhjC1FCsMmiil8v_KA7yBUlJI-wBAu44k,18215
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
@@ -39,13 +39,13 @@ odoo/addons/automation_oca/static/src/views/automation_kanban/automation_kanban_
39
39
  odoo/addons/automation_oca/static/src/views/automation_kanban/automation_kanban_renderer.esm.js,sha256=GjwEFRuQeP6FKie_ODYaqxvv_pYDsj8STWkFtlR3Ki8,1197
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
- odoo/addons/automation_oca/tests/test_automation_action.py,sha256=aFg_OASkQ8Or-CgrgOnCRlc9Z1_1VXPsuj2ui4pCsYA,7606
42
+ odoo/addons/automation_oca/tests/test_automation_action.py,sha256=LLw57To88U6Ercinc0bH49_FRueqKfYHI_FKsw1aA8s,8370
43
43
  odoo/addons/automation_oca/tests/test_automation_activity.py,sha256=OHUMONBVY0pYbmlTCfWzPdJPSYaExCfJCS_LPtpEhuE,6385
44
44
  odoo/addons/automation_oca/tests/test_automation_base.py,sha256=vUQPlxRM-zkJfzslPE4_V4eXq0RSRFCo1BLhrVzi_s8,24421
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
47
- odoo/addons/automation_oca/views/automation_configuration.xml,sha256=ZDKnacllotuGnSS2CcM4wY62cWnG6JriosBMF8ZbhJs,25406
48
- odoo/addons/automation_oca/views/automation_configuration_step.xml,sha256=_F8qgV_mflHFdGcrmlnPn8s1yBN_--R2tuyC2kOht7k,9340
47
+ odoo/addons/automation_oca/views/automation_configuration.xml,sha256=VU_Hn1cOjZ_z8MbCAgareo3K1PNof0krjW7Nrz90FYQ,25986
48
+ odoo/addons/automation_oca/views/automation_configuration_step.xml,sha256=Kfjv8sB3OOXTV1705F2oA2GN7FIqNZ9l7iPrK2URIEk,9699
49
49
  odoo/addons/automation_oca/views/automation_filter.xml,sha256=Mx0SBoVk2U3QY-hseKymbOphlK-hOjHdFzLtPgU2jok,2271
50
50
  odoo/addons/automation_oca/views/automation_record.xml,sha256=gFpChe7depWuZS751R3TLC1B4IxzVW5ez2yp-a9VPck,16034
51
51
  odoo/addons/automation_oca/views/automation_record_step.xml,sha256=cBao3BLIo9Db_Mv4VpyugpnTfzMmjLXQ5Eu2aYwD9uE,5263
@@ -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.2.0.2.dist-info/METADATA,sha256=gZyBB53sAnx4uYa0qWJBU73pwvdkXVG0KkG2H8eoGwk,7317
60
- odoo_addon_automation_oca-16.0.1.2.0.2.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
61
- odoo_addon_automation_oca-16.0.1.2.0.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
62
- odoo_addon_automation_oca-16.0.1.2.0.2.dist-info/RECORD,,
59
+ odoo_addon_automation_oca-16.0.1.3.0.dist-info/METADATA,sha256=ofRbvoJWoAMoM9kaMTPSoPeATj0EqeVvfW8TX_caUmM,7479
60
+ odoo_addon_automation_oca-16.0.1.3.0.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
61
+ odoo_addon_automation_oca-16.0.1.3.0.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
62
+ odoo_addon_automation_oca-16.0.1.3.0.dist-info/RECORD,,