Added view intake and deliver checklists. IO-241

This commit is contained in:
Patrick Fic
2021-02-23 16:34:27 -08:00
parent 7e3200a993
commit 707eab563a
12 changed files with 339 additions and 8 deletions

View File

@@ -377,7 +377,7 @@ export const GET_JOB_BY_PK = gql`
est_co_nm
est_ct_fn
est_ct_ln
est_ph1
est_ea
selling_dealer
@@ -981,7 +981,7 @@ export const QUERY_ALL_JOB_FIELDS = gql`
parts_tax_rates
pay_amt
pay_chknm
pay_type
payee_nms
plate_no
@@ -1354,3 +1354,22 @@ export const GET_JOB_FOR_CC_CONTRACT = gql`
}
}
`;
export const QUERY_JOB_CHECKLISTS = gql`
query QUERY_JOB_CHECKLISTS($id: uuid!) {
jobs_by_pk(id: $id) {
id
deliverchecklist
intakechecklist
ro_number
scheduled_completion
actual_completion
scheduled_delivery
bodyshop {
id
intakechecklist
deliverchecklist
}
}
}
`;