odoo-addon-base-view-inheritance-extension 15.0.2.0.0__py3-none-any.whl → 15.0.2.0.1__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/base_view_inheritance_extension/README.rst +9 -6
- odoo/addons/base_view_inheritance_extension/__manifest__.py +1 -1
- odoo/addons/base_view_inheritance_extension/models/ir_ui_view.py +4 -2
- odoo/addons/base_view_inheritance_extension/static/description/index.html +36 -34
- {odoo_addon_base_view_inheritance_extension-15.0.2.0.0.dist-info → odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info}/METADATA +11 -8
- {odoo_addon_base_view_inheritance_extension-15.0.2.0.0.dist-info → odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info}/RECORD +8 -8
- {odoo_addon_base_view_inheritance_extension-15.0.2.0.0.dist-info → odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info}/WHEEL +1 -1
- {odoo_addon_base_view_inheritance_extension-15.0.2.0.0.dist-info → odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info}/top_level.txt +0 -0
|
@@ -2,10 +2,13 @@
|
|
|
2
2
|
Extended view inheritance
|
|
3
3
|
=========================
|
|
4
4
|
|
|
5
|
-
..
|
|
5
|
+
..
|
|
6
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
6
7
|
!! This file is generated by oca-gen-addon-readme !!
|
|
7
8
|
!! changes will be overwritten. !!
|
|
8
9
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
10
|
+
!! source digest: sha256:c6778f840471c4ce53bf6ea086c52350c20825b2ff885525b240e305d33542e0
|
|
11
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
9
12
|
|
|
10
13
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
|
11
14
|
:target: https://odoo-community.org/page/development-status
|
|
@@ -19,11 +22,11 @@ Extended view inheritance
|
|
|
19
22
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
20
23
|
:target: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-base_view_inheritance_extension
|
|
21
24
|
:alt: Translate me on Weblate
|
|
22
|
-
.. |badge5| image:: https://img.shields.io/badge/
|
|
23
|
-
:target: https://
|
|
24
|
-
:alt: Try me on
|
|
25
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
26
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=15.0
|
|
27
|
+
:alt: Try me on Runboat
|
|
25
28
|
|
|
26
|
-
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
29
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
27
30
|
|
|
28
31
|
This module was written to make it simple to add custom operators for view
|
|
29
32
|
inheritance.
|
|
@@ -80,7 +83,7 @@ Bug Tracker
|
|
|
80
83
|
|
|
81
84
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
|
|
82
85
|
In case of trouble, please check there if your issue has already been reported.
|
|
83
|
-
If you spotted it first, help us
|
|
86
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
84
87
|
`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20base_view_inheritance_extension%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
85
88
|
|
|
86
89
|
Do not contact contributors directly about support or help with technical issues.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
|
|
4
4
|
{
|
|
5
5
|
"name": "Extended view inheritance",
|
|
6
|
-
"version": "15.0.2.0.
|
|
6
|
+
"version": "15.0.2.0.1",
|
|
7
7
|
"development_status": "Mature",
|
|
8
8
|
"author": "Therp BV,Odoo Community Association (OCA)",
|
|
9
9
|
"license": "LGPL-3",
|
|
@@ -177,12 +177,14 @@ class IrUiView(models.Model):
|
|
|
177
177
|
new_value = str(expression.AND([old_domain, new_domain]))
|
|
178
178
|
new_value = self.str2var_domain_text(new_value)
|
|
179
179
|
else:
|
|
180
|
-
|
|
180
|
+
# We must ensure that the domain definition has not line breaks because
|
|
181
|
+
# in update mode the domain cause an invalid syntax error
|
|
182
|
+
new_value = attribute_node.text.strip()
|
|
181
183
|
if condition:
|
|
182
184
|
new_value = "{condition} and {new_value} or {old_value}".format(
|
|
183
185
|
condition=condition,
|
|
184
186
|
new_value=new_value,
|
|
185
|
-
old_value=old_value,
|
|
187
|
+
old_value=old_value or [],
|
|
186
188
|
)
|
|
187
189
|
node.attrib[attribute_name] = new_value
|
|
188
190
|
return source
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
4
|
<head>
|
|
5
5
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
-
<meta name="generator" content="Docutils
|
|
6
|
+
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
|
|
7
7
|
<title>Extended view inheritance</title>
|
|
8
8
|
<style type="text/css">
|
|
9
9
|
|
|
10
10
|
/*
|
|
11
11
|
:Author: David Goodger (goodger@python.org)
|
|
12
|
-
:Id: $Id: html4css1.css
|
|
12
|
+
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
|
|
13
13
|
:Copyright: This stylesheet has been placed in the public domain.
|
|
14
14
|
|
|
15
15
|
Default cascading style sheet for the HTML output of Docutils.
|
|
16
16
|
|
|
17
|
-
See
|
|
17
|
+
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
|
|
18
18
|
customize this style sheet.
|
|
19
19
|
*/
|
|
20
20
|
|
|
@@ -366,76 +366,78 @@ ul.auto-toc {
|
|
|
366
366
|
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
367
367
|
!! This file is generated by oca-gen-addon-readme !!
|
|
368
368
|
!! changes will be overwritten. !!
|
|
369
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
370
|
+
!! source digest: sha256:c6778f840471c4ce53bf6ea086c52350c20825b2ff885525b240e305d33542e0
|
|
369
371
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
|
|
370
|
-
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/server-tools/tree/15.0/base_view_inheritance_extension"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-base_view_inheritance_extension"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://
|
|
372
|
+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/15.0/base_view_inheritance_extension"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-base_view_inheritance_extension"><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/server-tools&target_branch=15.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
|
371
373
|
<p>This module was written to make it simple to add custom operators for view
|
|
372
374
|
inheritance.</p>
|
|
373
375
|
<p><strong>Table of contents</strong></p>
|
|
374
376
|
<div class="contents local topic" id="contents">
|
|
375
377
|
<ul class="simple">
|
|
376
|
-
<li><a class="reference internal" href="#usage" id="
|
|
377
|
-
<li><a class="reference internal" href="#known-issues-roadmap" id="
|
|
378
|
-
<li><a class="reference internal" href="#bug-tracker" id="
|
|
379
|
-
<li><a class="reference internal" href="#credits" id="
|
|
380
|
-
<li><a class="reference internal" href="#authors" id="
|
|
381
|
-
<li><a class="reference internal" href="#contributors" id="
|
|
382
|
-
<li><a class="reference internal" href="#maintainers" id="
|
|
378
|
+
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
|
|
379
|
+
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-2">Known issues / Roadmap</a></li>
|
|
380
|
+
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
|
|
381
|
+
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
|
|
382
|
+
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
|
|
383
|
+
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
|
|
384
|
+
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
|
|
383
385
|
</ul>
|
|
384
386
|
</li>
|
|
385
387
|
</ul>
|
|
386
388
|
</div>
|
|
387
389
|
<div class="section" id="usage">
|
|
388
|
-
<h1><a class="toc-backref" href="#
|
|
390
|
+
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
|
|
389
391
|
<p><strong>Change a python dictionary (context for example)</strong></p>
|
|
390
392
|
<pre class="code xml literal-block">
|
|
391
|
-
<span class="nt"><field</span>
|
|
392
|
-
|
|
393
|
-
{
|
|
394
|
-
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
|
|
393
|
+
<span class="nt"><field</span><span class="w"> </span><span class="na">position=</span><span class="s">"attributes"</span><span class="nt">></span><span class="w">
|
|
394
|
+
</span><span class="nt"><attribute</span><span class="w"> </span><span class="na">name=</span><span class="s">"context"</span><span class="w"> </span><span class="na">operation=</span><span class="s">"update"</span><span class="nt">></span><span class="w">
|
|
395
|
+
</span>{<span class="w">
|
|
396
|
+
</span>"key":<span class="w"> </span>"value",<span class="w">
|
|
397
|
+
</span>}<span class="w">
|
|
398
|
+
</span><span class="nt"></attribute></span><span class="w">
|
|
399
|
+
</span><span class="nt"></field></span>
|
|
398
400
|
</pre>
|
|
399
401
|
<p>Note that views are subject to evaluation of xmlids anyways, so if you need
|
|
400
402
|
to refer to some xmlid, say <tt class="docutils literal">%(xmlid)s</tt>.</p>
|
|
401
403
|
<p><strong>Add text after and/or before than original</strong></p>
|
|
402
404
|
<pre class="code xml literal-block">
|
|
403
|
-
<span class="nt"><attribute</span>
|
|
404
|
-
|
|
405
|
-
|
|
405
|
+
<span class="nt"><attribute</span><span class="w"> </span><span class="na">name=</span><span class="s">"$attribute"</span><span class="w"> </span><span class="na">operation=</span><span class="s">"text_add"</span><span class="nt">></span><span class="w">
|
|
406
|
+
</span>$text_before<span class="w"> </span>{old_value}<span class="w"> </span>$text_after<span class="w">
|
|
407
|
+
</span><span class="nt"></attribute></span>
|
|
406
408
|
</pre>
|
|
407
409
|
<p><strong>Add domain with AND/OR join operator (AND if missed) allowing conditional changes</strong></p>
|
|
408
410
|
<pre class="code xml literal-block">
|
|
409
|
-
<span class="nt"><attribute</span>
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
411
|
+
<span class="nt"><attribute</span><span class="w"> </span><span class="na">name=</span><span class="s">"$attribute"</span><span class="w"> </span><span class="na">operation=</span><span class="s">"domain_add"</span><span class="w">
|
|
412
|
+
</span><span class="na">condition=</span><span class="s">"$field_condition"</span><span class="w"> </span><span class="na">join_operator=</span><span class="s">"OR"</span><span class="nt">></span><span class="w">
|
|
413
|
+
</span>$domain_to_add<span class="w">
|
|
414
|
+
</span><span class="nt"></attribute></span>
|
|
413
415
|
</pre>
|
|
414
416
|
</div>
|
|
415
417
|
<div class="section" id="known-issues-roadmap">
|
|
416
|
-
<h1><a class="toc-backref" href="#
|
|
418
|
+
<h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
|
|
417
419
|
<ul class="simple">
|
|
418
420
|
<li>Support an <tt class="docutils literal">eval</tt> attribute for our new node types.</li>
|
|
419
421
|
</ul>
|
|
420
422
|
</div>
|
|
421
423
|
<div class="section" id="bug-tracker">
|
|
422
|
-
<h1><a class="toc-backref" href="#
|
|
424
|
+
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
|
|
423
425
|
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/server-tools/issues">GitHub Issues</a>.
|
|
424
426
|
In case of trouble, please check there if your issue has already been reported.
|
|
425
|
-
If you spotted it first, help us
|
|
427
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
426
428
|
<a class="reference external" href="https://github.com/OCA/server-tools/issues/new?body=module:%20base_view_inheritance_extension%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
|
|
427
429
|
<p>Do not contact contributors directly about support or help with technical issues.</p>
|
|
428
430
|
</div>
|
|
429
431
|
<div class="section" id="credits">
|
|
430
|
-
<h1><a class="toc-backref" href="#
|
|
432
|
+
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
|
|
431
433
|
<div class="section" id="authors">
|
|
432
|
-
<h2><a class="toc-backref" href="#
|
|
434
|
+
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
|
|
433
435
|
<ul class="simple">
|
|
434
436
|
<li>Therp BV</li>
|
|
435
437
|
</ul>
|
|
436
438
|
</div>
|
|
437
439
|
<div class="section" id="contributors">
|
|
438
|
-
<h2><a class="toc-backref" href="#
|
|
440
|
+
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
|
|
439
441
|
<ul class="simple">
|
|
440
442
|
<li>Holger Brunn <<a class="reference external" href="mailto:hbrunn@therp.nl">hbrunn@therp.nl</a>></li>
|
|
441
443
|
<li>Ronald Portier <<a class="reference external" href="mailto:rportier@therp.nl">rportier@therp.nl</a>></li>
|
|
@@ -448,7 +450,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
|
|
|
448
450
|
</ul>
|
|
449
451
|
</div>
|
|
450
452
|
<div class="section" id="maintainers">
|
|
451
|
-
<h2><a class="toc-backref" href="#
|
|
453
|
+
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
|
|
452
454
|
<p>This module is maintained by the OCA.</p>
|
|
453
455
|
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
|
|
454
456
|
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: odoo-addon-base-view-inheritance-extension
|
|
3
|
-
Version: 15.0.2.0.
|
|
3
|
+
Version: 15.0.2.0.1
|
|
4
4
|
Summary: Adds more operators for view inheritance
|
|
5
5
|
Home-page: https://github.com/OCA/server-tools
|
|
6
6
|
Author: Therp BV,Odoo Community Association (OCA)
|
|
@@ -14,16 +14,19 @@ Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGP
|
|
|
14
14
|
Classifier: Development Status :: 6 - Mature
|
|
15
15
|
Requires-Python: >=3.8
|
|
16
16
|
Requires-Dist: astor
|
|
17
|
-
Requires-Dist: odoo
|
|
17
|
+
Requires-Dist: odoo <15.1dev,>=15.0a
|
|
18
18
|
|
|
19
19
|
=========================
|
|
20
20
|
Extended view inheritance
|
|
21
21
|
=========================
|
|
22
22
|
|
|
23
|
-
..
|
|
23
|
+
..
|
|
24
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
24
25
|
!! This file is generated by oca-gen-addon-readme !!
|
|
25
26
|
!! changes will be overwritten. !!
|
|
26
27
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
28
|
+
!! source digest: sha256:c6778f840471c4ce53bf6ea086c52350c20825b2ff885525b240e305d33542e0
|
|
29
|
+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
27
30
|
|
|
28
31
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
|
|
29
32
|
:target: https://odoo-community.org/page/development-status
|
|
@@ -37,11 +40,11 @@ Extended view inheritance
|
|
|
37
40
|
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
|
38
41
|
:target: https://translation.odoo-community.org/projects/server-tools-15-0/server-tools-15-0-base_view_inheritance_extension
|
|
39
42
|
:alt: Translate me on Weblate
|
|
40
|
-
.. |badge5| image:: https://img.shields.io/badge/
|
|
41
|
-
:target: https://
|
|
42
|
-
:alt: Try me on
|
|
43
|
+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
|
44
|
+
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-tools&target_branch=15.0
|
|
45
|
+
:alt: Try me on Runboat
|
|
43
46
|
|
|
44
|
-
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
47
|
+
|badge1| |badge2| |badge3| |badge4| |badge5|
|
|
45
48
|
|
|
46
49
|
This module was written to make it simple to add custom operators for view
|
|
47
50
|
inheritance.
|
|
@@ -98,7 +101,7 @@ Bug Tracker
|
|
|
98
101
|
|
|
99
102
|
Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
|
|
100
103
|
In case of trouble, please check there if your issue has already been reported.
|
|
101
|
-
If you spotted it first, help us
|
|
104
|
+
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
|
102
105
|
`feedback <https://github.com/OCA/server-tools/issues/new?body=module:%20base_view_inheritance_extension%0Aversion:%2015.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
|
103
106
|
|
|
104
107
|
Do not contact contributors directly about support or help with technical issues.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
odoo/addons/base_view_inheritance_extension/README.rst,sha256=
|
|
1
|
+
odoo/addons/base_view_inheritance_extension/README.rst,sha256=J1U7L4G-utGgHAgHCcrVMC7L0tFYjZoRMSYvySrzPnM,4059
|
|
2
2
|
odoo/addons/base_view_inheritance_extension/__init__.py,sha256=X9EJGOE2GtZbS0G82PtSXmWSZ_R8jEM0rlJTDliQjp4,21
|
|
3
|
-
odoo/addons/base_view_inheritance_extension/__manifest__.py,sha256=
|
|
3
|
+
odoo/addons/base_view_inheritance_extension/__manifest__.py,sha256=JOcVOe-bORtq7mSurJ00wzHQrEF8QnqS6GQ_6EHZrDE,616
|
|
4
4
|
odoo/addons/base_view_inheritance_extension/demo/ir_ui_view.xml,sha256=UMFWbOJOnWSvpy9DdFNyFKwFf6YIlD6hnguHsbTA1n8,1219
|
|
5
5
|
odoo/addons/base_view_inheritance_extension/i18n/base_view_inheritance_extension.pot,sha256=knOWHe2nMwnZcY2zZiRUmMpFSvuuwo9DnJYtFhxKZs8,850
|
|
6
6
|
odoo/addons/base_view_inheritance_extension/i18n/ca.po,sha256=xFKkpPiT_RVTTR0H7ZzB2PW6M7aDhRzYhdiCoiRq6mY,1262
|
|
@@ -12,16 +12,16 @@ odoo/addons/base_view_inheritance_extension/i18n/it.po,sha256=0gDsGhu0G-QUmhB_pH
|
|
|
12
12
|
odoo/addons/base_view_inheritance_extension/i18n/sl.po,sha256=EY6zKcR8nRRsfpjrKK2_CVqFXnUVPjSBOAkI4-voRYw,1265
|
|
13
13
|
odoo/addons/base_view_inheritance_extension/i18n/tr.po,sha256=xaYd2V2mHhQIeLqUpsE4VL3mHbT0DQVNbT9_jCXLc0I,1272
|
|
14
14
|
odoo/addons/base_view_inheritance_extension/models/__init__.py,sha256=SjKfc8ocbCImvP5DpGQbS0hWmQRYPjtzJdyio6TPII0,25
|
|
15
|
-
odoo/addons/base_view_inheritance_extension/models/ir_ui_view.py,sha256=
|
|
15
|
+
odoo/addons/base_view_inheritance_extension/models/ir_ui_view.py,sha256=MGk_4Y-jJNky5SlwklDNRnJyztnng0EPpMffGXcv048,8191
|
|
16
16
|
odoo/addons/base_view_inheritance_extension/readme/CONTRIBUTORS.rst,sha256=c9RfnEkKnqbGzA9LVlOz37yIL6hsprsap_73E5_kqyQ,204
|
|
17
17
|
odoo/addons/base_view_inheritance_extension/readme/DESCRIPTION.rst,sha256=pamURJDYfLUcZtHl0ZvXTtzKO1LvHlhhYIND05AMzbk,88
|
|
18
18
|
odoo/addons/base_view_inheritance_extension/readme/ROADMAP.rst,sha256=Cz02ovrYCAgtqjY3nTSnikVgWaKPcWLP-bsuJxCTlKw,56
|
|
19
19
|
odoo/addons/base_view_inheritance_extension/readme/USAGE.rst,sha256=Hbr5TnkYHTP2Ek3PnlL1h7fL11hOX7tnoaOSObfh3Y8,835
|
|
20
20
|
odoo/addons/base_view_inheritance_extension/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
|
|
21
|
-
odoo/addons/base_view_inheritance_extension/static/description/index.html,sha256=
|
|
21
|
+
odoo/addons/base_view_inheritance_extension/static/description/index.html,sha256=krqbWOYTUiB2j0xfbbPHz2WkiKlbqVREX3EBBoqjZFA,15475
|
|
22
22
|
odoo/addons/base_view_inheritance_extension/tests/__init__.py,sha256=kTcGsgnWhpM7vII3sEdNX5XVxDHHqRc5KdrxInG6GSw,51
|
|
23
23
|
odoo/addons/base_view_inheritance_extension/tests/test_base_view_inheritance_extension.py,sha256=wuJ30Nzs73ojQOCY9BDxC5lYRUmt4uTY4TkjMGfx6gc,8649
|
|
24
|
-
odoo_addon_base_view_inheritance_extension-15.0.2.0.
|
|
25
|
-
odoo_addon_base_view_inheritance_extension-15.0.2.0.
|
|
26
|
-
odoo_addon_base_view_inheritance_extension-15.0.2.0.
|
|
27
|
-
odoo_addon_base_view_inheritance_extension-15.0.2.0.
|
|
24
|
+
odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info/METADATA,sha256=OwZuF7MKDa1WOb-p03MmFpP20NSBJV_Ag8OTIe5y7A4,4697
|
|
25
|
+
odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
26
|
+
odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
|
|
27
|
+
odoo_addon_base_view_inheritance_extension-15.0.2.0.1.dist-info/RECORD,,
|