Add audit trail and resolve status update.
This commit is contained in:
@@ -2208,3 +2208,28 @@ export const QUERY_COMPLETED_TASKS = gql`
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const QUERY_JOBS_TECH_ASIGNED_TO_BY_TEAM = gql`
|
||||
query QUERY_JOBS_TECH_ASIGNED_TO_BY_TEAM($teamIds: [uuid!]!) {
|
||||
jobs(
|
||||
where: {
|
||||
inproduction: { _eq: true }
|
||||
joblines: { assigned_team: { _in: $teamIds } }
|
||||
}
|
||||
) {
|
||||
id
|
||||
v_make_desc
|
||||
v_model_desc
|
||||
v_color
|
||||
v_vin
|
||||
plate_no
|
||||
plate_st
|
||||
clm_no
|
||||
ownr_fn
|
||||
ownr_ln
|
||||
ownr_co_nm
|
||||
status
|
||||
ro_number
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user