This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/stock/view/shipment_out_return_form.xml is in tryton-modules-stock 4.6.2-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
45
<?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 col="4" cursor="customer">
    <label name="reference"/>
    <field name="reference"/>
    <label name="number"/>
    <field name="number"/>
    <label name="customer"/>
    <field name="customer"/>
    <label name="delivery_address"/>
    <field name="delivery_address"/>
    <label name="planned_date"/>
    <field name="planned_date"/>
    <label name="effective_date"/>
    <field name="effective_date"/>
    <label name="company"/>
    <field name="company"/>
    <label name="warehouse"/>
    <field name="warehouse"/>
    <notebook colspan="6">
        <page string="Incoming Moves" id="incoming_moves">
            <field name="incoming_moves" colspan="4"/>
        </page>
        <page string="Inventory Moves" id="inventory_moves">
            <field name="inventory_moves" colspan="4"/>
        </page>
        <page string="Other Info" id="other">
            <label name="received_by"/>
            <field name="received_by"/>
            <label name="done_by"/>
            <field name="done_by"/>
        </page>
    </notebook>
    <group col="4" colspan="6" id="state_buttons">
        <label name="state"/>
        <field name="state"/>
        <group col="-1" colspan="2" id="buttons">
            <button string="Cancel" name="cancel" icon="tryton-cancel"/>
            <button string="Draft" name="draft" icon="tryton-clear"/>
            <button string="Received" name="receive" icon="tryton-go-next"/>
            <button string="Done" name="done" icon="tryton-ok"/>
        </group>
    </group>
</form>