Skip to content

Commit

Permalink
[16][FIX] Make position number always come first on Sale Orders
Browse files Browse the repository at this point in the history
  • Loading branch information
ng-ife committed Oct 1, 2024
1 parent 34a0498 commit dd4b528
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions sale_order_line_position/report/sale_order_report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@
<template
id="report_saleorder_document"
inherit_id="sale.report_saleorder_document"
priority="1"
>
<xpath expr="//table/thead/tr/th[@name='th_description']" position="before">
<xpath expr="//table/thead/tr/th[1]" position="before">
<th class="text-start">Pos</th>
</xpath>
<xpath
expr="//table/tbody[hasclass('sale_tbody')]//td[@name='td_name']"
position="before"
>
<xpath expr="//table/tbody[hasclass('sale_tbody')]//td[1]" position="before">
<td>
<span t-field="line.position_formatted" />
</td>
Expand Down

0 comments on commit dd4b528

Please sign in to comment.