Restructured Pages

Added parent Spaces
This commit is contained in:
2024-07-20 14:50:58 +02:00
parent 013ae3c69c
commit 269c5f4b59
3 changed files with 216 additions and 98 deletions

View File

@@ -290,7 +290,7 @@ const calculateDocSum = (rows) => {
rows.forEach(row => {
if(row.mode !== "pagebreak") {
sum += row.price * row.quantity * ( row.taxPercent + 100)/100
sum += row.price * row.quantity * ( Number(row.taxPercent) + 100)/100
}
})