BOD-21 Further customization of components. Added remove to header. Altered colum adding to use button instead of transfer

This commit is contained in:
Patrick Fic
2020-04-22 14:43:37 -07:00
parent 400dfabcec
commit 678f09b47a
14 changed files with 340 additions and 102 deletions

View File

@@ -79,6 +79,35 @@ export const QUERY_JOBS_IN_PRODUCTION = gql`
}
`;
export const SUBSCRIPTION_JOBS_IN_PRODUCTION = gql`
subscription SUBSCRIPTION_JOBS_IN_PRODUCTION {
productionview {
id
status
ro_number
est_number
ownr_fn
ownr_ln
v_model_yr
v_model_desc
clm_no
v_make_desc
v_color
plate_no
actual_in
scheduled_completion
scheduled_delivery
ins_co_nm
clm_total
ownr_ph1
special_coverage_policy
production_vars
labhrs
larhrs
}
}
`;
export const GET_JOB_BY_PK = gql`
query GET_JOB_BY_PK($id: uuid!) {
jobs_by_pk(id: $id) {