Skip to content

Commit 4a4940c

Browse files
committed
Merge PR #3374 into 19.0
Signed-off-by pedrobaeza
2 parents 2fa7b00 + f4a59c6 commit 4a4940c

18 files changed

Lines changed: 1182 additions & 0 deletions
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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+
5+
=================
6+
Web Actions Multi
7+
=================
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:d55bf4a4325f3e0849aa999e2dcac39cfe498303f2be1fa30944b0f705e1dbaf
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Beta
20+
.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
22+
:alt: License: LGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
24+
:target: https://github.com/OCA/web/tree/19.0/web_ir_actions_act_multi
25+
:alt: OCA/web
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/web-19-0/web-19-0-web_ir_actions_act_multi
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=19.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
This module provides a way to trigger more than one action on
36+
ActionManager
37+
38+
**Table of contents**
39+
40+
.. contents::
41+
:local:
42+
43+
Usage
44+
=====
45+
46+
To use this functionality you need to return following action with list
47+
of actions to execute:
48+
49+
.. code:: python
50+
51+
def foo(self):
52+
self.ensure_one()
53+
return {
54+
'type': 'ir.actions.act_multi',
55+
'actions': [
56+
{'type': 'ir.actions.act_window_close'},
57+
{'type': 'ir.actions.client', 'tag': 'reload'},
58+
]
59+
}
60+
61+
Bug Tracker
62+
===========
63+
64+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
65+
In case of trouble, please check there if your issue has already been reported.
66+
If you spotted it first, help us to smash it by providing a detailed and welcomed
67+
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_multi%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
68+
69+
Do not contact contributors directly about support or help with technical issues.
70+
71+
Credits
72+
=======
73+
74+
Authors
75+
-------
76+
77+
* Modoolar
78+
* CorporateHub
79+
80+
Contributors
81+
------------
82+
83+
- Petar Najman <petar.najman@modoolar.com>
84+
- Mladen Meseldzija <mladen.meseldzija@modoolar.com>
85+
- `CorporateHub <https://corporatehub.eu/>`__
86+
87+
- Alexey Pelykh <alexey.pelykh@corphub.eu>
88+
89+
- Manuel Calero - Tecnativa
90+
- Matias Peralta, Juan Rivero - Adhoc
91+
- `Komit <https://komit-consulting.com>`__:
92+
93+
- Quoc Pham Ngoc <quoc-pn@komit-consulting.com>
94+
95+
Maintainers
96+
-----------
97+
98+
This module is maintained by the OCA.
99+
100+
.. image:: https://odoo-community.org/logo.png
101+
:alt: Odoo Community Association
102+
:target: https://odoo-community.org
103+
104+
OCA, or the Odoo Community Association, is a nonprofit organization whose
105+
mission is to support the collaborative development of Odoo features and
106+
promote its widespread use.
107+
108+
This module is part of the `OCA/web <https://github.com/OCA/web/tree/19.0/web_ir_actions_act_multi>`_ project on GitHub.
109+
110+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import models
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Copyright 2017 - 2018 Modoolar <info@modoolar.com>
2+
# Copyright 2018 Brainbean Apps
3+
# Copyright 2020 Manuel Calero
4+
# Copyright 2020 CorporateHub (https://corporatehub.eu)
5+
# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html).
6+
7+
{
8+
"name": "Web Actions Multi",
9+
"summary": "Enables triggering of more than one action on ActionManager",
10+
"category": "Web",
11+
"version": "19.0.1.0.0",
12+
"license": "LGPL-3",
13+
"author": "Modoolar, CorporateHub, Odoo Community Association (OCA)",
14+
"website": "https://github.com/OCA/web",
15+
"depends": ["web"],
16+
"data": ["security/ir.model.access.csv"],
17+
"assets": {
18+
"web.assets_backend": [
19+
"web_ir_actions_act_multi/static/src/**/*.esm.js",
20+
],
21+
},
22+
"installable": True,
23+
}
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
#
4+
msgid ""
5+
msgstr ""
6+
"Project-Id-Version: Odoo Server 13.0\n"
7+
"Report-Msgid-Bugs-To: \n"
8+
"PO-Revision-Date: 2023-09-20 17:50+0000\n"
9+
"Last-Translator: Ivorra78 <informatica@totmaterial.es>\n"
10+
"Language-Team: none\n"
11+
"Language: es\n"
12+
"MIME-Version: 1.0\n"
13+
"Content-Type: text/plain; charset=UTF-8\n"
14+
"Content-Transfer-Encoding: \n"
15+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
16+
"X-Generator: Weblate 4.17\n"
17+
18+
#. module: web_ir_actions_act_multi
19+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__help
20+
msgid "Action Description"
21+
msgstr "Descripción de la acción"
22+
23+
#. module: web_ir_actions_act_multi
24+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_actions_act_multi
25+
msgid "Action Mulit"
26+
msgstr "Acción múltiple"
27+
28+
#. module: web_ir_actions_act_multi
29+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__name
30+
msgid "Action Name"
31+
msgstr "Nombre Acción"
32+
33+
#. module: web_ir_actions_act_multi
34+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__type
35+
msgid "Action Type"
36+
msgstr "Tipo de Acción"
37+
38+
#. module: web_ir_actions_act_multi
39+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id
40+
msgid "Binding Model"
41+
msgstr "Modelo de encuadernación"
42+
43+
#. module: web_ir_actions_act_multi
44+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_type
45+
msgid "Binding Type"
46+
msgstr "Tipo de encuadernación"
47+
48+
#. module: web_ir_actions_act_multi
49+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_view_types
50+
msgid "Binding View Types"
51+
msgstr "Tipos de vistas vinculantes"
52+
53+
#. module: web_ir_actions_act_multi
54+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_uid
55+
msgid "Created by"
56+
msgstr "Creado por"
57+
58+
#. module: web_ir_actions_act_multi
59+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_date
60+
msgid "Created on"
61+
msgstr "Creado el"
62+
63+
#. module: web_ir_actions_act_multi
64+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__display_name
65+
msgid "Display Name"
66+
msgstr "Mostrar Nombre"
67+
68+
#. module: web_ir_actions_act_multi
69+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__xml_id
70+
msgid "External ID"
71+
msgstr "ID Externa"
72+
73+
#. module: web_ir_actions_act_multi
74+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_fields
75+
msgid "Fields"
76+
msgstr ""
77+
78+
#. module: web_ir_actions_act_multi
79+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__id
80+
msgid "ID"
81+
msgstr "ID (identificación)"
82+
83+
#. module: web_ir_actions_act_multi
84+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi____last_update
85+
msgid "Last Modified on"
86+
msgstr "Última Modificación el"
87+
88+
#. module: web_ir_actions_act_multi
89+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_uid
90+
msgid "Last Updated by"
91+
msgstr "Última actualización por"
92+
93+
#. module: web_ir_actions_act_multi
94+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_date
95+
msgid "Last Updated on"
96+
msgstr "Última Actualización el"
97+
98+
#. module: web_ir_actions_act_multi
99+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_data
100+
msgid "Model Data"
101+
msgstr ""
102+
103+
#. module: web_ir_actions_act_multi
104+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model
105+
msgid "Models"
106+
msgstr ""
107+
108+
#. module: web_ir_actions_act_multi
109+
#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__help
110+
msgid ""
111+
"Optional help text for the users with a description of the target view, such "
112+
"as its usage and purpose."
113+
msgstr ""
114+
"Texto de ayuda opcional para los usuarios con una descripción de la vista de "
115+
"destino, como su uso y propósito."
116+
117+
#. module: web_ir_actions_act_multi
118+
#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id
119+
msgid ""
120+
"Setting a value makes this action available in the sidebar for the given "
121+
"model."
122+
msgstr ""
123+
"Establecer un valor hace que esta acción esté disponible en la barra lateral "
124+
"para el modelo dado."
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * web_ir_actions_act_multi
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2025-03-12 09:06+0000\n"
10+
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11+
"Language-Team: none\n"
12+
"Language: it\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 5.10.2\n"
18+
19+
#. module: web_ir_actions_act_multi
20+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__help
21+
msgid "Action Description"
22+
msgstr "Descrizione azione"
23+
24+
#. module: web_ir_actions_act_multi
25+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_actions_act_multi
26+
msgid "Action Mulit"
27+
msgstr "Azione multi"
28+
29+
#. module: web_ir_actions_act_multi
30+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__name
31+
msgid "Action Name"
32+
msgstr "Nome azione"
33+
34+
#. module: web_ir_actions_act_multi
35+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__type
36+
msgid "Action Type"
37+
msgstr "Tipo azione"
38+
39+
#. module: web_ir_actions_act_multi
40+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id
41+
msgid "Binding Model"
42+
msgstr "Modello collegamento"
43+
44+
#. module: web_ir_actions_act_multi
45+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_type
46+
msgid "Binding Type"
47+
msgstr "Tipo collegamento"
48+
49+
#. module: web_ir_actions_act_multi
50+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_view_types
51+
msgid "Binding View Types"
52+
msgstr "Tipi vista collegamento"
53+
54+
#. module: web_ir_actions_act_multi
55+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_uid
56+
msgid "Created by"
57+
msgstr "Creato da"
58+
59+
#. module: web_ir_actions_act_multi
60+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__create_date
61+
msgid "Created on"
62+
msgstr "Creato il"
63+
64+
#. module: web_ir_actions_act_multi
65+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__display_name
66+
msgid "Display Name"
67+
msgstr "Nome visualizzato"
68+
69+
#. module: web_ir_actions_act_multi
70+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__xml_id
71+
msgid "External ID"
72+
msgstr "ID esterno"
73+
74+
#. module: web_ir_actions_act_multi
75+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_fields
76+
msgid "Fields"
77+
msgstr "Campi"
78+
79+
#. module: web_ir_actions_act_multi
80+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__id
81+
msgid "ID"
82+
msgstr "ID"
83+
84+
#. module: web_ir_actions_act_multi
85+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi____last_update
86+
msgid "Last Modified on"
87+
msgstr "Ultima modifica il"
88+
89+
#. module: web_ir_actions_act_multi
90+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_uid
91+
msgid "Last Updated by"
92+
msgstr "Ultimo aggiornamento di"
93+
94+
#. module: web_ir_actions_act_multi
95+
#: model:ir.model.fields,field_description:web_ir_actions_act_multi.field_ir_actions_act_multi__write_date
96+
msgid "Last Updated on"
97+
msgstr "Ultimo aggiornamento il"
98+
99+
#. module: web_ir_actions_act_multi
100+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model_data
101+
msgid "Model Data"
102+
msgstr "Dati modello"
103+
104+
#. module: web_ir_actions_act_multi
105+
#: model:ir.model,name:web_ir_actions_act_multi.model_ir_model
106+
msgid "Models"
107+
msgstr "Modelli"
108+
109+
#. module: web_ir_actions_act_multi
110+
#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__help
111+
msgid ""
112+
"Optional help text for the users with a description of the target view, such "
113+
"as its usage and purpose."
114+
msgstr ""
115+
"Testo di aiuto opzionale per l'utente con una descrizione della vista "
116+
"obiettivo, come il suo utilizzo e obiettivo."
117+
118+
#. module: web_ir_actions_act_multi
119+
#: model:ir.model.fields,help:web_ir_actions_act_multi.field_ir_actions_act_multi__binding_model_id
120+
msgid ""
121+
"Setting a value makes this action available in the sidebar for the given "
122+
"model."
123+
msgstr ""
124+
"Impostare un valore rende questa azione disponibile nella barra laterale per "
125+
"il dato modello."

0 commit comments

Comments
 (0)