Thank you all in advance !
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kirjanpito
- Varastointi
- PoS
- Project
- MRP
Tämä kysymys on merkitty
Thank you all in advance !
Hi,
You can try the below code to disable the View Quotation button from the mail.First of all we need to disable the the noupdate property of the template mail_notification_paynow_online
Use the following code to set noupdate=false.
<function name="write" model="ir.model.data">
<function name="search" model="ir.model.data">
<value
eval="[('module', '=', 'sale'), ('name', '=', 'mail_notification_paynow_online')]" />
</function>
<value eval="{'noupdate': False}" />
</function>
After setting the noupdate=false, disable the mail_notification_paynow_online template.
Use the code:-
<record id="sale.mail_notification_paynow_online" model="ir.ui.view">
<field name="active">False</field>
</record>
And now you can reset the noupdate property of mail_notification_paynow_online template.
<function name="write" model="ir.model.data">
<function name="search" model="ir.model.data">
<value
eval="[('module', '=', 'sale'), ('name', '=', 'mail_notification_paynow_online')]" />
</function>
<value eval="{'noupdate': True}" />
</function>
After performing all the above steps, we need to replace the div section of the button in mail_notification_paynow template.
<template id="mail_notification_paynow" inherit_id="mail.mail_notification_paynow">
<xpath expr="//tr[2]//div[1]" position="replace"></xpath>
</template>
Hope it helps
This might be a solution > https://github.com/elsguns/odoo/tree/master/mail_no_portal.
Hi hello, i saw you get no answer in this post but i am interested in solve this problem, did you find a solution, please let me know because i have the same problem
Nautitko keskustelusta? Älä vain lue, vaan osallistu!
Luo tili jo tänään nauttiaksesi yksinoikeusominaisuuksista ja osallistuaksesi mahtavaan yhteisöömme!
RekisteröidyAiheeseen liittyviä artikkeleita | Vastaukset | Näkymät | Toimenpide | |
---|---|---|---|---|
|
0
tammik. 23
|
1905 | ||
|
0
syysk. 21
|
2081 | ||
|
1
tammik. 20
|
5011 | ||
|
0
toukok. 22
|
2530 | ||
|
0
lokak. 21
|
2359 |