Can products without taxes

This commit is contained in:
Mauricio Baeza 2021-09-14 21:53:00 -05:00
commit 416bc65174
5 changed files with 12 additions and 15 deletions

View File

@ -1,4 +1,9 @@
v 1.42.1 [00-Jun-2021]
v 1.42.2 [14-Sep-2021]
----------------------
- Los productos pueden no llevar ningún impuesto.
v 1.42.1 [01-Jun-2021]
----------------------
- Error - Ticket #5

View File

@ -13,9 +13,3 @@
* Propon nuevas funcionalidades
* Difunde Empresa Libre
### Prioridades
1. [X] Darle continuidad a la facturación de los clientes
2. Cubrir todas las funcionalidades que cubre ahora Factura Libre
3. Agregar nuevas funcionalidades

View File

@ -1,2 +1,2 @@
1.42.1
1.42.2

View File

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

View File

@ -206,10 +206,10 @@ function cmd_save_product_click(id, e, node){
}
var rows = $$('grid_product_taxes').getSelectedId(true, true)
if (rows.length == 0){
msg_error('Selecciona un impuesto')
return
}
//~ if (rows.length == 0){
//~ msg_error('Selecciona un impuesto')
//~ return
//~ }
var values = form.getValues();
@ -247,9 +247,7 @@ function cmd_save_product_click(id, e, node){
function cmd_cancel_product_click(id, e, node){
$$("multi_products").setValue("products_home")
};