Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
How to access data in payment acquirer
Working on a new acquirer, I used this views/payment_acqurier.xml
<record id="acquirer_form_bank" model="ir.ui.view">
<field name="name">acquirer.form.bank</field>
<field name="model">payment.acquirer</field>
<field name="inherit_id" ref="payment.acquirer_form"/>
<field name="arch" type="xml">
<xpath expr='//group[@name="acquirer_display"]' position='after'>
<group attrs="{'invisible': [('provider', '!=', 'bank')]}">
<group>
<group>
<field name="merchantid"/>
</group>
</group>
</group>
</xpath>
</field>
</record>
Please note the three group containers. If I remove two of them, the views/bank.xml cannot access the field marchantid anymore:
<input type="hidden" name="merchantid" t-att-value="tx_values['merchantid']"/>
So, where do I tell odoo to not travese the xml tree two groups-containers deeper?
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 11/10/14, 4:21 AM |
Seen: 1198 times |
Last updated: 3/16/15, 8:10 AM |