Sfoglia il codice sorgente

Merge branch 'dev'

prodstable
Guillaume 3 anni fa
parent
commit
f1c027c083
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      backend/web/js/vuejs/document-form.js

+ 2
- 1
backend/web/js/vuejs/document-form.js Vedi File

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

Loading…
Annulla
Salva