This commit is contained in:
Mauricio Baeza 2018-09-12 22:19:51 -05:00
parent 30fab23c0d
commit 0379fd6a6a
5 changed files with 16 additions and 2 deletions

View File

@ -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

View File

@ -1 +1 @@
1.14.0
1.15.0

View File

@ -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)

View File

@ -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)

View File

@ -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,