Commit 0baf6c6c by Juan

control preproductivo

1 parent 9822896d
......@@ -12,6 +12,12 @@ class trans_punto_retiro(models.Model):
help='Agregar nombre del punto de retiro si lo tuviese'
)
pr_autoelevador = fields.Selection(string='Tiene autoelevador',
selection=[
('sin_elevador', 'No tiene autoelevador'),
('con_autoelevador', 'Tiene autoelevador'),])
pr_localidad = fields.Many2one(
string=u'Localidad',
comodel_name='asw.localidad',
......
......@@ -345,6 +345,21 @@ class trans_transportista(models.Model):
url = data["init_point"]
return({"url": url, "type": "ir.actions.act_url" })
def ComprarMembresia(self):
try:
rta = self.comprar()
url = {"url":rta["url"],"error":False,
"mensaje":""}
except Exception as e:
url = {"url":"","error":True,
"mensaje":f"""Revise si tiene todos los datos fiscales cargados CUIT DNI Email Razon Social etc, si falta alguno no se podra completar la operacion \nDev: {str(e)}"""}
return(url)
def ActualizarMembresia(self):
rta = self.comprar()
url = rta["url"]
return(url)
def ActualizarCliente(self):
try:
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!