Advertisement
rht_odoo

[QW][4756077]amount_total_words_sale_document_tax_totals

Apr 29th, 2025 (edited)
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.66 KB | None | 0 0
  1. <data>
  2.     <!--
  3.    Done by RHT on the 29/04/2025
  4.    Need: have the total in full words
  5.    Task : https://www.odoo.com/odoo/project/5686/tasks/4756077
  6.    Pastebin : https://pastebin.com/T1ErpL7J
  7.    -->
  8.     <xpath position="inside" expr="/t[@t-name='account.document_tax_totals_template']">
  9.         <tr class="o_total" t-if="doc">
  10.             <td>
  11.                 <strong>Total amount in words: </strong>
  12.             </td>
  13.             <td>
  14.                 <t t-set="amount_total_words" t-value="doc.currency_id.amount_to_text(doc.amount_total)"/>
  15.                 <strong t-esc="amount_total_words"/>
  16.             </td>
  17.         </tr>
  18.     </xpath>
  19. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement