File: purchase_line_form.xml

package info (click to toggle)
tryton-modules-purchase 5.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,252 kB
  • sloc: python: 2,723; xml: 1,049; makefile: 6; sh: 3
file content (43 lines) | stat: -rw-r--r-- 1,682 bytes parent folder | download | duplicates (2)
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
34
35
36
37
38
39
40
41
42
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 cursor="product">
    <label name="purchase"/>
    <field name="purchase" colspan="3"/>
    <label name="type"/>
    <field name="type"/>
    <label name="sequence"/>
    <field name="sequence"/>
    <notebook colspan="4">
        <page string="General" id="general">
            <label name="product"/>
            <field name="product"
                view_ids="purchase.product_view_list_purchase_line"/>
            <label name="product_supplier"/>
            <field name="product_supplier"/>
            <label name="quantity"/>
            <field name="quantity"/>
            <label name="unit"/>
            <field name="unit"/>
            <label name="unit_price"/>
            <field name="unit_price"/>
            <label name="amount"/>
            <field name="amount"/>
            <separator name="description" colspan="4"/>
            <field name="description" colspan="4"/>
            <label id="delivery_date" string="Delivery Date"/>
            <group id="delivery_date" col="-1">
                <field name="delivery_date" xexpand="0"/>
                <field name="delivery_date_store" xexpand="0"/>
                <field name="delivery_date_edit" xexpand="0"/>
            </group>
        </page>
        <page string="Taxes" id="taxes">
            <field name="taxes" colspan="4"/>
        </page>
        <page string="Notes" id="notes">
            <separator name="note" colspan="4"/>
            <field name="note" colspan="4"/>
        </page>
    </notebook>
</form>