first commit
This commit is contained in:
10
modules/incoterm/view/carrier_form.xml
Normal file
10
modules/incoterm/view/carrier_form.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='carrier_cost_method']" position="after">
|
||||
<label name="mode"/>
|
||||
<field name="mode"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/incoterm/view/carrier_list.xml
Normal file
8
modules/incoterm/view/carrier_list.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='party']" position="after">
|
||||
<field name="mode" optional="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/incoterm/view/company_form.xml
Normal file
10
modules/incoterm/view/company_form.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//notebook" position="inside">
|
||||
<page name="incoterms">
|
||||
<field name="incoterms" colspan="4"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
25
modules/incoterm/view/incoterm_form.xml
Normal file
25
modules/incoterm/view/incoterm_form.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form col="6">
|
||||
<label name="name"/>
|
||||
<field name="name" colspan="3"/>
|
||||
<group colspan="2" col="-1" id="code">
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="version"/>
|
||||
<field name="version"/>
|
||||
</group>
|
||||
|
||||
<label name="mode"/>
|
||||
<field name="mode"/>
|
||||
<label name="carrier"/>
|
||||
<field name="carrier"/>
|
||||
<label name="risk"/>
|
||||
<field name="risk"/>
|
||||
|
||||
<label name="location"/>
|
||||
<field name="location"/>
|
||||
|
||||
<field name="companies" colspan="6"/>
|
||||
</form>
|
||||
12
modules/incoterm/view/incoterm_list.xml
Normal file
12
modules/incoterm/view/incoterm_list.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="code"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="version" optional="0"/>
|
||||
<field name="mode" optional="1"/>
|
||||
<field name="carrier" optional="1"/>
|
||||
<field name="risk" optional="1"/>
|
||||
<field name="location" optional="1"/>
|
||||
</tree>
|
||||
8
modules/incoterm/view/party_form_purchase.xml
Normal file
8
modules/incoterm/view/party_form_purchase.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='supplier']" position="inside">
|
||||
<field name="purchase_incoterms" colspan="4"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/incoterm/view/party_form_sale.xml
Normal file
8
modules/incoterm/view/party_form_sale.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='sale']" position="inside">
|
||||
<field name="sale_incoterms" colspan="4"/>
|
||||
</xpath>
|
||||
</data>
|
||||
19
modules/incoterm/view/party_incoterm_form.xml
Normal file
19
modules/incoterm/view/party_incoterm_form.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form cursor="incoterm">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="party"/>
|
||||
<field name="party"/>
|
||||
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</form>
|
||||
10
modules/incoterm/view/party_incoterm_list.xml
Normal file
10
modules/incoterm/view/party_incoterm_list.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree sequence="sequence">
|
||||
<field name="party" expand="2"/>
|
||||
<field name="company" expand="2"/>
|
||||
<field name="type"/>
|
||||
<field name="incoterm" expand="1"/>
|
||||
<field name="incoterm_location" expand="1"/>
|
||||
</tree>
|
||||
12
modules/incoterm/view/purchase_form.xml
Normal file
12
modules/incoterm/view/purchase_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='info']/label[@name='invoice_method']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
12
modules/incoterm/view/purchase_request_quotation_form.xml
Normal file
12
modules/incoterm/view/purchase_request_quotation_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other_info']" position="inside">
|
||||
<newline/>
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/incoterm/view/sale_form.xml
Normal file
11
modules/incoterm/view/sale_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other']/label[@name='invoice_method']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
12
modules/incoterm/view/sale_opportunity_form.xml
Normal file
12
modules/incoterm/view/sale_opportunity_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="///field[@name='payment_term']" position="after">
|
||||
<newline/>
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/incoterm/view/stock_shipment_in_form.xml
Normal file
11
modules/incoterm/view/stock_shipment_in_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other']/label[@name='received_by']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/incoterm/view/stock_shipment_in_return_form.xml
Normal file
11
modules/incoterm/view/stock_shipment_in_return_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other']/label[@name='assigned_by']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/incoterm/view/stock_shipment_out_form.xml
Normal file
11
modules/incoterm/view/stock_shipment_out_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other']/label[@name='picked_by']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/incoterm/view/stock_shipment_out_return_form.xml
Normal file
11
modules/incoterm/view/stock_shipment_out_return_form.xml
Normal file
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//page[@id='other']/label[@name='received_by']" position="before">
|
||||
<label name="incoterm"/>
|
||||
<field name="incoterm" widget="selection" help_field="name"/>
|
||||
<label name="incoterm_location"/>
|
||||
<field name="incoterm_location"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/incoterm/view/web_shop_form.xml
Normal file
10
modules/incoterm/view/web_shop_form.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='guest_party']" position="after">
|
||||
<newline/>
|
||||
<label name="default_incoterm"/>
|
||||
<field name="default_incoterm"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user