You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
678 B
16 lines
678 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- New field Shipping method is added in Payment provider form view.-->
|
|
<record id="payment_acquirer_form" model="ir.ui.view">
|
|
<field name="name">
|
|
payment.acquirer.view.form.inherit.web.pay.shipping.methods
|
|
</field>
|
|
<field name="model">payment.acquirer</field>
|
|
<field name="inherit_id" ref="payment.payment_acquirer_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//group[@name='payment_form']" position="inside">
|
|
<field name="delivery_carrier_ids" widget="many2many_tags"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|