Commit 8821e6b3 by Juan

No genero qr en nueva factura

1 parent 279cee12
......@@ -48,7 +48,10 @@ class asw_comprobante(models.Model):
@api.depends('afip_qr_img')
def _compute_afip_qr(self):
for rec in self:
#import ipdb; ipdb.def_colors='NoColor'; ipdb.set_trace()
if type(rec.id) != int:
rec.afip_qr_img = False
return()
#Si es uno nuevo no hago nada
fecha_emision = rec.comp_fecha
cod_afip = rec.comp_talonario.tal_tpc_id.tc_cod_afip
punt_venta = rec.comp_talonario.tal_ptv_id.ptv_nro
......@@ -90,6 +93,7 @@ class asw_comprobante(models.Model):
#como el campo es one2many puse que tome el nombre de la primer referencia elegida
@api.onchange('referencia_corr')
def _onchange_name(self):
first_line = self.env['asw.referencias'].search([('id', 'in', self.referencia_corr.ids)], limit=1)
if first_line and first_line.name:
self.name_ref = first_line.name
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!