File: shipment_in_return_form.xml

package info (click to toggle)
tryton-modules-stock 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,520 kB
  • ctags: 687
  • sloc: python: 4,855; xml: 2,134; makefile: 6
file content (27 lines) | stat: -rw-r--r-- 1,101 bytes parent folder | download
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
<?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 string="Supplier Return Shipment" col="4" cursor="from_location">
    <label name="reference"/>
    <field name="reference"/>
    <label name="code"/>
    <field name="code"/>
    <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"/>
    <field name="moves"  colspan="4"/>
    <label name="state"/>
    <field name="state"/>
    <group col="5" colspan="2" id="buttons">
        <button string="Cancel" name="cancel" icon="tryton-cancel"/>
        <button string="Draft" name="draft" icon="tryton-go-previous"/>
        <button string="Wait" name="wait"/>
        <button string="Assign" name="assign_wizard" icon="tryton-go-next"/>
        <button string="Done" name="done" icon="tryton-ok"/>
    </group>
</form>