This file is indexed.

/usr/lib/python2.7/dist-packages/trytond/modules/stock_lot_sled/stock.xml is in tryton-modules-stock-lot-sled 3.8.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
<?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="res.group" id="group_stock_force_expiration">
            <field name="name">Stock Force Expiration</field>
        </record>
        <record model="res.user-res.group"
            id="user_admin_group_stock_force_assignment">
            <field name="user" ref="res.user_admin"/>
            <field name="group" ref="group_stock_force_expiration"/>
        </record>

        <record model="ir.ui.view" id="stock_configuration_view_form">
            <field name="model">stock.configuration</field>
            <field name="inherit" ref="stock.stock_configuration_view_form"/>
            <field name="name">configuration_form</field>
        </record>

        <record model="ir.ui.view" id="lot_view_form">
            <field name="model">stock.lot</field>
            <field name="inherit" ref="stock_lot.lot_view_form"/>
            <field name="name">lot_form</field>
        </record>
        <record model="ir.ui.view" id="lot_view_tree">
            <field name="model">stock.lot</field>
            <field name="inherit" ref="stock_lot.lot_view_tree"/>
            <field name="name">lot_tree</field>
        </record>
    </data>
</tryton>