Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd
2 Antwoorden
2420 Weergaven

Hi there

I want to remove some fields and add others to the POS receipt 

I found a way to add a field, but I can't remove anyone

Avatar
Annuleer
Beste antwoord

Hi,

<?xml version="1.0" encoding="UTF-8"?>


<templates id="template" xml:space="preserve">


   <t t-name="OrderReceipt" t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension" owl="1">


       <xpath expr="//div[hasclass('pos-receipt-contact')]" position="replace">


</xpath>


</t>


</template>


Please refer the above code. 
POS receipt’s corresponding template is ‘OrderReceipt’. First of all, An XML file is added inside the static>src>xml folder, and adds the above XML code into that XML file.
In this XML code, first, you have to inherit the OrderReceipt template from pos by using t-inherit-mode=” extension” and owl=”1”.The owl=”1”, which denotes it is an owl template. Then you have to extend the corresponding class. In the XPath expression, you can mention the exact path of the field which you want to delete. And give the position as ‘replace’. Close the Xpath tag.
The qweb template is added in the assets section of ‘web.assets_qweb’ in the __manifest__.py file.

Regards

Avatar
Annuleer
Beste antwoord

Hi @Topaz IT Services and Integrated Solutions

Hope you are doing Well.

Please find code in comment.
I Hope this will help you. 

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

Avatar
Annuleer

For making the changes to POS Receipt you will need to inherit the OrderReceipt template:

<t t-name="OrderReceipt" t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension" owl="1">
place your changes for fields to be removed and added.
</>

you could refer to the base modules for the inheritance.

Gerelateerde posts Antwoorden Weergaven Activiteit
1
aug. 23
2231
0
dec. 15
2505
2
mrt. 15
8188
3
jan. 24
12822
0
mei 23
1555