mirror of
https://bitbucket.org/presik/trytonpsk-staff_payroll.git
synced 2023-12-14 05:33:13 +01:00
23 lines
987 B
Python
23 lines
987 B
Python
# 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
|
|
|
|
|
|
class EmployeeCategory(ModelSQL, ModelView):
|
|
'Employee Category'
|
|
__name__ = 'staff.employee_category'
|
|
name = fields.Char('Name', required=True)
|
|
code = fields.Char('Code')
|
|
wages_default = fields.Many2Many('employee_category-staff.wages',
|
|
'employee_category', 'wage_type', 'Category - Wages Default')
|
|
|
|
|
|
class CategoryWagesDefault(ModelSQL):
|
|
'Employee Category - Wages Default'
|
|
__name__ = 'employee_category-staff.wages'
|
|
_table = 'employee_category_staff_wages'
|
|
employee_category = fields.Many2One('staff.employee_category',
|
|
'Employee Category', select=True, required=True,
|
|
ondelete='CASCADE')
|
|
wage_type = fields.Many2One('staff.wage_type', 'Wage Type', select=True,
|
|
required=True, ondelete='CASCADE')
|