This commit is contained in:
Mauricio Baeza 2017-12-23 00:02:25 -06:00
parent c5da06ec31
commit 3e6dc1eda2
1 changed files with 3 additions and 2 deletions

View File

@ -1753,14 +1753,15 @@ class ImportFacturaLibre(object):
rows = self._cursor.fetchall() rows = self._cursor.fetchall()
tasas = { tasas = {
'0': 0.0,
'16': 0.16, '16': 0.16,
'16.00': 0.16, '16.00': 0.16,
'11': 0.11, '11': 0.11,
'-10': 0.10, '-10': 0.10,
'0': 0.0,
'-2/3': 0.106667,
'-0.5': 0.005, '-0.5': 0.005,
'-2/3': 0.106667,
'-10.6666': 0.106667, '-10.6666': 0.106667,
'-10.666666': 0.106667,
} }
data = [] data = []