BETA for new DB

This commit is contained in:
2025-12-09 08:28:41 +01:00
parent 888336dd04
commit c6354ac656
5 changed files with 17 additions and 24 deletions

View File

@@ -107,7 +107,6 @@ const getAvailableQueryStringData = (keys) => {
returnString += `${key}=${value}`
} else {
returnString += `&${key}=${value}`
}
}

View File

@@ -9,5 +9,5 @@ const props = defineProps({
</script>
<template>
<span>{{props.row.purchasePrice ? useCurrency(props.row.purchasePrice) : ''}}</span>
<span>{{props.row.purchase_price ? useCurrency(props.row.purchase_price) : ''}}</span>
</template>

View File

@@ -9,5 +9,5 @@ const props = defineProps({
</script>
<template>
<span>{{props.row.sellingPrice ? useCurrency(props.row.sellingPrice) : ''}}</span>
<span>{{props.row.selling_price ? useCurrency(props.row.selling_price) : ''}}</span>
</template>