This file is indexed.

/usr/lib/python3/dist-packages/trytond/modules/production/stock.xml is in tryton-modules-production 4.6.1-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
<?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. -->
<tryton>
    <data>

        <record model="ir.ui.view" id="location_view_form">
            <field name="model">stock.location</field>
            <field name="inherit" ref="stock.location_view_form"/>
            <field name="name">location_form</field>
        </record>

        <record model="ir.model.access" id="access_move_group_production">
            <field name="model" search="[('model', '=', 'stock.move')]"/>
            <field name="group" ref="group_production"/>
            <field name="perm_read" eval="True"/>
            <field name="perm_write" eval="True"/>
            <field name="perm_create" eval="True"/>
            <field name="perm_delete" eval="True"/>
        </record>

    </data>
    <data noupdate="1">

        <!-- Default locations -->
        <record model="stock.location" id="location_production">
            <field name="name">Production</field>
            <field name="code">PROD</field>
            <field name="type">production</field>
        </record>

        <record model="stock.location" id="stock.location_warehouse">
            <field name="production_location" ref="location_production"/>
        </record>

    </data>
</tryton>