Skip to content

Commit c8e24d4

Browse files
committed
[MIG] product_brand_report: Migration to 19.0
1 parent 99405b1 commit c8e24d4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

product_brand_report/__manifest__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
##############################################################################
2020
{
2121
"name": "Product Brand Report",
22-
"version": "18.0.1.0.0",
22+
"version": "19.0.1.0.0",
2323
"category": "Product",
2424
"author": "ADHOC SA",
2525
"website": "www.adhoc.com.ar",
@@ -33,7 +33,7 @@
3333
"reports/report_invoice_document.xml",
3434
"views/res_config_settings_view.xml",
3535
],
36-
"installable": False,
36+
"installable": True,
3737
"auto_install": False,
3838
"application": False,
3939
}

product_brand_report/reports/report_saleorder_document.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<xpath expr="//th[@name='th_description']" position="after">
44
<th class="text-center" t-if="doc.env['ir.config_parameter'].sudo().get_param('product_brand_report.show_brand_sales_report')">Brand</th>
55
</xpath>
6-
<xpath expr="//td[@name='td_name']" position="after">
6+
<xpath expr="//td[@name='td_product_name']" position="after">
77
<td name="td_product_brand" class="text-center" t-if="doc.env['ir.config_parameter'].sudo().get_param('product_brand_report.show_brand_sales_report')">
88
<span t-field="line.product_id.product_brand_id.display_name" />
99
</td>
@@ -14,7 +14,7 @@
1414
<xpath expr="//th[@id='product_name_header']" position="after">
1515
<th class="text-center" t-if="sale_order.env['ir.config_parameter'].sudo().get_param('product_brand_report.show_brand_sales_report')">Brand</th>
1616
</xpath>
17-
<xpath expr="//td[@id='product_name']" position="after">
17+
<xpath expr="//td[@name='td_product_name']" position="after">
1818
<td name="td_product_brand" class="text-center" t-if="sale_order.env['ir.config_parameter'].sudo().get_param('product_brand_report.show_brand_sales_report')">
1919
<span t-field="line.product_id.product_brand_id.display_name" />
2020
</td>

0 commit comments

Comments
 (0)