Fix - al importar producto exento

This commit is contained in:
Mauricio Baeza 2018-01-04 21:20:14 -06:00
parent 4a0fed1630
commit ca9fe39f5e
2 changed files with 6 additions and 1 deletions

View File

@ -5159,10 +5159,14 @@ def _get_id_unidad(unidad):
def _get_impuestos(impuestos): def _get_impuestos(impuestos):
lines = '|' lines = '|'
for impuesto in impuestos: for impuesto in impuestos:
# ~ print (dict(impuesto))
if impuesto['tasa'] == '-2/3': if impuesto['tasa'] == '-2/3':
tasa = str(round(2/3, 6)) tasa = str(round(2/3, 6))
else: else:
tasa = str(round(float(impuesto['tasa']) / 100.0, 6)) if impuesto['tasa'] == 'EXENTO':
tasa = '0.00'
else:
tasa = str(round(float(impuesto['tasa']) / 100.0, 6))
info = ( info = (
IMPUESTOS.get(impuesto['nombre']), IMPUESTOS.get(impuesto['nombre']),

View File

@ -109,6 +109,7 @@ IMPUESTOS = {
'ISR': '001', 'ISR': '001',
'IVA': '002', 'IVA': '002',
'IEPS': '003', 'IEPS': '003',
'EXENTO': '000',
'ISH': '000', 'ISH': '000',
'INSPECCION DE OBRA': '000', 'INSPECCION DE OBRA': '000',
'ICIC': '000', 'ICIC': '000',