odoo-addon-automation-oca 16.0.1.1.0.2__py3-none-any.whl → 16.0.1.1.2__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 +1 -1
- odoo/addons/automation_oca/__manifest__.py +1 -1
- odoo/addons/automation_oca/models/automation_configuration_step.py +4 -2
- odoo/addons/automation_oca/models/automation_record_step.py +4 -1
- odoo/addons/automation_oca/static/description/index.html +1 -1
- {odoo_addon_automation_oca-16.0.1.1.0.2.dist-info → odoo_addon_automation_oca-16.0.1.1.2.dist-info}/METADATA +3 -3
- {odoo_addon_automation_oca-16.0.1.1.0.2.dist-info → odoo_addon_automation_oca-16.0.1.1.2.dist-info}/RECORD +9 -9
- {odoo_addon_automation_oca-16.0.1.1.0.2.dist-info → odoo_addon_automation_oca-16.0.1.1.2.dist-info}/WHEEL +1 -1
- {odoo_addon_automation_oca-16.0.1.1.0.2.dist-info → odoo_addon_automation_oca-16.0.1.1.2.dist-info}/top_level.txt +0 -0
|
@@ -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:
|
|
10
|
+
!! source digest: sha256:ca64e09876a3157dd7865f1b4cb808e817b5d16de8bdf7e14ecd8371d4d0d97b
|
|
11
11
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
12
12
|
|
|
13
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -265,12 +265,14 @@ class AutomationConfigurationStep(models.Model):
|
|
|
265
265
|
)
|
|
266
266
|
def _compute_applied_domain(self):
|
|
267
267
|
for record in self:
|
|
268
|
+
eval_context = record.configuration_id._get_eval_context()
|
|
268
269
|
record.applied_domain = expression.AND(
|
|
269
270
|
[
|
|
270
|
-
safe_eval(record.domain),
|
|
271
|
+
safe_eval(record.domain, eval_context),
|
|
271
272
|
safe_eval(
|
|
272
273
|
(record.parent_id and record.parent_id.applied_domain)
|
|
273
|
-
or record.configuration_id.domain
|
|
274
|
+
or record.configuration_id.domain,
|
|
275
|
+
eval_context,
|
|
274
276
|
),
|
|
275
277
|
]
|
|
276
278
|
)
|
|
@@ -123,7 +123,10 @@ class AutomationRecordStep(models.Model):
|
|
|
123
123
|
if (
|
|
124
124
|
self.record_id.resource_ref is None
|
|
125
125
|
or not self.record_id.resource_ref.filtered_domain(
|
|
126
|
-
safe_eval(
|
|
126
|
+
safe_eval(
|
|
127
|
+
self.configuration_step_id.applied_domain,
|
|
128
|
+
self.configuration_step_id.configuration_id._get_eval_context(),
|
|
129
|
+
)
|
|
127
130
|
)
|
|
128
131
|
or not self._check_to_execute()
|
|
129
132
|
):
|
|
@@ -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:
|
|
370
|
+
!! source digest: sha256:ca64e09876a3157dd7865f1b4cb808e817b5d16de8bdf7e14ecd8371d4d0d97b
|
|
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&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>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-automation_oca
|
|
3
|
-
Version: 16.0.1.1.
|
|
3
|
+
Version: 16.0.1.1.2
|
|
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)
|
|
@@ -11,7 +11,7 @@ Classifier: Framework :: Odoo
|
|
|
11
11
|
Classifier: Framework :: Odoo :: 16.0
|
|
12
12
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
13
13
|
Requires-Python: >=3.10
|
|
14
|
-
Requires-Dist: odoo
|
|
14
|
+
Requires-Dist: odoo<16.1dev,>=16.0a
|
|
15
15
|
|
|
16
16
|
==============
|
|
17
17
|
Automation 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:
|
|
25
|
+
!! source digest: sha256:ca64e09876a3157dd7865f1b4cb808e817b5d16de8bdf7e14ecd8371d4d0d97b
|
|
26
26
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
27
|
|
|
28
28
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/automation_oca/README.rst,sha256=
|
|
1
|
+
odoo/addons/automation_oca/README.rst,sha256=jfOGVFbVngGEnUiQDogZAz80a_MzQp1hAzfad4rHRJI,6847
|
|
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=gjyr7qUF_nlkc6vcO7jlZOrt4vGCbxlACEX8Y2Sr9QA,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
|
|
@@ -11,10 +11,10 @@ odoo/addons/automation_oca/i18n/fr.po,sha256=mQAkgFAI4js_Ct7x9SxlyyArJ6ChMQ4uor-
|
|
|
11
11
|
odoo/addons/automation_oca/i18n/it.po,sha256=dNoecOvqZ7DCAIwRQEha-G12K685St_viKmCA3ziI1k,55621
|
|
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=
|
|
14
|
+
odoo/addons/automation_oca/models/automation_configuration_step.py,sha256=d63LJFr6SQWiVX33ZsLp1pfjuJkw2zcBRNYz0Ul7HVs,19321
|
|
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=3EGcSvtULRtkdRN48PoT3QgQN7TMUrjdeZz4pbdi3g0,6619
|
|
17
|
-
odoo/addons/automation_oca/models/automation_record_step.py,sha256=
|
|
17
|
+
odoo/addons/automation_oca/models/automation_record_step.py,sha256=njKySvUJnVZrqIlG3tERsYFEVbCucc-wmdJgO3aK6sw,15071
|
|
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
|
|
@@ -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=vfhsdOiJnJxus6f7bdtI0U9QWlSWmSrvw_HtC32P9UM,18045
|
|
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
|
|
@@ -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.1.
|
|
60
|
-
odoo_addon_automation_oca-16.0.1.1.
|
|
61
|
-
odoo_addon_automation_oca-16.0.1.1.
|
|
62
|
-
odoo_addon_automation_oca-16.0.1.1.
|
|
59
|
+
odoo_addon_automation_oca-16.0.1.1.2.dist-info/METADATA,sha256=9biO_J5mIFAu9ZshiAB9oKF1ojYfMGVe1LYcpU8PYLA,7364
|
|
60
|
+
odoo_addon_automation_oca-16.0.1.1.2.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
|
61
|
+
odoo_addon_automation_oca-16.0.1.1.2.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
62
|
+
odoo_addon_automation_oca-16.0.1.1.2.dist-info/RECORD,,
|
|
File without changes
|