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.
14 lines
657 B
14 lines
657 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- New field Shipping method is added in Payment provider form view.-->
|
|
<record id="payment_provider_form" model="ir.ui.view">
|
|
<field name="name">payment.provider.view.form.inherit.web.pay.shipping.methods</field>
|
|
<field name="model">payment.provider</field>
|
|
<field name="inherit_id" ref="payment.payment_provider_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='so_reference_type']" position="after">
|
|
<field name="delivery_carrier_ids" widget="many2many_tags"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|