Merged in feature/IO-2418-jobline-bill-amount (pull request #1024)

IO-2418 Adjust latest bill amount
This commit is contained in:
Patrick Fic
2023-10-19 16:23:43 +00:00

View File

@@ -8,7 +8,7 @@ export default function JobLinesBillRefernece({ jobline }) {
return (
<div style={{ color: subletRequired && "tomato" }}>
{subletRequired && <WarningFilled />}
{`${(billLine.actual_price * billLine.quantity).toFixed(2)} (${
{`${billLine.actual_price.toFixed(2)} x ${billLine.quantity} (${
billLine.bill.vendor.name
} #${billLine.bill.invoice_number})`}
</div>