transportista.py
4.87 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
# -*- coding: utf-8 -*-
from odoo import models, fields, api, exceptions
class trans_transportista(models.Model):
_name = 'trans.transportista'
_description = 'Transportista'
_rec_name = 'trans_nombre'
_order = 'trans_nombre'
_sql_constraints = [
('trans_cuit_unique', 'UNIQUE(trans_cuit)',
'Ya existe otro transportista con el mismo CUIT, por favor revíselo y vuelva a intentarlo'),
]
trans_razon_social = fields.Char(
string=u'Razón Social',
)
trans_cuit = fields.Integer(
string=u'CUIT')
trans_pagina_web = fields.Char(
string=u'Página Web',
help='Ingrese su página web si es que posee',
)
trans_nombre = fields.Char(
string=u'Nombre',
required=True,
)
trans_logo = fields.Binary(
string=u'Logo',
help='Archivo png o jpg de menos de 2 Mb'
)
trans_categoria = fields.Selection(
string=u'Categoría',
selection=[('p', 'Paga'), ('np', 'No Paga')],
readonly=True,
default="np"
)
trans_telefono = fields.Integer(
string=u'Teléfono',
)
trans_email = fields.Char(
string = u'Correo Electrónico',
)
trans_tipo_ent = fields.Selection(
string=u'Tipo de entidad',
selection=[('emp', 'Empresa'), ('ca', 'Camionero'), ('co', 'Comisionista')],
required = True,
)
trans_restriccion_elem = fields.Char(
string=u'Elementos que no transporta',
help='Aclarar aquí qué elementos no transporta, si los hubiera',
)
trans_tipo = fields.Many2many(
string=u'Tipo de Transporte',
comodel_name='trans.tipo_transporte',
relation='tipo_transporte_transportista_rel',
column1='trans_tipo_transporte_id',
column2='trans_transportista_id',
)
trans_pto_retiro = fields.Many2many(
string=u'Punto de Retiro',
comodel_name='trans.punto_retiro',
relation='pto_retiro_transportista_rel',
column1='trans_punto_retiro_id',
column2='trans_transportista_id',
)
trans_posee_ayu = fields.Boolean(
string=u'Posee ayudantes de carga?',
)
trans_observ = fields.Text(
string=u'Observaciones',
help = u'Utilice este campo para agregar cualquier observación que desee',
)
ejecutor = fields.Many2one(
string='Ejecuta',
comodel_name='res.users',
index=True,
default= lambda self: self.env.user
)
@api.one
@api.constrains('trans_cuit', 'trans_telefono')
def _requerir_valores(self):
if self.trans_cuit == 0:
#raise exceptions.ValidationError('Por favor ingrese el CUIT')
pass
if self.trans_telefono == 0:
#raise exceptions.ValidationError('Por favor ingrese el teléfono')
pass
def CargaTranspoorteRobot(self,vals):
"""Funcion para el robot, revisar si esta localidad y provincia y si no crearla
agregar transportista si no existe, agregar localidad-provincia al transportista"""
#print(vals)
localidad = vals["localidad"]
provincia = vals["provincia"]
transportista = vals["transportista"]
#print(localidad,provincia,transportista)
Localidad = self.env["asw.localidad"].search([["descripcion","=ilike",localidad],["loc_provincia","=ilike",provincia]], limit=1)
self.transportista_punto(transportista, Localidad)
return(vals)
def transportista_punto(self, transportista, localidad):
trans = self.search([['trans_nombre','=ilike',transportista]])
if len(trans) == 0:
total = self.search_count([])
vals = {'trans_nombre':transportista}
vals["trans_cuit"] = total
vals["trans_telefono"] = total
vals["trans_razon_social"] = transportista
vals["trans_tipo_ent"] = "emp"
trans = self.create(vals)
self.punto(trans, localidad)
#print(trans)
def punto(self, transportista, localidad):
print(transportista,localidad)
for punto in transportista.trans_pto_retiro:
if punto.pr_localiad.id == localiad.id:
return()
lista = transportista.trans_pto_retiro.ids
vals = {"pr_direccion":"-----------"}
vals["pr_localidad"] = localidad.id
vals["pr_horario"] = "-----------"
vals["pr_telefono"] = 555555555
#print(vals)
punto = self.env['trans.punto_retiro'].create(vals)
lista.append(punto.id)
transportista.trans_pto_retiro = lista
def Transportistas(self,vals):
transportistas = self.search([])
lista = []
for transportista in transportistas:
lista.append(transportista.trans_nombre)
return({"transportistas":lista})