-
Notifications
You must be signed in to change notification settings - Fork 2
/
logistic_company_view.xml
34 lines (32 loc) · 1.15 KB
/
logistic_company_view.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<record id="logistic_company_form_inherit_ups" model="ir.ui.view">
<field name="name">logistic_company_form_inherit_ups</field>
<field name="model">logistic.company</field>
<field name="inherit_id" ref="shipping_api.view_form_logistic_company"/>
<field name="arch" type="xml">
<xpath expr="//page[@string='Notes']" position="before">
<page string="UPS" attrs="{'invisible':[('ship_company_code','!=','ups')]}">
<group>
<field name="ups_account_shipping_id" nolabel='1' colspan="4"/>
<field name='ship_req_web'/>
<field name='ship_req_port'/>
<field name='ship_req_test_web'/>
<field name='ship_req_test_port'/>
<field name='ship_accpt_web'/>
<field name='ship_accpt_port'/>
<field name='ship_accpt_test_web'/>
<field name='ship_accpt_test_port'/>
<field name='ship_void_web'/>
<field name='ship_void_port'/>
<field name='ship_void_test_web'/>
<field name='ship_void_test_port'/>
<field name='ship_tracking_url'/>
</group>
</page>
</xpath>
</field>
</record>
</data>
</openerp>