This file is indexed.

/usr/share/pyshared/trytond/modules/company_work_time/company.py is in tryton-modules-company-work-time 2.2.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
#This file is part of Tryton.  The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
"Company"
from trytond.model import ModelView, ModelSQL, fields


class Company(ModelSQL, ModelView):
    _name = 'company.company'

    hours_per_work_day = fields.Float("Hours per Work Day", required=True)
    hours_per_work_week = fields.Float("Hours per Work Week", required=True)
    hours_per_work_month = fields.Float("Hours per Work Month", required=True)
    hours_per_work_year = fields.Float("Hours per Work Year", required=True)

    def default_hours_per_work_day(self):
        return 8

    def default_hours_per_work_week(self):
        return 40

    def default_hours_per_work_month(self):
        return 160

    def default_hours_per_work_year(self):
        return 1920

Company()