Implemented auto insertion of lbr adjustments on bill posting IO-571

This commit is contained in:
Patrick Fic
2021-01-11 11:11:46 -08:00
parent 12f14e5425
commit ae7f67461b
3 changed files with 70 additions and 9 deletions

View File

@@ -1309,3 +1309,12 @@ export const generate_UPDATE_JOB_KANBAN = (
}
`;
};
export const QUERY_JOB_LBR_ADJUSTMENTS = gql`
query QUERY_JOB_LBR_ADJUSTMENTS($id: uuid!) {
jobs_by_pk(id: $id) {
id
lbr_adjustments
}
}
`;