This file is indexed.

/usr/share/pyshared/trytond/modules/sale/view/sale_form.xml is in tryton-modules-sale 3.0.0-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?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="Sale" col="6">
    <label name="party"/>
    <field name="party"/>
    <label name="invoice_address"/>
    <field name="invoice_address"/>
    <label name="shipment_address"/>
    <field name="shipment_address"/>
    <label name="description"/>
    <field name="description" colspan="3"/>
    <label name="reference"/>
    <field name="reference"/>
    <notebook colspan="6">
        <page string="Sale" id="sale">
            <label name="sale_date"/>
            <field name="sale_date"/>
            <label name="payment_term"/>
            <field name="payment_term"/>
            <label name="warehouse"/>
            <field name="warehouse"/>
            <label name="currency"/>
            <field name="currency"/>
            <field name="lines" colspan="4"
                view_ids="sale.sale_line_view_tree_sequence"/>
            <group col="2" colspan="2" id="states">
                <label name="invoice_state"/>
                <field name="invoice_state"/>
                <label name="shipment_state"/>
                <field name="shipment_state"/>
                <label name="state"/>
                <field name="state"/>
            </group>
            <group col="2" colspan="2" id="amount_buttons">
                <label name="untaxed_amount" xalign="1.0" xexpand="1"/>
                <field name="untaxed_amount" xalign="1.0" xexpand="0"/>
                <label name="tax_amount" xalign="1.0" xexpand="1"/>
                <field name="tax_amount" xalign="1.0" xexpand="0"/>
                <label name="total_amount" xalign="1.0" xexpand="1"/>
                <field name="total_amount" xalign="1.0" xexpand="0"/>
                <group col="7" colspan="2" id="buttons">
                    <button name="cancel" string="Cancel"
                        icon="tryton-cancel"/>
                    <button name="draft" string="Draft"/>
                    <button name="quote" string="Quote"
                        icon="tryton-go-next"/>
                    <button name="handle_invoice_exception"
                        string="Handle Invoice Exception"
                        icon="tryton-go-next"/>
                    <button name="handle_shipment_exception"
                        string="Handle Shipment Exception"
                        icon="tryton-go-next"/>
                    <button name="confirm" string="Confirm"
                        icon="tryton-go-next"/>
                    <button name="process" string="Process"
                        icon="tryton-go-next"/>
                </group>
            </group>
        </page>
        <page string="Other Info" id="other">
            <label name="company"/>
            <field name="company"/>
            <newline/>
            <label name="invoice_method"/>
            <field name="invoice_method"/>
            <label name="shipment_method"/>
            <field name="shipment_method"/>
            <separator name="comment" colspan="4"/>
            <field name="comment" colspan="4" spell="Eval('party_lang')"/>
        </page>
        <page string="Invoices" id="invoices">
            <field name="invoices" colspan="4"/>
        </page>
        <page string="Shipments" id="shipments">
            <field name="moves" colspan="4"
                view_ids="sale.move_view_list_shipment"/>
            <field name="shipments" colspan="4"/>
            <field name="shipment_returns" colspan="4"/>
        </page>
    </notebook>
    <field name="currency_digits" invisible="1" colspan="6"/>
    <field name="party_lang" invisible="1" colspan="6"/>
</form>