diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b30fa..dfc68b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +v 1.15.0 [12-sep-2018] +---------------------- + - Se pueden mover las facturas con doble clic en los movimientos de banco. + - Fix - Al sumar las facturas en los depósitos + - Fix - Al importar los pedimentos en facturas por lotes + - Fix - Al guardar los datos del emisor + + v 1.14.0 [10-sep-2018] ---------------------- - Personalizar plantilla para factura de pago diff --git a/VERSION b/VERSION index 850e742..141f2e8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.14.0 +1.15.0 diff --git a/source/app/models/main.py b/source/app/models/main.py index 826bb85..61f5105 100644 --- a/source/app/models/main.py +++ b/source/app/models/main.py @@ -5047,6 +5047,7 @@ class FacturasDetalle(BaseModel): row['clave'] = p.clave row['clave_sat'] = p.clave_sat row['descripcion'] = p.descripcion + row['pedimento'] = p.pedimento row['unidad'] = p.producto.unidad.id row['cantidad'] = p.cantidad row['valor_unitario'] = p.valor_unitario @@ -5135,6 +5136,7 @@ class PreFacturasDetalle(BaseModel): row = {'id_product': p.producto.id} row['clave'] = p.producto.clave row['descripcion'] = p.descripcion + row['pedimento'] = p.pedimento row['unidad'] = p.producto.unidad.id row['cantidad'] = p.cantidad row['valor_unitario'] = p.valor_unitario @@ -5175,6 +5177,9 @@ class PreFacturasDetalle(BaseModel): if p.cuenta_predial: info = '\nCuenta Predial Número: {}'.format(p.cuenta_predial) producto['descripcion'] += info + if p.pedimento: + info = '\nNúmero Pedimento: {}'.format(p.pedimento) + producto['descripcion'] += info producto['unidad'] = '{}\n({})'.format( p.producto.unidad.name, p.producto.unidad.key) diff --git a/source/app/settings.py b/source/app/settings.py index e212adc..a0fd425 100644 --- a/source/app/settings.py +++ b/source/app/settings.py @@ -47,7 +47,7 @@ except ImportError: DEBUG = DEBUG -VERSION = '1.14.0' +VERSION = '1.15.0' EMAIL_SUPPORT = ('soporte@empresalibre.net',) TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION) diff --git a/source/static/js/ui/bancos.js b/source/static/js/ui/bancos.js index 12a9166..79a0ca0 100644 --- a/source/static/js/ui/bancos.js +++ b/source/static/js/ui/bancos.js @@ -183,6 +183,7 @@ var grid_cfdi_este_deposito = { view: 'datatable', id: 'grid_cfdi_este_deposito', select: 'row', + multiselect: true, autoConfig: false, adjust: true, height: 200,