This commit is contained in:
Mauricio Baeza 2018-09-12 15:41:34 -05:00
parent 5e6d86cb6b
commit 63b9d6729b
1 changed files with 2 additions and 0 deletions

View File

@ -167,12 +167,14 @@ def import_invoice():
descuento = round(row[3], 2)
cant = round(row[4], 2)
pedimento = row[5].strip()
pf = vu - descuento
p = {
'id_product': obj.id,
'delete': '-',
'clave': obj.clave,
'descripcion': obj.descripcion,
'pedimento': pedimento,
'unidad': obj.unidad.id,
'cantidad': cant,
'valor_unitario': vu,