BOD-74 Added basic display for job totals.

This commit is contained in:
Patrick Fic
2020-04-27 16:23:19 -07:00
parent c3d618e239
commit 0e12ae35c9
6 changed files with 542 additions and 82 deletions

View File

@@ -8,7 +8,7 @@ export default function JobsDetailFinancials({ job }) {
return (
<Row>
<Col offset={1} span={10}>
<Col offset={1} span={7}>
<Form.Item label={t("jobs.fields.ded_amt")} name="ded_amt">
<InputNumber />
</Form.Item>
@@ -131,7 +131,7 @@ export default function JobsDetailFinancials({ job }) {
<InputNumber />
</Form.Item>
</Col>
<Col offset={1} span={12}>
<Col offset={1} span={15}>
<JobTotalsTable totals={job.job_totals} />
</Col>
</Row>