This commit is contained in:
Mauricio 2023-03-29 13:31:23 -06:00
parent 5facb96662
commit 2c684ae6bd
5 changed files with 25 additions and 3 deletions

View File

@ -1,3 +1,21 @@
v 2.0.1 [29-Mar-2023]
---------------------
- Fix ticket #97
Es necesario hacer una migración:
```
cd /opt/empresa-libre
git pull origin master
cd source/app/models
python main.py -bk
python main.py -m -r RFC
```
v 2.0.0 [08-Ene-2023]
----------------------
- Liberamos para todos la versión CFDI 4.0

View File

@ -1 +1 @@
2.0.0
2.0.1

View File

@ -11280,6 +11280,10 @@ def _migrate_tables(rfc=''):
else:
log.info('Valores actualizados...')
q = Configuracion.delete().where(Configuracion.clave=='chk_config_tax_decimals')
q.execute()
log.info('Config Tax Update...')
return

View File

@ -42,7 +42,7 @@ except ImportError:
DEBUG = DEBUG
VERSION = '2.0.0'
VERSION = '2.0.1'
EMAIL_SUPPORT = ('soporte@empresalibre.mx',)
TITLE_APP = '{} v{}'.format(TITLE_APP, VERSION)

View File

@ -668,7 +668,7 @@ var options_admin_otros = [
{view: 'checkbox', id: 'chk_config_tax_locales', labelWidth: 0,
labelRight: 'Impuestos locales, calcular antes del descuento'},
{view: 'checkbox', id: 'chk_config_tax_decimals', labelWidth: 0,
labelRight: 'Calcular impuestos con 4 decimales'},
labelRight: 'Calcular impuestos con 4 decimales', hidden: true},
{view: 'checkbox', id: 'chk_config_price_with_taxes_in_invoice', labelWidth: 0,
labelRight: 'Precio incluye impuestos'},
{view: 'checkbox', id: 'chk_config_add_same_product', labelWidth: 0,