BOD-20 added onclick to production schedule + parts totals.

This commit is contained in:
Patrick Fic
2020-04-27 15:08:37 -07:00
parent 2b19d1af0b
commit f04a6fc2af
25 changed files with 580 additions and 120 deletions

View File

@@ -33,6 +33,19 @@ export function JobLinesComponent({
const { t } = useTranslation();
const columns = [
{
title: t("joblines.fields.line_no"),
dataIndex: "line_no",
key: "line_no",
// onFilter: (value, record) => record.ro_number.includes(value),
// filteredValue: state.filteredInfo.text || null,
sorter: (a, b) => a.line_no - b.line_no,
sortOrder:
state.sortedInfo.columnKey === "line_no" && state.sortedInfo.order,
//ellipsis: true,
editable: true,
width: 75,
},
{
title: t("joblines.fields.unq_seq"),
dataIndex: "unq_seq",
@@ -192,8 +205,7 @@ export function JobLinesComponent({
actions: { refetch: refetch },
context: record,
});
}}
>
}}>
{t("general.actions.edit")}
</Button>
</span>
@@ -229,8 +241,7 @@ export function JobLinesComponent({
linesToOrder: selectedLines,
},
});
}}
>
}}>
{t("parts.actions.order")}
</Button>
<AllocationsBulkAssignmentContainer
@@ -243,15 +254,14 @@ export function JobLinesComponent({
actions: { refetch: refetch },
context: { jobid: jobId },
});
}}
>
}}>
{t("joblines.actions.new")}
</Button>
</div>
);
}}
loading={loading}
size="small"
size='small'
expandedRowRender={(record) => (
<div style={{ margin: 0 }}>
<strong>{t("parts_orders.labels.orderhistory")}</strong>
@@ -276,7 +286,7 @@ export function JobLinesComponent({
setSelectedLines(selectedRows),
}}
columns={columns.map((item) => ({ ...item }))}
rowKey="id"
rowKey='id'
dataSource={jobLines}
onChange={handleTableChange}
/>