Skip to Content
Menu
This question has been flagged
2 Replies
1977 Views

Hi,

i want to change the label of the column th_priceunit in the qweb view report_saleorder_document but i could not find the attribute to do that

I tried to do that, but it doesn't work :


<xpath expr="//th@name='th_priceunit']" position="attributes">

      <attribute name="string">P.U HT</attribute>

</xpath>


Do you know how to do that ?

Vincent

Avatar
Discard
Author

Thank you Sudhir Arya, it works :)

Best Answer

Try the following code:

<xpath expr="//th[@name='th_priceunit']" position="replace">
<th name="th_priceunit" class="text-right">P.U HT</th>
</xpath>


Avatar
Discard