1)I Have a custom module and i want to change the name of menu action name 'meeting' to 'scheduler'
2)I want to change the page string 'Meeting Details' to Scheduler Details
please help me how to get the answer.Thanks in advance.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
1)I Have a custom module and i want to change the name of menu action name 'meeting' to 'scheduler'
2)I want to change the page string 'Meeting Details' to Scheduler Details
please help me how to get the answer.Thanks in advance.
In v11 I got the error,
"""ValueError: View inheritance may not use attribute 'string' as a selector."""
<xpath expr="//page[@name='sales']" position="attributes">
<attribute name="string">Purchase</attribute>
</xpath>
So, I used the page string position to work with it
<xpath expr="//page[1]" position="attributes">
<attribute name="string">Purchase</attribute>
</xpath>
<record id="module.action_name" model="ir.actions.act_window">
<field name="name">scheduler</field>
</record>
<page string="Meeting Details" position="attributes">
<attribute name="string">Scheduler</string>
</page>
1- <record model="ir.ui.menu" id="id_of_the_menu">
<field name="name">scheduler</field>
</record>
2- inherit the form and modify the form string to Scheduler Details
Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!
DaftarPost Terkait | Replies | Tampilan | Aktivitas | |
---|---|---|---|---|
|
4
Sep 17
|
3149 | ||
|
2
Apr 24
|
4912 | ||
|
3
Apr 21
|
5550 | ||
How to pass domain for field in window action?
Diselesaikan
|
|
3
Okt 19
|
12582 | |
|
0
Okt 19
|
2831 |
thanks hedi