Initial import from Docker volume

This commit is contained in:
root
2025-12-26 13:11:43 +00:00
commit 4998dc066a
13336 changed files with 1767801 additions and 0 deletions

41
modules/company/__init__.py Executable file
View File

@@ -0,0 +1,41 @@
# 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.pool import Pool
from . import company, ir, party, res
from .company import CompanyReport
__all__ = ['register', 'CompanyReport']
def register():
Pool.register(
company.Company,
company.Employee,
company.CompanyConfigStart,
res.UserCompany,
res.UserEmployee,
res.User,
ir.Sequence,
ir.SequenceStrict,
ir.Date,
ir.Rule,
ir.Cron,
ir.CronCompany,
ir.EmailTemplate,
party.Configuration,
party.ConfigurationLang,
party.Party,
party.PartyLang,
party.ContactMechanism,
party.ContactMechanismLanguage,
module='company', type_='model')
Pool.register(
company.CompanyConfig,
party.Replace,
party.Erase,
module='company', type_='wizard')
Pool.register(
party.LetterReport,
module='company', type_='report')