Skip to content

Commit 9a3ade4

Browse files
committed
Updated
1 parent 396b793 commit 9a3ade4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

satdigitalinvoice/facturacion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ def fact_iter():
771771
yield i
772772

773773
self.window['recibidas_table'].update(
774-
values=sorted(fact_iter(), key=lambda x: x["Fecha"], reverse=False),
774+
values=sorted(fact_iter(), key=lambda x: (x["Fecha"], x.get('Serie'), x.get('Folio')), reverse=False),
775775
)
776776

777777
def crear_pago(self, values, facturas_pagar):

0 commit comments

Comments
 (0)