Fix Service Saving

This commit is contained in:
2025-12-18 12:45:49 +01:00
parent bb1e73443b
commit 7d4adbb3e4

View File

@@ -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()
}