IO-1281 System setting for posting time tickets to closed RO

This commit is contained in:
Patrick Fic
2021-08-03 11:27:03 -07:00
parent 4e4c59ce4d
commit b0ec7867b5
17 changed files with 396 additions and 2 deletions

View File

@@ -1025,6 +1025,7 @@ export const SEARCH_JOBS_FOR_AUTOCOMPLETE = gql`
$search: String
$isConverted: Boolean
$notExported: Boolean
$notInvoiced: Boolean
) {
search_jobs(
args: { search: $search }
@@ -1033,6 +1034,7 @@ export const SEARCH_JOBS_FOR_AUTOCOMPLETE = gql`
_and: {
converted: { _eq: $isConverted }
date_exported: { _is_null: $notExported }
date_invoiced: { _is_null: $notInvoiced }
}
}
) {