diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d25424..e9631ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ +v 2.3.2 [10-Abr-2024] + - Fix: En las mercancias en la Carta Porte al generar el PDF. + + v 2.3.1 [02-Abr-2024] - - Fix: En la cantidad de la mercancia en la Carta Porte + - Fix: En la cantidad de la mercancia en la Carta Porte. v 2.3.0 [01-Abr-2024] diff --git a/VERSION b/VERSION index 2bf1c1c..f90b1af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3.1 +2.3.2 diff --git a/source/app/controllers/util.py b/source/app/controllers/util.py index 1b02046..f379f29 100644 --- a/source/app/controllers/util.py +++ b/source/app/controllers/util.py @@ -1020,6 +1020,10 @@ class LIBO(object): cell_3 = self._set_cell('{cp.ClaveUnidad}', unidad) cell_4 = self._set_cell('{cp.Cantidad}', cantidad) cell_5 = self._set_cell('{cp.PesoEnKg}', peso) + + if cell_1 is None: + break + if count > 0: row = cell_1.CellAddress.Row + 1 self._sheet.getRows().insertByIndex(row, count) diff --git a/source/app/settings.py b/source/app/settings.py index e7a9898..c09abe6 100644 --- a/source/app/settings.py +++ b/source/app/settings.py @@ -39,7 +39,7 @@ except ImportError: DEBUG = DEBUG -VERSION = '2.3.1' +VERSION = '2.3.2' EMAIL_SUPPORT = ('soporte@empresalibre.mx',) TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)