I've seen this in buttons and other operations, surrounding an xml_id like this:
%(other_
What does it do?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I've seen this in buttons and other operations, surrounding an xml_id like this:
%(other_
What does it do?
To expand on Jeremy's answer:
The reason you want to do this is that the ID is not always portable between databases and should not be relied on to locate a record, but is the way some buttons are identified in Odoo XML files once they are inside the database.
If you see this:
<button name="396" string="Convert to Opportunity" type="action" help="Convert to Opportunity" class="oe_highlight"/>
You can locate it the button using:
name="396"
... but it is safer to locate it with:
name="%(crm.action_crm_lead2opportunity_partner)d"
Hello
When the xml template will be parsed by Odoo and inserted in the database (in table ir.ui.view); the %(xmlid)d will be replaced by the real id from this record.
Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !
S'inscrirePublications associées | Réponses | Vues | Activité | |
---|---|---|---|---|
|
2
août 24
|
2857 | ||
|
2
juin 24
|
1898 | ||
Using xml_id for attrs
Résolu
|
|
5
déc. 22
|
14988 | |
|
3
avr. 18
|
53 | ||
|
0
janv. 18
|
3309 |