Skip to content

Commit

Permalink
Merge pull request #96 from bcgov/scdicontact
Browse files Browse the repository at this point in the history
extracted contacts with expire date
  • Loading branch information
michaeltangbcgov authored Nov 16, 2023
2 parents 0cf0fc3 + e91940b commit 0785025
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion frontend/src/views/ContactsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@ const searchContact = async () => {
operation: 'eq',
value: selectedContactType.value,
valueType: 'STRING',
condition: 'OR'
condition: 'AND'
})
params[0].searchCriteriaList.push({
key: 'expiryDate',
operation: 'eq',
value: null,
valueType: 'STRING',
condition: 'AND'
})
}
const jsonString = JSON.stringify(params)
Expand Down

0 comments on commit 0785025

Please sign in to comment.