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

Hi i am using odoo 14 i want to remove tax field from order lines and from the subtotal table in purchase order report can anyone tell me how is this possible using xml or python , i have already done many edit using xml whiat attribute should i use to hide only tax field and enable total 

Avatar
Annuleer
Auteur Beste antwoord

I found the proper code to hide tax its similar to what @Jainesh Shah but only last two lines some changes have to be made

<template id="inherit_report_purchaseorder_document"
inherit_id="purchase.report_purchaseorder_document">

<xpath expr="//td[@name='td_taxes']" position="replace">
</xpath>
<xpath expr="//th[@name='th_taxes']" position="replace">
</xpath>
</template>

Avatar
Annuleer
Beste antwoord

Hello jo,


Please first you can inherit purchase order template and inside this template add the below codes,

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

Avatar
Annuleer

Code is here :-
<xpath expr="//td[@name='td_taxes']" position="replace">
</xpath>
<xpath expr="//div[@id='total']/tr[2]" position="replace">
</xpath>

Beste antwoord

Go to addons->purchase->report->purchase_order_templates.xml and comment out th name="th_taxes" and td name="td_taxes"

Avatar
Annuleer
Auteur

wont that affect when i restart server update the module

I can't understand what are you trying to tell. It is intended to make changes.

Gerelateerde posts Antwoorden Weergaven Activiteit
1
aug. 23
5228
4
nov. 24
7256
0
sep. 19
3006
4
jul. 19
8203
0
dec. 18
3581