- Progress Commit

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-03-22 12:20:56 -04:00
parent 9012e4deec
commit 40c801592d
2 changed files with 53 additions and 2 deletions

View File

@@ -101,6 +101,36 @@ export function TaskUpsertModalComponent({form, bodyshop}) {
<FormDatePicker/>
</Form.Item>
</Col>
<Col span={8}>
<Form.Item
label={t("tasks.fields.joblineid")}
name="joblineid"
>
<Select placeholder={t("tasks.labels.joblineidplaceholder")}>
{/* Add your options here */}
</Select>
</Form.Item>
</Col>
<Col span={8}>
<Form.Item
label={t("tasks.fields.partsorderid")}
name="partsorderid"
>
<Select placeholder={t("tasks.labels.partsorderidplaceholder")}>
{/* Add your options here */}
</Select>
</Form.Item>
</Col>
<Col span={8}>
<Form.Item
label={t("tasks.fields.billid")}
name="billid"
>
<Select placeholder={t("tasks.labels.billidplaceholder")}>
{/* Add your options here */}
</Select>
</Form.Item>
</Col>
</Row>
</>
);