I've created a module for custom OrderReceipt in Odoo 15 and my XML is
my manifest contains this
Hello world!
"assets": {
"web.assets_qweb": [
"custom_report/static/src/qweb/**/*"
],
But not working. Can somebody help me?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I've created a module for custom OrderReceipt in Odoo 15 and my XML is
my manifest contains this
Hello world!
"assets": {
"web.assets_qweb": [
"custom_report/static/src/qweb/**/*"
],
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
अप्रैल 24
|
1154 | ||
Unable to update PoS config
Solved
|
|
1
मार्च 24
|
2377 | |
|
3
जून 23
|
1736 | ||
|
1
जून 21
|
4280 | ||
|
3
सित॰ 18
|
3885 |
XML
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="custom_order_receipt" t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension" owl="1">
<xpath expr="//div[hasclass('pos-receipt-contact')]" position="replace">
<div id="Contact"> Hello world!</div>
</xpath>
</t>
</templates>