Initial import from Docker volume
This commit is contained in:
39
modules/company_work_time/company.py
Executable file
39
modules/company_work_time/company.py
Executable 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
|
||||
Reference in New Issue
Block a user