This file is indexed.

/usr/share/pyshared/trytond/modules/company/cron.py is in tryton-modules-company 2.2.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
38
39
40
41
42
43
44
45
46
#This file is part of Tryton.  The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
from trytond.model import ModelView, ModelSQL, fields
from trytond.transaction import Transaction
from trytond.pool import Pool


class Cron(ModelSQL, ModelView):
    "Cron"
    _name = "ir.cron"
    companies = fields.Many2Many('ir.cron-company.company', 'cron', 'company',
            'Companies', help='Companies registered for this cron')

    def _callback(self, cron):
        user_obj = Pool().get('res.user')
        if not cron.companies:
            return super(Cron, self)._callback(cron)
        # TODO replace with context
        for company in cron.companies:
            user_obj.write(cron.user.id, {
                'company': company.id,
                'main_company': company.id,
            })
            super(Cron, self)._callback(cron)
        user_obj.write(cron.user.id, {
            'company': False,
            'main_company': False,
        })

    def default_companies(self):
        company_obj = Pool().get('company.company')
        return company_obj.search([])

Cron()


class CronCompany(ModelSQL):
    'Cron - Company'
    _name = 'ir.cron-company.company'
    _table = 'cron_company_rel'
    cron = fields.Many2One('ir.cron', 'Cron', ondelete='CASCADE',
            required=True, select=1)
    company = fields.Many2One('company.company', 'Company', ondelete='CASCADE',
            required=True, select=1)

CronCompany()