|
|
|
|
|
|
|
|
Vue.set(app.ordersUpdate[keyOrderUpdate].productOrder[idProduct], 'unit_coefficient', response.data[idProduct].unit_coefficient); |
|
|
Vue.set(app.ordersUpdate[keyOrderUpdate].productOrder[idProduct], 'unit_coefficient', response.data[idProduct].unit_coefficient); |
|
|
|
|
|
|
|
|
if(updatePricesOnUpdateOrder) { |
|
|
if(updatePricesOnUpdateOrder) { |
|
|
Vue.set(app.orderCreate.productOrder[idProduct], 'price', app.getBestProductPrice(app.orderCreate, idProduct, app.orderCreate.productOrder[idProduct].quantity)); |
|
|
|
|
|
|
|
|
console.log('new price : '); |
|
|
|
|
|
Vue.set( |
|
|
|
|
|
app.ordersUpdate[keyOrderUpdate].productOrder[idProduct], |
|
|
|
|
|
'price', |
|
|
|
|
|
app.getBestProductPrice(app.ordersUpdate[keyOrderUpdate], idProduct, app.ordersUpdate[keyOrderUpdate].productOrder[idProduct].quantity)); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
pointSaleChange: function(event) { |
|
|
pointSaleChange: function(event) { |
|
|
this.updateProductOrderPrices(true) ; |
|
|
this.updateProductOrderPrices(true) ; |
|
|
}, |
|
|
}, |
|
|
updateProductOrderPrices: function() { |
|
|
|
|
|
this.$emit('updateproductorderprices') ; |
|
|
|
|
|
|
|
|
updateProductOrderPrices: function(updateProductOrderPrices) { |
|
|
|
|
|
this.$emit('updateproductorderprices', updateProductOrderPrices) ; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
}) ; |
|
|
}) ; |