- 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>
</>
);

View File

@@ -82,10 +82,31 @@ export const QUERY_MY_TASKS_PAGINATED = gql`
remind_at
priority
job {
ro_number
id
ro_number
joblines {
id
line_desc
}
bills {
id
vendor {
name
}
invoice_number
}
parts_orders {
id
vendor {
name
}
order_number
}
}
bodyshopid
jobid
joblineid
partsorderid
billid
}
tasks_aggregate(
where: {