From 7d4adbb3e4b71e299bdc1aba00cac27da4e635ac Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Thu, 18 Dec 2025 12:45:49 +0100 Subject: [PATCH] Fix Service Saving --- components/materialComposing.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/materialComposing.vue b/components/materialComposing.vue index b3c802a..201f3ce 100644 --- a/components/materialComposing.vue +++ b/components/materialComposing.vue @@ -53,7 +53,7 @@ const setRowData = (row) => { let product = products.value.find(i => i.id === row.product) row.unit = product.unit - row.price = product.sellingPrice + row.price = product.selling_price calculateTotalMaterialPrice() }