Skip to content

Commit 8cfdfef

Browse files
committed
[MIG] product_supplierinfo_archive: Migration to 18.0
1 parent e94697d commit 8cfdfef

File tree

6 files changed

+26
-29
lines changed

6 files changed

+26
-29
lines changed

product_supplierinfo_archive/README.rst

+9
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ Contributors
6868
- Álvaro Trius Béjar <[email protected]>
6969
- Oriol Villamayor <[email protected]>
7070
- Dhara Solanki <[email protected]>
71+
- Khoi (Kien Kim) <[email protected]>
72+
73+
Other credits
74+
-------------
75+
76+
The migration of this module from 17.0 to 18.0 was financially supported
77+
by:
78+
79+
- Camptocamp
7180

7281
Maintainers
7382
-----------

product_supplierinfo_archive/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"summary": """
77
Add the active field to the product supplier info
88
""",
9-
"version": "17.0.1.0.0",
9+
"version": "18.0.1.0.0",
1010
"license": "LGPL-3",
1111
"website": "https://github.com/OCA/product-attribute",
1212
"author": "ForgeFlow, Odoo Community Association (OCA)",

product_supplierinfo_archive/readme/CONTRIBUTORS.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
- Álvaro Trius Béjar \<<[email protected]>\>
33
- Oriol Villamayor \<<[email protected]>\>
44
- Dhara Solanki \<<[email protected]>\>
5+
- Khoi (Kien Kim) \<<[email protected]>\>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
The migration of this module from 17.0 to 18.0 was financially supported by:
2+
3+
- Camptocamp

product_supplierinfo_archive/static/description/index.html

+12-2
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,8 @@ <h1 class="title">Product Supplier Info Archive</h1>
380380
<li><a class="reference internal" href="#credits" id="toc-entry-3">Credits</a><ul>
381381
<li><a class="reference internal" href="#authors" id="toc-entry-4">Authors</a></li>
382382
<li><a class="reference internal" href="#contributors" id="toc-entry-5">Contributors</a></li>
383-
<li><a class="reference internal" href="#maintainers" id="toc-entry-6">Maintainers</a></li>
383+
<li><a class="reference internal" href="#other-credits" id="toc-entry-6">Other credits</a></li>
384+
<li><a class="reference internal" href="#maintainers" id="toc-entry-7">Maintainers</a></li>
384385
</ul>
385386
</li>
386387
</ul>
@@ -413,10 +414,19 @@ <h2><a class="toc-backref" href="#toc-entry-5">Contributors</a></h2>
413414
<li>Álvaro Trius Béjar &lt;<a class="reference external" href="mailto:alvaro.trius&#64;forgeflow.com">alvaro.trius&#64;forgeflow.com</a>&gt;</li>
414415
<li>Oriol Villamayor &lt;<a class="reference external" href="mailto:oriol.villamayor&#64;forgeflow.com">oriol.villamayor&#64;forgeflow.com</a>&gt;</li>
415416
<li>Dhara Solanki &lt;<a class="reference external" href="mailto:dhara.solanki&#64;initos.com">dhara.solanki&#64;initos.com</a>&gt;</li>
417+
<li>Khoi (Kien Kim) &lt;<a class="reference external" href="mailto:khoikk&#64;trobz.com">khoikk&#64;trobz.com</a>&gt;</li>
418+
</ul>
419+
</div>
420+
<div class="section" id="other-credits">
421+
<h2><a class="toc-backref" href="#toc-entry-6">Other credits</a></h2>
422+
<p>The migration of this module from 17.0 to 18.0 was financially supported
423+
by:</p>
424+
<ul class="simple">
425+
<li>Camptocamp</li>
416426
</ul>
417427
</div>
418428
<div class="section" id="maintainers">
419-
<h2><a class="toc-backref" href="#toc-entry-6">Maintainers</a></h2>
429+
<h2><a class="toc-backref" href="#toc-entry-7">Maintainers</a></h2>
420430
<p>This module is maintained by the OCA.</p>
421431
<a class="reference external image-reference" href="https://odoo-community.org">
422432
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />

product_supplierinfo_archive/views/product_views.xml

-26
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,5 @@
11
<?xml version="1.0" encoding="utf-8" ?>
22
<odoo>
3-
<record id="product_supplierinfo_tree_view" model="ir.ui.view">
4-
<field
5-
name="name"
6-
>product.supplierinfo.tree.view - product_supplierinfo_archive</field>
7-
<field name="model">product.supplierinfo</field>
8-
<field name="inherit_id" ref="product.product_supplierinfo_tree_view" />
9-
<field name="arch" type="xml">
10-
<field name="price" position="after">
11-
<field name="active" invisible="1" />
12-
</field>
13-
</field>
14-
</record>
15-
16-
<record id="product_supplierinfo_form_view" model="ir.ui.view">
17-
<field
18-
name="name"
19-
>product.supplierinfo.form.view - product_supplierinfo_archive</field>
20-
<field name="model">product.supplierinfo</field>
21-
<field name="inherit_id" ref="product.product_supplierinfo_form_view" />
22-
<field name="arch" type="xml">
23-
<field name="product_variant_count" position="after">
24-
<field name="active" invisible="1" />
25-
</field>
26-
</field>
27-
</record>
28-
293
<record id="product_supplierinfo_search_view" model="ir.ui.view">
304
<field
315
name="name"

0 commit comments

Comments
 (0)