File: shipment_internal_form.xml

package info (click to toggle)
tryton-modules-stock 7.0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,788 kB
  • sloc: python: 9,592; xml: 3,737; makefile: 11; sh: 3
file content (52 lines) | stat: -rw-r--r-- 1,951 bytes parent folder | download | duplicates (3)
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
44
45
46
47
48
49
50
51
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="done" icon="tryton-ok"/>
    </group>
</form>