@@ -101,6 +101,36 @@ export function TaskUpsertModalComponent({form, bodyshop}) {
|
|||||||
<FormDatePicker/>
|
<FormDatePicker/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</Col>
|
</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>
|
</Row>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -82,10 +82,31 @@ export const QUERY_MY_TASKS_PAGINATED = gql`
|
|||||||
remind_at
|
remind_at
|
||||||
priority
|
priority
|
||||||
job {
|
job {
|
||||||
ro_number
|
|
||||||
id
|
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(
|
tasks_aggregate(
|
||||||
where: {
|
where: {
|
||||||
|
|||||||
Reference in New Issue
Block a user