Skip to content

Commit d18a6d4

Browse files
committed
[MIG] web_ir_actions_act_view_reload: Migration to 12.0
1 parent 8ad3468 commit d18a6d4

File tree

8 files changed

+525
-26
lines changed

8 files changed

+525
-26
lines changed
+51-17
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,37 @@
1-
.. image:: https://www.gnu.org/graphics/lgplv3-147x51.png
2-
:target: https://www.gnu.org/licenses/lgpl-3.0.en.html
3-
:alt: License: LGPL-v3
4-
5-
=========================
6-
Web Actions Window Reload
7-
=========================
1+
=======================
2+
Web Actions View Reload
3+
=======================
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
15+
:alt: License: LGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github
17+
:target: https://github.com/OCA/web/tree/12.0/web_ir_actions_act_view_reload
18+
:alt: OCA/web
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/web-12-0/web-12-0-web_ir_actions_act_view_reload
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
23+
:target: https://runbot.odoo-community.org/runbot/162/12.0
24+
:alt: Try me on Runbot
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
827

928
This module provides a way to trigger reload of the current window on ActionManager
1029

30+
**Table of contents**
31+
32+
.. contents::
33+
:local:
34+
1135
Usage
1236
=====
1337

@@ -25,31 +49,41 @@ To use this functionality you need to return following action:
2549
Bug Tracker
2650
===========
2751

28-
Bugs are tracked on `GitHub Issues
29-
<https://github.com/OCA/web/issues>`_. In case of trouble, please
30-
check there if your issue has already been reported. If you spotted it first,
31-
help us smash it by providing detailed and welcomed feedback.
52+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/web/issues>`_.
53+
In case of trouble, please check there if your issue has already been reported.
54+
If you spotted it first, help us smashing it by providing a detailed and welcomed
55+
`feedback <https://github.com/OCA/web/issues/new?body=module:%20web_ir_actions_act_view_reload%0Aversion:%2012.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
56+
57+
Do not contact contributors directly about support or help with technical issues.
3258

3359
Credits
3460
=======
3561

62+
Authors
63+
~~~~~~~
64+
65+
* Modoolar
66+
* Brainbean Apps
3667

3768
Contributors
38-
------------
69+
~~~~~~~~~~~~
3970

4071
* Petar Najman <[email protected]>
72+
* Alexey Pelykh <[email protected]>
4173

42-
Maintainer
43-
----------
74+
Maintainers
75+
~~~~~~~~~~~
76+
77+
This module is maintained by the OCA.
4478

4579
.. image:: https://odoo-community.org/logo.png
4680
:alt: Odoo Community Association
4781
:target: https://odoo-community.org
4882

49-
This module is maintained by the OCA.
50-
5183
OCA, or the Odoo Community Association, is a nonprofit organization whose
5284
mission is to support the collaborative development of Odoo features and
5385
promote its widespread use.
5486

55-
To contribute to this module, please visit https://odoo-community.org.
87+
This module is part of the `OCA/web <https://github.com/OCA/web/tree/12.0/web_ir_actions_act_view_reload>`_ project on GitHub.
88+
89+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

web_ir_actions_act_view_reload/__manifest__.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
# Copyright 2017 - 2018 Modoolar <[email protected]>
2+
# Copyright 2018 Brainbean Apps
23
# License LGPLv3.0 or later (https://www.gnu.org/licenses/lgpl-3.0.en.html).
34

45
{
56
"name": "Web Actions View Reload",
67
"summary": "Enables reload of the current view via ActionManager",
78
"category": "Web",
8-
"version": "11.0.1.0.0",
9+
"version": "12.0.1.0.0",
910
"license": "LGPL-3",
10-
"author": "Modoolar, Odoo Community Association (OCA)",
11+
"author": "Modoolar, "
12+
"Brainbean Apps, "
13+
"Odoo Community Association (OCA)",
1114
"website": "https://github.com/OCA/web/",
12-
"depends": ["web"],
15+
"depends": [
16+
"web"
17+
],
1318
"data": [
1419
"views/web_ir_actions_act_view_reload.xml",
1520
],
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* Petar Najman <[email protected]>
2+
* Alexey Pelykh <[email protected]>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This module provides a way to trigger reload of the current window on ActionManager
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
To use this functionality you need to return following action:
2+
3+
.. code-block:: python
4+
5+
@api.multi
6+
def foo():
7+
self.ensure_one()
8+
return {
9+
'type': 'ir.actions.act_view_reload',
10+
}

0 commit comments

Comments
 (0)