Corretto Ordini e visualizzazione dei Totali

This commit is contained in:
Surya Paolo
2023-12-15 21:50:28 +01:00
parent 6a1a1fb249
commit 8399df8663
16 changed files with 376 additions and 170 deletions

View File

@@ -54,8 +54,10 @@ export default defineComponent({
addqty,
subqty,
order: props.order,
}).then((newqty) => {
order.value.quantity = newqty
}).then((res: any) => {
if (res.risult) {
order.value.quantity = res.qty
}
})
}