liquidacionestareas.py
4.85 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# -*- coding: utf-8 -*-
from odoo import models, fields, api
from datetime import datetime
from odoo.exceptions import UserError
#from lib.config import config
DEFAULT_SERVER_DATE_FORMAT = "%Y-%m-%d %H:%M:%S"
DEFAULT_SERVER_TIME_FORMAT = "%H:%M:%S"
DEFAULT_SERVER_DATETIME_FORMAT = "%s %s" % (
DEFAULT_SERVER_DATE_FORMAT,
DEFAULT_SERVER_TIME_FORMAT)
class hdgt_liquidacionestareas(models.Model):
_name = 'hgt.liquidacionestareas'
nombre = fields.Char(
string='Nombre',
compute='obtener_nombre',
)
usuario = fields.Many2one(
string='Usuario',
comodel_name='res.users',
ondelete='restrict',
)
lineas_tareas = fields.One2many(
string='Tareas',
comodel_name='hgt.linea_tarea',
inverse_name='liquidaciones',
)
desde = fields.Date(
string='Desde',
)
hasta = fields.Date(
string='Hasta',
)
total_aprobado = fields.Float(
string='Total Aprobado',
readonly = True,
)
aprobado = fields.Boolean(
string='Aprobado?',
readonly= True,
)
fecha_aprobado = fields.Datetime(
string= "Fecha Aprobado",
)
aprobador = fields.Many2one(
string='Aprobador',
comodel_name='res.users',
)
total = fields.Float(
string='Total Abonado',
readonly = True,
)
abonado = fields.Boolean(
string='Abonado?',
readonly= True,
)
fecha_abonado = fields.Datetime(
string= "Fecha Abonado",
)
abonador = fields.Many2one(
string='Abonador',
comodel_name='res.users',
)
estado = fields.Selection(
string='Estado',
selection=[('borrador', 'Borrador'), ('aprobado', 'Aprobado'), ('liquidado', 'Liquidado')],
default='borrador',
)
lt_texto = fields.Char(
string='Seguimiento',
default=''
)
lt_notitas = fields.Text(
string='Seguimiento',
default=''
)
def CargarNotas(self):
if (self.lt_texto == "") or (self.lt_texto == False):
return(True)
Texto = """{} - {}: {} \n{}""".format(self.env.user.display_name,
datetime.now().strftime('%Y-%m-%d %H:%M'),
self.lt_texto, self.lt_notitas)
self.lt_notitas = Texto
self.lt_texto = ""
return(True)
def obtener_nombre(self):
for record in self:
fecha = record.hasta
usuario = record.usuario.name
string = "{} - {}".format(fecha,usuario)
record.nombre = string
def crear_linea(self,liquidacion,usuario,desde,hasta):
desde1 = "{} 00:00:01".format(desde)
hasta1 = "{} 23:59:59".format(hasta)
#import ipdb; ipdb.set_trace()
tareas = self.env['hgt.tarea'].search([('ejecutor','=',usuario),('write_date', '>', desde1),('write_date', '<', hasta1)])
for tarea in tareas.ids:
nva_lin = self.env['hgt.linea_tarea'].create({
'tarea': tarea,
'liquidaciones':liquidacion,
'inicio': desde,
'cierre': hasta,
})
nva_lin.computar_minutos_a_liquidar()
return len(tareas)
def obtener_total(self):
tot = 0
for record in self.lineas_tareas:
tot = tot + record.subtotal
return(tot)
def aprobar_liquidaciones(self):
self.total_aprobado = self.obtener_total()
self.aprobado = True
self.fecha_aprobado = datetime.now()
self.aprobador = self.env.user.id
self.estado = 'aprobado'
def abonar_liquidaciones(self):
self.total = self.obtener_total()
self.fecha_abonado = datetime.now()
self.abonador = self.env.user.id
for tar in self.lineas_tareas:
if tar.minutos_a_liquidar > 0:
if tar.tarea.liquidado == False:
tar.tarea.horas_liquidadas = tar.minutos_reales
tar.tarea.liquidado = True
else:
tar.tarea.horas_liquidadas += tar.minutos_a_liquidar
self.estado = 'liquidado'
self.abonado = True
datos = {
'liquidacion': self.id,
}
wizard = self.env['hgt.liquidacion_comprobante'].create(datos)
return {
'type': 'ir.actions.act_window',
'res_model': 'hgt.liquidacion_comprobante',
'view_mode': 'form',
'view_type': 'form',
'res_id': wizard.id,
'views': [(False, 'form')],
'target': 'new',
}
def volver_borrador(self):
self.estado = 'borrador'
self.abonado = False
for tar in self.lineas_tareas:
tar.tarea.horas_liquidadas = tar.tarea.horas_liquidadas - tar.minutos_reales
tar.tarea.liquidado = False