Initial import from Docker volume
This commit is contained in:
21
modules/stock/view/configuration_form.xml
Executable file
21
modules/stock/view/configuration_form.xml
Executable file
@@ -0,0 +1,21 @@
|
||||
<?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>
|
||||
<separator id="shipment" colspan="4" string="Shipments"/>
|
||||
<label name="shipment_in_sequence" string="Supplier Sequence"/>
|
||||
<field name="shipment_in_sequence"/>
|
||||
<label name="shipment_in_return_sequence" string="Supplier Return Sequence"/>
|
||||
<field name="shipment_in_return_sequence"/>
|
||||
<label name="shipment_out_sequence" string="Customer Sequence"/>
|
||||
<field name="shipment_out_sequence"/>
|
||||
<label name="shipment_out_return_sequence" string="Customer Return Sequence"/>
|
||||
<field name="shipment_out_return_sequence"/>
|
||||
<label name="shipment_internal_sequence"/>
|
||||
<field name="shipment_internal_sequence" string="Internal Sequence"/>
|
||||
<label name="shipment_internal_transit"/>
|
||||
<field name="shipment_internal_transit" string="Internal Transit"/>
|
||||
<separator id="inventory" colspan="4" string="Inventory"/>
|
||||
<label name="inventory_sequence"/>
|
||||
<field name="inventory_sequence" string="Sequence"/>
|
||||
</form>
|
||||
12
modules/stock/view/inventory_count_quantity_form.xml
Executable file
12
modules/stock/view/inventory_count_quantity_form.xml
Executable 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. -->
|
||||
<form col="2">
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="total_quantity"/>
|
||||
<field name="total_quantity" symbol="unit"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
<field name="line" colspan="-1" invisible="1"/>
|
||||
</form>
|
||||
7
modules/stock/view/inventory_count_search_form.xml
Executable file
7
modules/stock/view/inventory_count_search_form.xml
Executable file
@@ -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. -->
|
||||
<form col="2">
|
||||
<label name="search"/>
|
||||
<field name="search"/>
|
||||
</form>
|
||||
28
modules/stock/view/inventory_form.xml
Executable file
28
modules/stock/view/inventory_form.xml
Executable file
@@ -0,0 +1,28 @@
|
||||
<?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="location"/>
|
||||
<field name="location"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="empty_quantity"/>
|
||||
<field name="empty_quantity"/>
|
||||
|
||||
<field name="lines" colspan="4" view_ids="stock.inventory_line_view_list_simple"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group colspan="2" col="-1" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="complete_lines" icon="tryton-add"/>
|
||||
<button name="do_count" icon="tryton-launch"/>
|
||||
<button name="confirm" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
18
modules/stock/view/inventory_line_form.xml
Executable file
18
modules/stock/view/inventory_line_form.xml
Executable file
@@ -0,0 +1,18 @@
|
||||
<?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="4">
|
||||
<label name="inventory"/>
|
||||
<field name="inventory" colspan="3"/>
|
||||
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<newline/>
|
||||
|
||||
<label name="expected_quantity"/>
|
||||
<field name="expected_quantity" symbol="unit"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
|
||||
<field name="moves" colspan="4"/>
|
||||
</form>
|
||||
8
modules/stock/view/inventory_line_list_simple.xml
Executable file
8
modules/stock/view/inventory_line_list_simple.xml
Executable 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. -->
|
||||
<tree editable="1">
|
||||
<field name="product" expand="1"/>
|
||||
<field name="expected_quantity" symbol="unit"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
11
modules/stock/view/inventory_line_tree.xml
Executable file
11
modules/stock/view/inventory_line_tree.xml
Executable 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. -->
|
||||
<tree editable="1">
|
||||
<field name="inventory" expand="1"/>
|
||||
<field name="inventory_location" expand="1"/>
|
||||
<field name="inventory_date"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="expected_quantity" symbol="unit"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
10
modules/stock/view/inventory_tree.xml
Executable file
10
modules/stock/view/inventory_tree.xml
Executable 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>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="location" expand="2"/>
|
||||
<field name="date"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
43
modules/stock/view/location_form.xml
Executable file
43
modules/stock/view/location_form.xml
Executable file
@@ -0,0 +1,43 @@
|
||||
<?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="code"/>
|
||||
<field name="code"/>
|
||||
<label name="type"/>
|
||||
<field name="type"/>
|
||||
<label name="active"/>
|
||||
<field name="active"/>
|
||||
<label name="lat"/>
|
||||
<field name="lat"/>
|
||||
<label name="lon"/>
|
||||
<field name="lon"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
<label name="flat_childs"/>
|
||||
<field name="flat_childs"/>
|
||||
<newline/>
|
||||
<label name="address"/>
|
||||
<field name="address"/>
|
||||
<label name="allow_pickup"/>
|
||||
<field name="allow_pickup"/>
|
||||
|
||||
<label name="input_location"/>
|
||||
<field name="input_location"/>
|
||||
<newline/>
|
||||
<label name="output_location"/>
|
||||
<field name="output_location"/>
|
||||
<newline/>
|
||||
<label name="storage_location"/>
|
||||
<field name="storage_location"/>
|
||||
<label name="picking_location"/>
|
||||
<field name="picking_location"/>
|
||||
|
||||
<label name="lost_found_location"/>
|
||||
<field name="lost_found_location"/>
|
||||
<field name="waste_locations" colspan="4"/>
|
||||
|
||||
<field name="childs" colspan="4"/>
|
||||
</form>
|
||||
13
modules/stock/view/location_lead_time_form.xml
Executable file
13
modules/stock/view/location_lead_time_form.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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="warehouse_from"/>
|
||||
<field name="warehouse_from"/>
|
||||
<label name="warehouse_to"/>
|
||||
<field name="warehouse_to"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<label name="lead_time"/>
|
||||
<field name="lead_time"/>
|
||||
</form>
|
||||
8
modules/stock/view/location_lead_time_list.xml
Executable file
8
modules/stock/view/location_lead_time_list.xml
Executable 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. -->
|
||||
<tree sequence="sequence" editable="1">
|
||||
<field name="warehouse_from" expand="1"/>
|
||||
<field name="warehouse_to" expand="1"/>
|
||||
<field name="lead_time"/>
|
||||
</tree>
|
||||
7
modules/stock/view/location_list.xml
Executable file
7
modules/stock/view/location_list.xml
Executable file
@@ -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="rec_name" expand="1"/>
|
||||
<field name="type" optional="0"/>
|
||||
</tree>
|
||||
14
modules/stock/view/location_quantity_form.xml
Executable file
14
modules/stock/view/location_quantity_form.xml
Executable file
@@ -0,0 +1,14 @@
|
||||
<?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="5"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity" symbol="quantity_uom"/>
|
||||
<label name="forecast_quantity"/>
|
||||
<field name="forecast_quantity" symbol="quantity_uom"/>
|
||||
<label name="cost_value"/>
|
||||
<field name="cost_value"/>
|
||||
<field name="childs" colspan="6" view_ids="stock.location_quantity_view_list,stock.location_quantity_view_form"/>
|
||||
</form>
|
||||
9
modules/stock/view/location_quantity_tree.xml
Executable file
9
modules/stock/view/location_quantity_tree.xml
Executable file
@@ -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="name" expand="1"/>
|
||||
<field name="quantity" symbol="quantity_uom"/>
|
||||
<field name="forecast_quantity" symbol="quantity_uom"/>
|
||||
<field name="cost_value"/>
|
||||
</tree>
|
||||
7
modules/stock/view/location_tree.xml
Executable file
7
modules/stock/view/location_tree.xml
Executable file
@@ -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 keyword_open="1">
|
||||
<field name="rec_name" expand="1"/>
|
||||
<field name="type" optional="1"/>
|
||||
</tree>
|
||||
50
modules/stock/view/move_form.xml
Executable file
50
modules/stock/view/move_form.xml
Executable file
@@ -0,0 +1,50 @@
|
||||
<?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="4">
|
||||
<label name="shipment"/>
|
||||
<field name="shipment" colspan="3"/>
|
||||
<label name="from_location"/>
|
||||
<field name="from_location"/>
|
||||
<label name="to_location"/>
|
||||
<field name="to_location"/>
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
|
||||
<notebook colspan="4">
|
||||
<page string="Move" id="move">
|
||||
<label name="quantity"/>
|
||||
<field name="quantity"/>
|
||||
<label name="unit"/>
|
||||
<field name="unit"/>
|
||||
|
||||
<label name="unit_price"/>
|
||||
<field name="unit_price"/>
|
||||
<label name="currency"/>
|
||||
<field name="currency"/>
|
||||
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="origin"/>
|
||||
<field name="origin"/>
|
||||
|
||||
<separator string="Cost" id="cost" colspan="4"/>
|
||||
<label name="cost_price"/>
|
||||
<field name="cost_price"/>
|
||||
</page>
|
||||
</notebook>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft" icon="tryton-clear"/>
|
||||
<button name="do" icon="tryton-forward"/>
|
||||
</group>
|
||||
</form>
|
||||
11
modules/stock/view/move_list_shipment.xml
Executable file
11
modules/stock/view/move_list_shipment.xml
Executable 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. -->
|
||||
<tree>
|
||||
<field name="shipment" expand="2"/>
|
||||
<field name="from_location" expand="1"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
<field name="to_location" expand="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
12
modules/stock/view/move_list_shipment_in.xml
Executable file
12
modules/stock/view/move_list_shipment_in.xml
Executable 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="shipment" expand="2"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="from_location" expand="1"/>
|
||||
<field name="product" expand="2"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
<field name="to_location" expand="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
18
modules/stock/view/move_tree.xml
Executable file
18
modules/stock/view/move_tree.xml
Executable file
@@ -0,0 +1,18 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="origin" expand="1" optional="1"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="from_location" expand="1"/>
|
||||
<field name="to_location" expand="1"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="state"/>
|
||||
<button name="cancel"/>
|
||||
<button name="draft"/>
|
||||
<button name="do"/>
|
||||
</tree>
|
||||
7
modules/stock/view/move_tree_simple.xml
Executable file
7
modules/stock/view/move_tree_simple.xml
Executable file
@@ -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="product" expand="1"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</tree>
|
||||
10
modules/stock/view/party_address_form.xml
Executable file
10
modules/stock/view/party_address_form.xml
Executable 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="//group[@id='checkboxes']/field[@name='active']" position="after">
|
||||
<label name="delivery"/>
|
||||
<field name="delivery" xexpand="0" width="25"/>
|
||||
</xpath>
|
||||
</data>
|
||||
|
||||
8
modules/stock/view/party_address_tree.xml
Executable file
8
modules/stock/view/party_address_tree.xml
Executable 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="/tree/field[@name='subdivision']" position="after">
|
||||
<field name="delivery" optional="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/stock/view/party_contact_mechanism_form.xml
Executable file
9
modules/stock/view/party_contact_mechanism_form.xml
Executable file
@@ -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="//group[@id='checkboxes']/field[@name='active']" position="after">
|
||||
<label name="delivery"/>
|
||||
<field name="delivery" xexpand="0" width="25"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/party_contact_mechanism_tree.xml
Executable file
8
modules/stock/view/party_contact_mechanism_tree.xml
Executable 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="delivery" optional="1"/>
|
||||
</xpath>
|
||||
</data>
|
||||
20
modules/stock/view/party_form.xml
Executable file
20
modules/stock/view/party_form.xml
Executable file
@@ -0,0 +1,20 @@
|
||||
<?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="//group[@id='links']" position="inside">
|
||||
<link icon="tryton-shipment-out" name="stock.act_shipment_out_form2" empty="hide"/>
|
||||
<link icon="tryton-shipment-in" name="stock.act_shipment_out_form3" empty="hide"/>
|
||||
</xpath>
|
||||
<xpath expr="/form/notebook" position="inside">
|
||||
<page string="Stock" id="stock">
|
||||
<label name="customer_location"/>
|
||||
<field name="customer_location"/>
|
||||
<label name="supplier_location"/>
|
||||
<field name="supplier_location"/>
|
||||
|
||||
<separator name="delivered_to_warehouses" colspan="4"/>
|
||||
<field name="delivered_to_warehouses" colspan="4" widget="multiselection"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
13
modules/stock/view/period_cache_form.xml
Executable file
13
modules/stock/view/period_cache_form.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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="period"/>
|
||||
<field name="period" colspan="5"/>
|
||||
<label name="location"/>
|
||||
<field name="location"/>
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="internal_quantity"/>
|
||||
<field name="internal_quantity"/>
|
||||
</form>
|
||||
9
modules/stock/view/period_cache_list.xml
Executable file
9
modules/stock/view/period_cache_list.xml
Executable file
@@ -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="period"/>
|
||||
<field name="location"/>
|
||||
<field name="product"/>
|
||||
<field name="internal_quantity"/>
|
||||
</tree>
|
||||
15
modules/stock/view/period_form.xml
Executable file
15
modules/stock/view/period_form.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="draft" icon="tryton-clear"/>
|
||||
<button name="close" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
8
modules/stock/view/period_list.xml
Executable file
8
modules/stock/view/period_list.xml
Executable 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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="date"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
11
modules/stock/view/product_by_location_context_form.xml
Executable file
11
modules/stock/view/product_by_location_context_form.xml
Executable 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. -->
|
||||
<form>
|
||||
<label name="forecast_date"/>
|
||||
<field name="forecast_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<field name="stock_date_end" invisible="1" colspan="4"/>
|
||||
</form>
|
||||
15
modules/stock/view/product_cost_price_revision_form.xml
Executable file
15
modules/stock/view/product_cost_price_revision_form.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="cost_price">
|
||||
<label name="template"/>
|
||||
<field name="template"/>
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="cost_price"/>
|
||||
<field name="cost_price" colspan="3"/>
|
||||
</form>
|
||||
10
modules/stock/view/product_cost_price_revision_list.xml
Executable file
10
modules/stock/view/product_cost_price_revision_list.xml
Executable 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>
|
||||
<field name="template" expand="1"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="date"/>
|
||||
<field name="cost_price" expand="2"/>
|
||||
<field name="company"/>
|
||||
</tree>
|
||||
9
modules/stock/view/product_modify_cost_price_start_form.xml
Executable file
9
modules/stock/view/product_modify_cost_price_start_form.xml
Executable file
@@ -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. -->
|
||||
<form col="2">
|
||||
<label name="cost_price"/>
|
||||
<field name="cost_price"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
</form>
|
||||
13
modules/stock/view/product_quantities_warehouse_context_form.xml
Executable file
13
modules/stock/view/product_quantities_warehouse_context_form.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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"/>
|
||||
<group col="-1" id="warehouse">
|
||||
<field name="warehouse"/>
|
||||
<label name="stock_skip_warehouse"/>
|
||||
<field name="stock_skip_warehouse"/>
|
||||
</group>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
</form>
|
||||
12
modules/stock/view/product_quantities_warehouse_graph.xml
Executable file
12
modules/stock/view/product_quantities_warehouse_graph.xml
Executable 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. -->
|
||||
<graph type="line"
|
||||
legend="0">
|
||||
<x>
|
||||
<field name="date"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="quantity" empty="0" interpolation="constant-left" fill="1"/>
|
||||
</y>
|
||||
</graph>
|
||||
8
modules/stock/view/product_quantities_warehouse_list.xml
Executable file
8
modules/stock/view/product_quantities_warehouse_list.xml
Executable 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. -->
|
||||
<tree keyword_open="1">
|
||||
<field name="product" expand="1"/>
|
||||
<field name="date"/>
|
||||
<field name="quantity" expand="2"/>
|
||||
</tree>
|
||||
13
modules/stock/view/product_quantities_warehouse_move_list.xml
Executable file
13
modules/stock/view/product_quantities_warehouse_move_list.xml
Executable file
@@ -0,0 +1,13 @@
|
||||
<?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="product" expand="1"/>
|
||||
<field name="date"/>
|
||||
<field name="move"/>
|
||||
<field name="origin" expand="1"/>
|
||||
<field name="document" expand="1"/>
|
||||
<field name="cumulative_quantity_start" expand="2"/>
|
||||
<field name="quantity" expand="2"/>
|
||||
<field name="cumulative_quantity_end" expand="2"/>
|
||||
</tree>
|
||||
11
modules/stock/view/products_by_locations_context_form.xml
Executable file
11
modules/stock/view/products_by_locations_context_form.xml
Executable 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. -->
|
||||
<form>
|
||||
<label name="forecast_date"/>
|
||||
<field name="forecast_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<field name="stock_date_end" invisible="1" colspan="4"/>
|
||||
</form>
|
||||
10
modules/stock/view/products_by_locations_list.xml
Executable file
10
modules/stock/view/products_by_locations_list.xml
Executable 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>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity" symbol="default_uom"/>
|
||||
<field name="forecast_quantity" symbol="default_uom"/>
|
||||
<field name="cost_value" sum="1"/>
|
||||
<field name="consumable" tree_invisible="1"/>
|
||||
</tree>
|
||||
7
modules/stock/view/recompute_cost_price_start_form.xml
Executable file
7
modules/stock/view/recompute_cost_price_start_form.xml
Executable file
@@ -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. -->
|
||||
<form>
|
||||
<label name="from_"/>
|
||||
<field name="from_"/>
|
||||
</form>
|
||||
8
modules/stock/view/reporting_margin_category_graph_amount.xml
Executable file
8
modules/stock/view/reporting_margin_category_graph_amount.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="category"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/reporting_margin_category_graph_margin.xml
Executable file
8
modules/stock/view/reporting_margin_category_graph_margin.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="category"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/reporting_margin_category_graph_profit.xml
Executable file
8
modules/stock/view/reporting_margin_category_graph_profit.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="category"/>
|
||||
</xpath>
|
||||
</data>
|
||||
14
modules/stock/view/reporting_margin_category_list.xml
Executable file
14
modules/stock/view/reporting_margin_category_list.xml
Executable file
@@ -0,0 +1,14 @@
|
||||
<?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='cost']" position="before">
|
||||
<field name="category" expand="1"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='cost']" position="replace">
|
||||
<field name="cost"/>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='revenue']" position="replace">
|
||||
<field name="revenue"/>
|
||||
</xpath>
|
||||
</data>
|
||||
12
modules/stock/view/reporting_margin_category_tree.xml
Executable file
12
modules/stock/view/reporting_margin_category_tree.xml
Executable 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 keyword_open="1">
|
||||
<field name="name" expand="1"/>
|
||||
<field name="cost"/>
|
||||
<field name="revenue"/>
|
||||
<field name="profit"/>
|
||||
<field name="margin" factor="100">
|
||||
<suffix string="%" name="margin"/>
|
||||
</field>
|
||||
</tree>
|
||||
20
modules/stock/view/reporting_margin_context_form.xml
Executable file
20
modules/stock/view/reporting_margin_context_form.xml
Executable file
@@ -0,0 +1,20 @@
|
||||
<?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>
|
||||
<group id="dates" colspan="2" col="4">
|
||||
<label name="from_date"/>
|
||||
<field name="from_date"/>
|
||||
<label name="to_date"/>
|
||||
<field name="to_date"/>
|
||||
</group>
|
||||
<label name="period"/>
|
||||
<field name="period"/>
|
||||
|
||||
<group col="-1" colspan="2" id="checkboxes">
|
||||
<label name="include_lost"/>
|
||||
<field name="include_lost" xexpand="0" width="25"/>
|
||||
</group>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
</form>
|
||||
12
modules/stock/view/reporting_margin_main_graph_amount.xml
Executable file
12
modules/stock/view/reporting_margin_main_graph_amount.xml
Executable 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. -->
|
||||
<graph>
|
||||
<x>
|
||||
<field name="id"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="cost"/>
|
||||
<field name="revenue"/>
|
||||
</y>
|
||||
</graph>
|
||||
11
modules/stock/view/reporting_margin_main_graph_margin.xml
Executable file
11
modules/stock/view/reporting_margin_main_graph_margin.xml
Executable 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. -->
|
||||
<graph type="line">
|
||||
<x>
|
||||
<field name="id"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="margin" empty="0"/>
|
||||
</y>
|
||||
</graph>
|
||||
11
modules/stock/view/reporting_margin_main_graph_profit.xml
Executable file
11
modules/stock/view/reporting_margin_main_graph_profit.xml
Executable 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. -->
|
||||
<graph>
|
||||
<x>
|
||||
<field name="id"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="profit"/>
|
||||
</y>
|
||||
</graph>
|
||||
12
modules/stock/view/reporting_margin_main_list.xml
Executable file
12
modules/stock/view/reporting_margin_main_list.xml
Executable 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 keyword_open="1">
|
||||
<field name="cost" sum="1"/>
|
||||
<field name="revenue" sum="1"/>
|
||||
<field name="profit"/>
|
||||
<field name="margin" factor="100">
|
||||
<suffix string="%" name="margin"/>
|
||||
</field>
|
||||
<field name="margin_trend" expand="1"/>
|
||||
</tree>
|
||||
12
modules/stock/view/reporting_margin_main_time_series_graph_amount.xml
Executable file
12
modules/stock/view/reporting_margin_main_time_series_graph_amount.xml
Executable 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. -->
|
||||
<graph>
|
||||
<x>
|
||||
<field name="date"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="cost"/>
|
||||
<field name="revenue"/>
|
||||
</y>
|
||||
</graph>
|
||||
11
modules/stock/view/reporting_margin_main_time_series_graph_margin.xml
Executable file
11
modules/stock/view/reporting_margin_main_time_series_graph_margin.xml
Executable 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. -->
|
||||
<graph type="line">
|
||||
<x>
|
||||
<field name="date"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="margin" empty="0"/>
|
||||
</y>
|
||||
</graph>
|
||||
11
modules/stock/view/reporting_margin_main_time_series_graph_profit.xml
Executable file
11
modules/stock/view/reporting_margin_main_time_series_graph_profit.xml
Executable 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. -->
|
||||
<graph>
|
||||
<x>
|
||||
<field name="date"/>
|
||||
</x>
|
||||
<y>
|
||||
<field name="profit"/>
|
||||
</y>
|
||||
</graph>
|
||||
12
modules/stock/view/reporting_margin_main_time_series_list.xml
Executable file
12
modules/stock/view/reporting_margin_main_time_series_list.xml
Executable 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="date"/>
|
||||
<field name="cost" sum="1"/>
|
||||
<field name="revenue" sum="1"/>
|
||||
<field name="profit"/>
|
||||
<field name="margin" factor="100">
|
||||
<suffix string="%" name="margin"/>
|
||||
</field>
|
||||
</tree>
|
||||
8
modules/stock/view/reporting_margin_product_graph_amount.xml
Executable file
8
modules/stock/view/reporting_margin_product_graph_amount.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="product"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/reporting_margin_product_graph_margin.xml
Executable file
8
modules/stock/view/reporting_margin_product_graph_margin.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="product"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/reporting_margin_product_graph_profit.xml
Executable file
8
modules/stock/view/reporting_margin_product_graph_profit.xml
Executable 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="//x/field[@name='id']" position="replace">
|
||||
<field name="product"/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/stock/view/reporting_margin_product_list.xml
Executable file
9
modules/stock/view/reporting_margin_product_list.xml
Executable file
@@ -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='cost']" position="before">
|
||||
<field name="product" expand="1"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/reporting_margin_product_time_series_list.xml
Executable file
8
modules/stock/view/reporting_margin_product_time_series_list.xml
Executable 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='cost']" position="before">
|
||||
<field name="quantity" symbol="unit"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/stock/view/shipment_assign_partial_form.xml
Executable file
8
modules/stock/view/shipment_assign_partial_form.xml
Executable 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. -->
|
||||
<form col="2">
|
||||
<image name="tryton-warning" xexpand="0" xfill="0"/>
|
||||
<separator string="Unable to assign these products:" id="unable"/>
|
||||
<field name="moves" colspan="2" view_ids="stock.move_view_tree_simple"/>
|
||||
</form>
|
||||
52
modules/stock/view/shipment_in_form.xml
Executable file
52
modules/stock/view/shipment_in_form.xml
Executable file
@@ -0,0 +1,52 @@
|
||||
<?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="4" cursor="supplier">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="supplier"/>
|
||||
<field name="supplier"/>
|
||||
<!-- <label name="contact_address"/>
|
||||
<field name="contact_address"/>
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/> -->
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
<notebook colspan="6">
|
||||
<page name="incoming_moves">
|
||||
<field name="incoming_moves" colspan="4"
|
||||
view_ids="stock.move_view_list_shipment_in"/>
|
||||
</page>
|
||||
<page name="inventory_moves">
|
||||
<field name="inventory_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="warehouse_input"/>
|
||||
<field name="warehouse_input"/>
|
||||
<label name="warehouse_storage"/>
|
||||
<field name="warehouse_storage"/>
|
||||
|
||||
<label name="started_by"/>
|
||||
<field name="started_by"/>
|
||||
<label name="received_by"/>
|
||||
<field name="received_by"/>
|
||||
<label name="done_by"/>
|
||||
<field name="done_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="start"/>
|
||||
<button name="receive" icon="tryton-forward"/>
|
||||
<button name="do" icon="tryton-ok"/>
|
||||
<button name="draft" icon="tryton-undo"/>
|
||||
</group>
|
||||
</form>
|
||||
41
modules/stock/view/shipment_in_return_form.xml
Executable file
41
modules/stock/view/shipment_in_return_form.xml
Executable file
@@ -0,0 +1,41 @@
|
||||
<?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="4" cursor="supplier">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="supplier"/>
|
||||
<field name="supplier"/>
|
||||
<label name="delivery_address"/>
|
||||
<field name="delivery_address"/>
|
||||
<label name="from_location"/>
|
||||
<field name="from_location"/>
|
||||
<label name="to_location"/>
|
||||
<field name="to_location"/>
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
<notebook colspan="4">
|
||||
<page name="moves">
|
||||
<field name="moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="assigned_by"/>
|
||||
<field name="assigned_by"/>
|
||||
<label name="done_by"/>
|
||||
<field name="done_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft" icon="tryton-forward"/>
|
||||
<button name="wait"/>
|
||||
<button name="assign_wizard" icon="tryton-forward"/>
|
||||
<button name="do" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
15
modules/stock/view/shipment_in_return_tree.xml
Executable file
15
modules/stock/view/shipment_in_return_tree.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="reference" expand="1" optional="0"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="from_location" expand="1" optional="0"/>
|
||||
<field name="supplier" expand="1" optional="0"/>
|
||||
<field name="delivery_address" optional="0"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
15
modules/stock/view/shipment_in_tree.xml
Executable file
15
modules/stock/view/shipment_in_tree.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="reference" expand="1" optional="0"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="warehouse" expand="1" optional="0"/>
|
||||
<field name="supplier" expand="2" optional="0"/>
|
||||
<field name="contact_address" optional="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
9
modules/stock/view/shipment_in_tree_sequence.xml
Executable file
9
modules/stock/view/shipment_in_tree_sequence.xml
Executable file
@@ -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="himself" width="80"/>
|
||||
<field name="vessel" width="120"/>
|
||||
<field name="supplier" width="80"/>
|
||||
<button name="open_vf" string="🚢 See in Vessel Finder" type="object" width="100"/>
|
||||
</tree>
|
||||
52
modules/stock/view/shipment_internal_form.xml
Executable file
52
modules/stock/view/shipment_internal_form.xml
Executable file
@@ -0,0 +1,52 @@
|
||||
<?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="from_location">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="from_location"/>
|
||||
<field name="from_location"/>
|
||||
<label name="to_location"/>
|
||||
<field name="to_location"/>
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="planned_start_date"/>
|
||||
<field name="planned_start_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
<label name="effective_start_date"/>
|
||||
<field name="effective_start_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<notebook colspan="4">
|
||||
<page name="moves">
|
||||
<field name="moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page name="outgoing_moves">
|
||||
<field name="outgoing_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page name="incoming_moves">
|
||||
<field name="incoming_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="assigned_by"/>
|
||||
<field name="assigned_by"/>
|
||||
<label name="shipped_by"/>
|
||||
<field name="shipped_by"/>
|
||||
<label name="done_by"/>
|
||||
<field name="done_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft"/>
|
||||
<button name="wait"/>
|
||||
<button name="assign_wizard" icon="tryton-forward"/>
|
||||
<button name="ship" icon="tryton-ok"/>
|
||||
<button name="do" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
15
modules/stock/view/shipment_internal_tree.xml
Executable file
15
modules/stock/view/shipment_internal_tree.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="reference" expand="1" optional="0"/>
|
||||
<field name="planned_start_date" optional="0"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="from_location" expand="1"/>
|
||||
<field name="to_location" expand="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
52
modules/stock/view/shipment_out_form.xml
Executable file
52
modules/stock/view/shipment_out_form.xml
Executable file
@@ -0,0 +1,52 @@
|
||||
<?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="customer">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="customer"/>
|
||||
<field name="customer"/>
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
<notebook colspan="4">
|
||||
<page name="inventory_moves">
|
||||
<field name="inventory_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Outgoing Moves" id="outgoing_moves">
|
||||
<field name="outgoing_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="warehouse_storage"/>
|
||||
<field name="warehouse_storage"/>
|
||||
<label name="warehouse_output"/>
|
||||
<field name="warehouse_output"/>
|
||||
<label name="delivery_address"/>
|
||||
<field name="delivery_address"/>
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="picked_by"/>
|
||||
<field name="picked_by"/>
|
||||
<label name="packed_by"/>
|
||||
<field name="packed_by"/>
|
||||
<label name="done_by"/>
|
||||
<field name="done_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft"/>
|
||||
<button name="wait"/>
|
||||
<button name="assign_wizard" icon="tryton-forward"/>
|
||||
<button name="pick"/>
|
||||
<button name="pack" icon="tryton-forward"/>
|
||||
<button name="do" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
48
modules/stock/view/shipment_out_return_form.xml
Executable file
48
modules/stock/view/shipment_out_return_form.xml
Executable file
@@ -0,0 +1,48 @@
|
||||
<?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="4" cursor="customer">
|
||||
<label name="reference"/>
|
||||
<field name="reference"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="customer"/>
|
||||
<field name="customer"/>
|
||||
<label name="contact_address"/>
|
||||
<field name="contact_address"/>
|
||||
<label name="planned_date"/>
|
||||
<field name="planned_date"/>
|
||||
<label name="effective_date"/>
|
||||
<field name="effective_date"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
<notebook colspan="6">
|
||||
<page name="incoming_moves">
|
||||
<field name="incoming_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page name="inventory_moves">
|
||||
<field name="inventory_moves" colspan="4" view_ids="stock.move_view_list_shipment"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="warehouse_input"/>
|
||||
<field name="warehouse_input"/>
|
||||
<label name="warehouse_storage"/>
|
||||
<field name="warehouse_storage"/>
|
||||
|
||||
<label name="received_by"/>
|
||||
<field name="received_by"/>
|
||||
<label name="done_by"/>
|
||||
<field name="done_by"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="draft" icon="tryton-clear"/>
|
||||
<button name="receive" icon="tryton-forward"/>
|
||||
<button name="do" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
15
modules/stock/view/shipment_out_return_tree.xml
Executable file
15
modules/stock/view/shipment_out_return_tree.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="reference" expand="1" optional="0"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="warehouse" expand="1" optional="0"/>
|
||||
<field name="customer" expand="2" optional="0"/>
|
||||
<field name="contact_address" optional="1"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
15
modules/stock/view/shipment_out_tree.xml
Executable file
15
modules/stock/view/shipment_out_tree.xml
Executable file
@@ -0,0 +1,15 @@
|
||||
<?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="company" expand="1" optional="1"/>
|
||||
<field name="number" expand="1"/>
|
||||
<field name="reference" expand="1" optional="0"/>
|
||||
<field name="planned_date" optional="0"/>
|
||||
<field name="effective_date" optional="0"/>
|
||||
<field name="delay" optional="1"/>
|
||||
<field name="warehouse" expand="1" optional="0"/>
|
||||
<field name="customer" expand="2" optional="0"/>
|
||||
<field name="delivery_address" optional="0"/>
|
||||
<field name="state"/>
|
||||
</tree>
|
||||
9
modules/stock/view/user_form.xml
Executable file
9
modules/stock/view/user_form.xml
Executable file
@@ -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="/form/notebook/page[@id='user']/field[@name='employee']" position="after">
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse"/>
|
||||
</xpath>
|
||||
</data>
|
||||
9
modules/stock/view/user_form_preferences.xml
Executable file
9
modules/stock/view/user_form_preferences.xml
Executable file
@@ -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="/form/notebook/page[@id='user']/field[@name='employee']" position="after">
|
||||
<label name="warehouse"/>
|
||||
<field name="warehouse" help="The warehouse that you work at."/>
|
||||
</xpath>
|
||||
</data>
|
||||
17
modules/stock/view/vessel_form.xml
Executable file
17
modules/stock/view/vessel_form.xml
Executable file
@@ -0,0 +1,17 @@
|
||||
<form col="2">
|
||||
<label name="vessel_name"/>
|
||||
<field name="vessel_name"/>
|
||||
<newline/>
|
||||
<label name="vessel_type"/>
|
||||
<field name="vessel_type"/>
|
||||
<label name="vessel_imo"/>
|
||||
<field name="vessel_imo"/>
|
||||
<label name="vessel_year"/>
|
||||
<field name="vessel_year"/>
|
||||
<label name="vessel_premium"/>
|
||||
<field name="vessel_premium"/>
|
||||
<!--separator id="vessel" string="VESSEL INFORMATIONS" colspan="2"/-->
|
||||
<field name="vessel_info" colspan="2"/>
|
||||
<newline/>
|
||||
<!--field name="image" widget="image" height="400" width="400" xexpand="0" colspan="1"/-->
|
||||
</form>
|
||||
5
modules/stock/view/vessel_tree.xml
Executable file
5
modules/stock/view/vessel_tree.xml
Executable file
@@ -0,0 +1,5 @@
|
||||
<tree>
|
||||
<field name="vessel_name"/>
|
||||
<field name="vessel_imo"/>
|
||||
<field name="vessel_year"/>
|
||||
</tree>
|
||||
5
modules/stock/view/vessel_tree_sequence.xml
Executable file
5
modules/stock/view/vessel_tree_sequence.xml
Executable file
@@ -0,0 +1,5 @@
|
||||
<tree sequence="sequence" editable="1">
|
||||
<field name="vessel_name"/>
|
||||
<field name="vessel_imo"/>
|
||||
<field name="vessel_year"/>
|
||||
</tree>
|
||||
Reference in New Issue
Block a user