Added labor adjustments to allocations table. IO-570

This commit is contained in:
Patrick Fic
2021-01-08 16:16:05 -08:00
parent 6f96bcfa7e
commit baef1eaaf9
22 changed files with 1929 additions and 55 deletions

View File

@@ -42,6 +42,10 @@ export const GET_JOB_LINES_BY_PK = gql`
export const GET_LINE_TICKET_BY_PK = gql`
query GET_LINE_TICKET_BY_PK($id: uuid!) {
jobs_by_pk(id: $id) {
id
lbr_adjustments
}
joblines(where: { jobid: { _eq: $id } }) {
id
line_desc

View File

@@ -337,7 +337,7 @@ export const GET_JOB_BY_PK = gql`
special_coverage_policy
scheduled_delivery
converted
lbr_adjustments
ro_number
clm_total
inproduction
@@ -706,6 +706,7 @@ export const UPDATE_JOB = gql`
alt_transport
ro_number
production_vars
lbr_adjustments
}
}
}