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']],