Advertisement
rht_odoo

[QW][4269898]adapt_text_sidebar_portal

Feb 13th, 2025 (edited)
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.94 KB | None | 0 0
  1. <data>
  2.     <!--
  3.    Done by RHT on the 13/02/2025
  4.    Task : https://www.odoo.com/odoo/project.project/17172/tasks/4269898
  5.    Need : Adapt the text of the sing pop-up to not have the amount as it's the montly loan payment and not the full amount that they are agreeing on
  6.    Pastebin : https://pastebin.com/9n7Jwn5w
  7.    -->
  8.     <xpath expr="//div[@t-if='sale_order._has_to_be_signed()']//main[@id='sign-dialog']" position="replace">
  9.         <main class="modal-body" id="sign-dialog">
  10.             <span>
  11.                 By signing, you confirm acceptance on behalf of
  12.                 <b t-field="sale_order.partner_id.commercial_partner_id"/>.
  13.             </span>
  14.             <t t-call="portal.signature_form">
  15.                 <t t-set="call_url" t-value="sale_order.get_portal_url(suffix='/accept')"/>
  16.                 <t t-set="default_name" t-value="sale_order.partner_id.name"/>
  17.             </t>
  18.         </main>  
  19.     </xpath>
  20.  
  21. </data>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement