This file is indexed.

/usr/share/pyshared/trytond/modules/sale/view/sale_line_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
<?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 Line" cursor="product">
    <label name="sale"/>
    <field name="sale" colspan="3"/>
    <notebook colspan="4">
        <page string="General" id="general">
            <label name="type"/>
            <field name="type"/>
            <label name="sequence"/>
            <field name="sequence"/>
            <label name="product"/>
            <field name="product"
                view_ids="sale.product_view_list_sale_line"/>
            <newline/>
            <label name="description"/>
            <field name="description" colspan="3"
                spell="Get(Eval('_parent_sale', {}), 'party_lang')"/>
            <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"/>
            <label name="delivery_date"/>
            <field name="delivery_date"/>
            <field name="taxes" colspan="4"/>
        </page>
        <page string="Notes" id="notes">
            <separator name="note" colspan="4"/>
            <field name="note" colspan="4"
                spell="Get(Eval('_parent_sale', {}), 'party_lang')"/>
        </page>
    </notebook>
    <field name="unit_digits" invisible="1" colspan="4"/>
</form>