tipocargo.py
827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from odoo import models, fields, api
class hgt_tipo_cargo(models.Model):
_name = 'hgt.tipo_cargo'
tipo = fields.Char(
string='field_name',
)
monto = fields.Float(
string='Monto por hora',
)
desde = fields.Date(
string='Desde',
default=fields.Date.context_today,
)
hasta = fields.Date(
string='Hasta',
default=fields.Date.context_today,
)
ejecutores = fields.Many2many(
string='Ejecutores',
comodel_name='res.users',
relation='user_tipocargo_rel',
column1='res_users_id',
column2='hgt_tipo_cargo_id',
)
linea_tarea = fields.Many2one(
string='Linea de Tarea',
comodel_name='hgt.linea_tarea',
ondelete='restrict',
)