first commit
This commit is contained in:
29
modules/sale_point/view/cash_session_form.xml
Normal file
29
modules/sale_point/view/cash_session_form.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?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="point"/>
|
||||
<field name="point"/>
|
||||
<label name="previous_session"/>
|
||||
<field name="previous_session"/>
|
||||
<label name="next_session"/>
|
||||
<field name="next_session"/>
|
||||
|
||||
<label name="start_amount"/>
|
||||
<field name="start_amount"/>
|
||||
<label name="balance"/>
|
||||
<field name="balance"/>
|
||||
<label name="end_amount"/>
|
||||
<field name="end_amount"/>
|
||||
|
||||
<field name="payments" colspan="3"/>
|
||||
<field name="transfers" colspan="3"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group id="buttons" col="-1" colspan="4">
|
||||
<button name="open" icon="tryton-back"/>
|
||||
<button name="close" icon="tryton-close"/>
|
||||
<button name="post" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
12
modules/sale_point/view/cash_session_list.xml
Normal file
12
modules/sale_point/view/cash_session_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="point" expand="1"/>
|
||||
<field name="start_amount" optional="0"/>
|
||||
<field name="balance" optional="0"/>
|
||||
<field name="end_amount" optional="0"/>
|
||||
<field name="state"/>
|
||||
<button name="close"/>
|
||||
<button name="post" multiple="1"/>
|
||||
</tree>
|
||||
25
modules/sale_point/view/cash_transfer_form.xml
Normal file
25
modules/sale_point/view/cash_transfer_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>
|
||||
<label name="point"/>
|
||||
<field name="point"/>
|
||||
<label name="session"/>
|
||||
<field name="session"/>
|
||||
|
||||
<label name="type"/>
|
||||
<field name="type" widget="selection"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group id="buttons" col="-1" colspan="2">
|
||||
<button name="post" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
12
modules/sale_point/view/cash_transfer_list.xml
Normal file
12
modules/sale_point/view/cash_transfer_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="point" expand="1"/>
|
||||
<field name="session" expand="1"/>
|
||||
<field name="date"/>
|
||||
<field name="type"/>
|
||||
<field name="amount"/>
|
||||
<field name="state"/>
|
||||
<button name="post" multiple="1"/>
|
||||
</tree>
|
||||
14
modules/sale_point/view/cash_transfer_type_form.xml
Normal file
14
modules/sale_point/view/cash_transfer_type_form.xml
Normal 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>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="account"/>
|
||||
<field name="account"/>
|
||||
</form>
|
||||
9
modules/sale_point/view/cash_transfer_type_list.xml
Normal file
9
modules/sale_point/view/cash_transfer_type_list.xml
Normal 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="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="journal" expand="1" optional="1"/>
|
||||
<field name="account" expand="1" optional="0"/>
|
||||
</tree>
|
||||
13
modules/sale_point/view/payment_form.xml
Normal file
13
modules/sale_point/view/payment_form.xml
Normal 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="sale"/>
|
||||
<field name="sale" colspan="3"/>
|
||||
<label name="method"/>
|
||||
<field name="method" widget="selection"/>
|
||||
<label name="session"/>
|
||||
<field name="session"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
</form>
|
||||
10
modules/sale_point/view/payment_form_wizard.xml
Normal file
10
modules/sale_point/view/payment_form_wizard.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. -->
|
||||
<form>
|
||||
<label name="method"/>
|
||||
<field name="method" widget="selection"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
<field name="sale" colspan="4" invisible="1"/>
|
||||
</form>
|
||||
8
modules/sale_point/view/payment_list.xml
Normal file
8
modules/sale_point/view/payment_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. -->
|
||||
<tree>
|
||||
<field name="sale"/>
|
||||
<field name="method"/>
|
||||
<field name="amount" expand="1"/>
|
||||
</tree>
|
||||
17
modules/sale_point/view/payment_method_form.xml
Normal file
17
modules/sale_point/view/payment_method_form.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?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="account"/>
|
||||
<field name="account"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
|
||||
<label name="cash"/>
|
||||
<field name="cash"/>
|
||||
</form>
|
||||
9
modules/sale_point/view/payment_method_list.xml
Normal file
9
modules/sale_point/view/payment_method_list.xml
Normal 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="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="2"/>
|
||||
<field name="account" expand="1" optional="0"/>
|
||||
<field name="cash" optional="0"/>
|
||||
</tree>
|
||||
25
modules/sale_point/view/point_form.xml
Normal file
25
modules/sale_point/view/point_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>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="journal"/>
|
||||
<field name="journal" widget="selection"/>
|
||||
<label name="tax_included"/>
|
||||
<field name="tax_included"/>
|
||||
<label name="sequence"/>
|
||||
<field name="sequence"/>
|
||||
<newline/>
|
||||
<label name="address"/>
|
||||
<field name="address"/>
|
||||
<newline/>
|
||||
<label name="storage_location"/>
|
||||
<field name="storage_location"/>
|
||||
<label name="return_location"/>
|
||||
<field name="return_location"/>
|
||||
<label name="customer_location"/>
|
||||
<field name="customer_location"/>
|
||||
</form>
|
||||
11
modules/sale_point/view/point_list.xml
Normal file
11
modules/sale_point/view/point_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="name" expand="1"/>
|
||||
<field name="storage_location" optional="0"/>
|
||||
<field name="return_location" optional="1"/>
|
||||
<field name="customer_location" optional="1"/>
|
||||
<field name="journal" optional="1"/>
|
||||
</tree>
|
||||
47
modules/sale_point/view/sale_form.xml
Normal file
47
modules/sale_point/view/sale_form.xml
Normal file
@@ -0,0 +1,47 @@
|
||||
<?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="point"/>
|
||||
<field name="point"/>
|
||||
<label name="number"/>
|
||||
<field name="number"/>
|
||||
<label name="date"/>
|
||||
<field name="date"/>
|
||||
<notebook colspan="4">
|
||||
<page string="Sale" id="sale">
|
||||
<field name="lines" colspan="4"/>
|
||||
<group col="2" colspan="2" id="states" yfill="1" yalign="1">
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
</group>
|
||||
<group col="2" colspan="2" id="amounts" yfill="1">
|
||||
<label name="total_tax" xalign="1.0" xexpand="1" xfill="0"/>
|
||||
<field name="total_tax" xalign="1.0" xexpand="0"/>
|
||||
<label name="total" xalign="1.0" xexpand="1" xfill="0"/>
|
||||
<field name="total" xalign="1.0" xexpand="0"/>
|
||||
<label name="amount_to_pay" xalign="1.0" xexpand="1" xfill="0"/>
|
||||
<field name="amount_to_pay" xalign="1.0" xexpand="0"/>
|
||||
</group>
|
||||
</page>
|
||||
<page string="Payments" id="payments">
|
||||
<field name="payments" colspan="4"/>
|
||||
</page>
|
||||
<page string="Other Info" id="other">
|
||||
<label name="company"/>
|
||||
<field name="company"/>
|
||||
<label name="employee"/>
|
||||
<field name="employee"/>
|
||||
<label name="move"/>
|
||||
<field name="move"/>
|
||||
</page>
|
||||
</notebook>
|
||||
<label id="empty" colspan="2"/>
|
||||
<group col="-1" colspan="2" id="buttons">
|
||||
<button name="cancel" icon="tryton-cancel"/>
|
||||
<button name="open" icon="tryton-back"/>
|
||||
<button name="pay" icon="tryton-forward"/>
|
||||
<button name="process" icon="tryton-forward"/>
|
||||
<button name="post" icon="tryton-ok"/>
|
||||
</group>
|
||||
</form>
|
||||
24
modules/sale_point/view/sale_line_form.xml
Normal file
24
modules/sale_point/view/sale_line_form.xml
Normal file
@@ -0,0 +1,24 @@
|
||||
<?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="sale"/>
|
||||
<field name="sale" colspan="3"/>
|
||||
|
||||
<label name="product"/>
|
||||
<field name="product"/>
|
||||
<label name="quantity"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
|
||||
<notebook colspan="4">
|
||||
<page string="General" id="general">
|
||||
<label name="unit_price"/>
|
||||
<field name="unit_price"/>
|
||||
<label name="amount"/>
|
||||
<field name="amount"/>
|
||||
</page>
|
||||
<page name="moves">
|
||||
<field name="moves" colspan="4"/>
|
||||
</page>
|
||||
</notebook>
|
||||
</form>
|
||||
10
modules/sale_point/view/sale_line_list.xml
Normal file
10
modules/sale_point/view/sale_line_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>
|
||||
<field name="sale"/>
|
||||
<field name="product" expand="1"/>
|
||||
<field name="unit_price"/>
|
||||
<field name="quantity" symbol="unit"/>
|
||||
<field name="amount"/>
|
||||
</tree>
|
||||
11
modules/sale_point/view/sale_list.xml
Normal file
11
modules/sale_point/view/sale_list.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. -->
|
||||
<tree>
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="point" expand="1" optional="1"/>
|
||||
<field name="number" expand="2"/>
|
||||
<field name="date" optional="0"/>
|
||||
<field name="state"/>
|
||||
<button name="post" multiple="1"/>
|
||||
</tree>
|
||||
9
modules/sale_point/view/template_form.xml
Normal file
9
modules/sale_point/view/template_form.xml
Normal 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='general']/field[@name='list_price']" position="after">
|
||||
<label name="gross_price"/>
|
||||
<field name="gross_price"/>
|
||||
</xpath>
|
||||
</data>
|
||||
8
modules/sale_point/view/template_tree.xml
Normal file
8
modules/sale_point/view/template_tree.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="/tree/field[@name='list_price']" position="after">
|
||||
<field name="gross_price" optional="0"/>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user