File: document_incoming_form.xml

package info (click to toggle)
tryton-modules-document-incoming 7.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 540 kB
  • sloc: python: 791; xml: 290; makefile: 11; sh: 3
file content (44 lines) | stat: -rw-r--r-- 1,255 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
44
<?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="data" filename_visible="1"/>
    <label name="active"/>
    <field name="active"/>

    <label name="parent"/>
    <field name="parent"/>
    <newline/>

    <label name="source"/>
    <field name="source"/>
    <label name="company"/>
    <field name="company"/>

    <label name="type"/>
    <field name="type"/>
    <newline/>

    <label name="result"/>
    <field name="result" colspan="3"/>

    <notebook>
        <page name="data">
            <field name="data" widget="document" colspan="4"/>
        </page>
        <page name="children">
            <field name="children" colspan="4"/>
        </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-undo"/>
        <button name="split_wizard" icon="tryton-document-incoming-split"/>
        <button name="process" icon="tryton-ok"/>
        <button name="proceed" icon="tryton-refresh"/>
    </group>
</form>