40 lines
1.1 KiB
Python
Executable File
40 lines
1.1 KiB
Python
Executable File
# 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
|