Fix: al obtener la clave del sat al facturar en lote

This commit is contained in:
Mauricio 2023-04-01 15:09:27 -06:00
parent 8e7aa23d1b
commit 5bbad9ef58
4 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,8 @@
v 2.0.2 [01-Abr-2023]
---------------------
- Fix: Obtener la clave del sat al facturar por lote.
v 2.0.1 [29-Mar-2023]
---------------------
- Fix ticket #97

View File

@ -1 +1 @@
2.0.1
2.0.2

View File

@ -227,6 +227,7 @@ def import_invoice():
return {'ok': False, 'msg': msg}
obj = Productos.get(Productos.clave==row[0])
if isinstance(row[2], str):
msg = 'El Precio Unitario debe ser un número, debe ser 0.00, si no quieres cambiarlo'
return {'ok': False, 'msg': msg}
@ -248,6 +249,7 @@ def import_invoice():
'id_product': obj.id,
'delete': '-',
'clave': obj.clave,
'clave_sat': obj.clave_sat,
'descripcion': description or obj.descripcion,
'pedimento': pedimento,
'unidad': obj.unidad.id,

View File

@ -42,7 +42,7 @@ except ImportError:
DEBUG = DEBUG
VERSION = '2.0.1'
VERSION = '2.0.2'
EMAIL_SUPPORT = ('soporte@empresalibre.mx',)
TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)