From 98c58a90031522ed33b16e92da9c440e14d81cf6 Mon Sep 17 00:00:00 2001 From: Mauricio Baeza Date: Fri, 12 Jan 2018 10:26:28 -0600 Subject: [PATCH] Fix - Issue 120 --- source/app/controllers/util.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/app/controllers/util.py b/source/app/controllers/util.py index ca7dfd5..130a657 100644 --- a/source/app/controllers/util.py +++ b/source/app/controllers/util.py @@ -1728,7 +1728,7 @@ class ImportFacturaLibreGambas(object): ('receptores', 'Socios'), ('cfdifacturas', 'Facturas'), ('categorias', 'Categorias'), - # ~ ('productos', 'Productos'), + ('productos', 'Productos'), ('tickets', 'Tickets'), ) for source, target in tables: @@ -2416,10 +2416,12 @@ class ImportFacturaLibre(object): '-10.66660': 0.106667, '-4': 0.04, '1': 0.01, + '25': 0.25, } data = [] for row in rows: + # ~ print (id, dict(row)) filtro = { 'name': row['nombre'], 'tasa': tasas[row['tasa']],