Advertisement
rht_odoo

[QW][4678564]adapt_title_if_wedding

Apr 4th, 2025 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <data>
  2. <!--
  3. Done by RHT on the 04/04/2025
  4. Need : Different title of the report when it is for a wedding (x_studio_wedding = True)
  5. Task : https://www.odoo.com/odoo/project.task/4678564
  6. Pastebin : https://pastebin.com/Pj48h9je
  7. -->
  8. <xpath expr="//div[@class='clearfix invoice_main']/div/t/span[3]" position="replace">
  9. <span t-if="o.move_type == 'out_invoice' and o.state == 'posted' and o.x_studio_wedding">Redevance Note</span>
  10. <span t-if="o.move_type == 'out_invoice' and o.state == 'posted' and not o.x_studio_wedding">Invoice</span>
  11.  
  12. </xpath>
  13. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement