This commit is contained in:
2021-03-03 00:50:15 +00:00
parent 501f11ee8c
commit a4488d44d3
3 changed files with 3 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ todo: consider if people might want to delete po's in future and not affect inve
maybe if it's a archival utility or cleanup utility in future then that's an idea, but YAGNI for now
todo: NOT import PO's unless they are current, active and unreceived
todo: erase database should reset all id values if they aren't reset already so that future data doesn't result in a new PO starting at 29000 due to huge db trial seed prior

View File

@@ -229,6 +229,7 @@ export default {
"ErrorAPI2003",
"ErrorAPI2004",
"ErrorAPI2005",
"ErrorAPI2006",
"ErrorAPI2010",
"ErrorAPI2020",
"ErrorAPI2030",

View File

@@ -455,7 +455,7 @@ export default {
return;
}
//server closed by server state setting?
if (error.code == 2000 || error.code == 2001) {
if (error.code == 2000 || error.code == 2001 || error.code == 2006) {
vm.formState.errorBoxMessage = error.message;
return;
}