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

View File

@@ -0,0 +1,39 @@
# 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 fields
from trytond.pool import PoolMeta
class Company(metaclass=PoolMeta):
__name__ = 'company.company'
hours_per_work_day = fields.Float("Hours per Work Day")
hours_per_work_week = fields.Float("Hours per Work Week")
hours_per_work_month = fields.Float("Hours per Work Month")
hours_per_work_year = fields.Float("Hours per Work Year")
@classmethod
def __register__(cls, module):
super().__register__(module)
table_h = cls.__table_handler__(module)
# Migration from 5.8:
for column in ['day', 'week', 'month', 'year']:
table_h.not_null_action(
'hours_per_work_%s' % column, action='remove')
@staticmethod
def default_hours_per_work_day():
return 8
@staticmethod
def default_hours_per_work_week():
return 40
@staticmethod
def default_hours_per_work_month():
return 160
@staticmethod
def default_hours_per_work_year():
return 1920