Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
7115 มุมมอง

how can i add a confirm message to the "Confirm" Button of Sale Order?

i tried to inherit from sale.view_order_form and add:

<xpath expr="//button[@name='action_confirm']" position="replace">
<attribute name="confirm">Pleas confirm........</attribute>
</xpath>

but  without success

how can i add such a confirm message to this button?



อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

Try the below code,



sale.order.form
sale.order



please confirm


please confirm

For More see:
 
 


Thanks

อวตาร
ละทิ้ง
ผู้เขียน

does the //button[@name='action_confirm replace both?

in your replace code you only add one new button

Please see the updated answer, you have to replace two buttons separately, for this use //button[@name='action_confirm'][0] and //button[@name='action_confirm'][1]

ผู้เขียน

//button[@name='action_confirm'][0] does not work. while updating my cusom model i get error that it could not find it in the inherited view

Sorry, i have again updated the answer, hope this will give you the solution

ผู้เขียน

thanks now it works

คำตอบที่ดีที่สุด

This will helpful

 
 

อวตาร
ละทิ้ง