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/**/*"
],
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
0
avr. 24
|
1027 | ||
Unable to update PoS config
Résolu
|
|
1
mars 24
|
2308 | |
|
3
juin 23
|
1643 | ||
|
1
juin 21
|
4195 | ||
|
3
sept. 18
|
3788 |
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>