diff --git a/client/src/components/parts-order-list-table/parts-order-list-table.component.jsx b/client/src/components/parts-order-list-table/parts-order-list-table.component.jsx index 40253afe6..9ae6695e5 100644 --- a/client/src/components/parts-order-list-table/parts-order-list-table.component.jsx +++ b/client/src/components/parts-order-list-table/parts-order-list-table.component.jsx @@ -101,6 +101,7 @@ export function PartsOrderListTableComponent({ partsorderlines: record.parts_order_lines.map((pol) => { return { joblineid: pol.job_line_id, + id: pol.id, line_desc: pol.line_desc, quantity: pol.quantity, }; diff --git a/client/src/components/parts-receive-modal/parts-receive-modal.component.jsx b/client/src/components/parts-receive-modal/parts-receive-modal.component.jsx index 5f7a851dc..92aaffd56 100644 --- a/client/src/components/parts-receive-modal/parts-receive-modal.component.jsx +++ b/client/src/components/parts-receive-modal/parts-receive-modal.component.jsx @@ -1,5 +1,5 @@ import { DeleteFilled } from "@ant-design/icons"; -import { Form, Input, Select, Typography } from "antd"; +import { Form, Input, InputNumber, Select, Typography } from "antd"; import React from "react"; import { useTranslation } from "react-i18next"; import { connect } from "react-redux"; @@ -58,6 +58,13 @@ export function PartsReceiveModalComponent({ bodyshop, form }) { > +