Files
bodyshop/client/src/components/job-lines-bill-reference/job-lines-bill-reference.component.jsx
Dave Richer e83badb454 - the great reformat
Signed-off-by: Dave Richer <dave@imexsystems.ca>
2024-02-06 18:20:58 -05:00

18 lines
618 B
JavaScript

import React from "react";
import {WarningFilled} from "@ant-design/icons";
export default function JobLinesBillRefernece({jobline}) {
const billLine = jobline.billlines && jobline.billlines[0];
if (!billLine) return null;
const subletRequired = billLine.actual_price !== jobline.act_price;
return (
<div style={{color: subletRequired && "tomato"}}>
{subletRequired && <WarningFilled/>}
{`${billLine.actual_price.toFixed(2)} x ${billLine.quantity} (${
billLine.bill.vendor.name
} #${billLine.bill.invoice_number})`}
</div>
);
}