first commit
This commit is contained in:
@@ -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='picking_location']" position="after">
|
||||
<field name="shipping_points" colspan="4"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/stock_shipping_point/view/stock_shipment_form.xml
Normal file
10
modules/stock_shipping_point/view/stock_shipment_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='warehouse']" position="after">
|
||||
<label name="shipping_point"/>
|
||||
<field name="shipping_point"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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="//field[@name='to_location']" position="after">
|
||||
<label name="shipping_point"/>
|
||||
<field name="shipping_point"/>
|
||||
<label name="incoming_shipping_point"/>
|
||||
<field name="incoming_shipping_point"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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="//field[@name='from_location']" position="after">
|
||||
<field name="shipping_point" expand="1" optional="0"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='to_location']" position="after">
|
||||
<field name="incoming_shipping_point" expand="1" optional="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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='warehouse']" position="after">
|
||||
<field name="shipping_point" expand="1" optional="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?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="warehouse" optional="1" expand="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
</tree>
|
||||
@@ -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>
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
|
||||
<label name="shipping_point"/>
|
||||
<field name="shipping_point"/>
|
||||
|
||||
<separator string="Criteria" id="criteria" colspan="4"/>
|
||||
|
||||
<label name="delivery_country"/>
|
||||
<field name="delivery_country"/>
|
||||
|
||||
<field name="contains_product_categories" colspan="4"/>
|
||||
</form>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?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='delivery_country']" position="after">
|
||||
<label name="contains_product_classification"/>
|
||||
<field name="contains_product_classification"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?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='contains_product_categories']" position="before">
|
||||
<label id="weight" string="Weight between:"/>
|
||||
<group id="weights" col="-1">
|
||||
<field name="min_weight"/>
|
||||
<label id="separator" string="-" xalign=".5"/>
|
||||
<field name="max_weight"/>
|
||||
<field name="weight_uom"/>
|
||||
</group>
|
||||
|
||||
<label id="volume" string="Volume between:"/>
|
||||
<group id="volumes" col="-1">
|
||||
<field name="min_volume"/>
|
||||
<label id="separator" string="-" xalign=".5"/>
|
||||
<field name="max_volume"/>
|
||||
<field name="volume_uom"/>
|
||||
</group>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?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="warehouse" optional="1" expand="1"/>
|
||||
<field name="shipping_point" expand="2"/>
|
||||
<field name="delivery_country" expand="1"/>
|
||||
<field name="contains_product_categories"/>
|
||||
</tree>
|
||||
@@ -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='delivery_country']" position="after">
|
||||
<field name="contains_product_classification" expand="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?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="warehouse" optional="1" expand="1"/>
|
||||
<field name="shipping_point" expand="2"/>
|
||||
<field name="delivery_country" expand="1"/>
|
||||
<field name="contains_product_categories"/>
|
||||
</tree>
|
||||
@@ -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="//field[@name='contains_product_categories']" position="before">
|
||||
<field name="min_weight" symbol="weight_uom"/>
|
||||
<field name="max_weight" symbol="weight_uom"/>
|
||||
<field name="min_volume" symbol="volume_uom"/>
|
||||
<field name="max_volume" symbol="volume_uom"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user