CHECKPOINT COMMIT - POST SERVICE BANK REMOVAL

Service bank feature removed from front, back and e2e testing
mostly commented out in case need to add back again but in some places such as db schema it had to be removed entirely
so refer here if adding back in again
This commit is contained in:
2021-06-04 22:23:21 +00:00
parent 0d79c18e4b
commit 2816f54a0d
14 changed files with 107 additions and 108 deletions

View File

@@ -354,8 +354,8 @@ async function fetchTranslatedText(vm) {
await window.$gz.translation.cacheTranslations([
"TooManyResults",
"NoResults",
"Object",
"ServiceBank"
"Object"
//, "ServiceBank"
]);
}
@@ -369,10 +369,9 @@ async function populateSelectionLists(vm) {
window.$gz.form.setErrorBoxErrors(vm);
} else {
vm.selectLists.objectTypes = res.data;
//ServiceBank will appear in search results but is not a Core biz object so won't be added to list by server
//and needs to be added manually here
vm.selectLists.objectTypes.push({ name: vm.$ay.t("ServiceBank"), id: 55 });
//servicebank?
// // //ServiceBank will appear in search results but is not a Core biz object so won't be added to list by server
// // //and needs to be added manually here
// // vm.selectLists.objectTypes.push({ name: vm.$ay.t("ServiceBank"), id: 55 });
window.$gz.form.addNoSelectionItem(vm.selectLists.objectTypes);
}
}