forked from priyankarani/trytond-shipping-dpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarrier.xml
More file actions
22 lines (20 loc) · 886 Bytes
/
carrier.xml
File metadata and controls
22 lines (20 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<tryton>
<data>
<record model="ir.ui.view" id="carrier_view_form">
<field name="model">carrier</field>
<field name="inherit" ref="carrier.carrier_view_form"/>
<field name="name">carrier_form</field>
</record>
<!--Test Connection Wizard-->
<record model="ir.action.wizard" id="wizard_test_connection">
<field name="name">Test Connection</field>
<field name="wiz_name">shipping_dpd.wizard_test_connection</field>
<field name="model">carrier</field>
</record>
<record model="ir.ui.view" id="wizard_test_connection_view_form">
<field name="model">shipping_dpd.wizard_test_connection.start</field>
<field name="type">form</field>
<field name="name">wizard_test_connection_start_form</field>
</record>
</data>
</tryton>