-
-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] website_default_code_product: display the default code attribut…
…e of the product in both the GRID/LIST views and the product details
- Loading branch information
1 parent
1dec222
commit afcbd6a
Showing
5 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
============================ | ||
Website Default Code Product | ||
============================ | ||
This module displays the default code attribute of the product in both the GRID/LIST views and the product details. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Website Default Code Product", | ||
"category": "Website", | ||
"version": "16.0.1.0.0", | ||
'author': "ForgeFlow", | ||
"license": "LGPL-3", | ||
"depends": [ | ||
"website_sale" | ||
], | ||
"data": [ | ||
"views/website_default_code_product_views.xml", | ||
], | ||
"assets": { | ||
"web.assets_frontend": [ | ||
"website_default_code_product/static/src/scss/website_default_code_product.scss", | ||
], | ||
}, | ||
"installable": True, | ||
} |
3 changes: 3 additions & 0 deletions
3
website_default_code_product/static/src/scss/website_default_code_product.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.product_default_code { | ||
min-height: 20px; | ||
} |
14 changes: 14 additions & 0 deletions
14
website_default_code_product/views/website_default_code_product_views.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<odoo> | ||
<template id="products_item" inherit_id="website_sale.products_item"> | ||
<xpath expr="//a[@itemprop='name']" position="after"> | ||
<p t-attf-class="product_default_code" t-field="product.default_code" /> | ||
</xpath> | ||
</template> | ||
|
||
<template id="product" inherit_id="website_sale.product"> | ||
<xpath expr="//h1[@itemprop='name']" position="replace"> | ||
<p t-field="product.default_code" /> | ||
</xpath> | ||
</template> | ||
</odoo> |