This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/purchase_request/view/purchase_request_form.xml is in tryton-modules-purchase-request 4.6.0-1.

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
<?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>
    <separator string="Product Info" colspan="4" id="product"/>
    <label name="product"/>
    <field name="product"/>
    <newline/>
    <label name="description"/>
    <field name="description" colspan="3" yexpand="0"/>
    <label name="quantity"/>
    <field name="quantity"/>
    <label name="uom"/>
    <field name="uom"/>
    <label name="computed_quantity"/>
    <field name="computed_quantity"/>
    <label name="computed_uom"/>
    <field name="computed_uom"/>
    <separator string="Supply Info" colspan="4" id="supply"/>
    <label name="party"/>
    <field name="party"/>
    <newline/>
    <label name="warehouse"/>
    <field name="warehouse"/>
    <label name="company"/>
    <field name="company"/>
    <label name="purchase_date"/>
    <field name="purchase_date"/>
    <label name="supply_date"/>
    <field name="supply_date"/>
    <label name="purchase"/>
    <field name="purchase"/>
    <label name="stock_level"/>
    <field name="stock_level"/>
    <label name="origin"/>
    <field name="origin"/>
    <label name="state"/>
    <field name="state"/>
    <group col="-1" colspan="2" id="buttons">
        <button name="handle_purchase_cancellation_exception"
            string="Handle Purchase Cancellation"
            icon="tryton-go-next"/>
    </group>
</form>