Explorar el Código

[Backend] Document > Ajout produit : correctif prix HT

refactoring
Guillaume hace 2 años
padre
commit
63e6c43354
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      backend/web/js/vuejs/document-form.js

+ 2
- 1
backend/web/js/vuejs/document-form.js Ver fichero

@@ -141,7 +141,8 @@ var app = new Vue({
changeProductAdd: function(event) {
var idProduct = event.currentTarget.value ;
this.productAddId = idProduct ;
this.productAddPrice = parseFloat(this.productsArray[idProduct].price).toFixed(2) ;
//this.productAddPrice = parseFloat(this.productsArray[idProduct].price).toFixed(2) ;
this.productAddPrice = parseFloat(this.productsArray[idProduct].price);
this.productAddQuantity = this.getStepProductAdd() ;
},
changeQuantityProductAdd: function(quantity) {

Cargando…
Cancelar
Guardar