feature/21729 #2

Merged
giancarlo.panichi merged 9 commits from feature/21729 into master 2021-06-30 17:39:51 +02:00
1 changed files with 5 additions and 3 deletions
Showing only changes of commit 41e86e44ca - Show all commits

View File

@ -390,7 +390,7 @@ public class AccountingManagerController {
}
private void retrieveSpace() {
if (rootScope) {
/* if (rootScope) {
AccountingManagerServiceAsync.INSTANCE.getSpaces(new AsyncCallback<Spaces>() {
@ -400,7 +400,7 @@ public class AccountingManagerController {
if (caught instanceof SessionExpiredException) {
eventBus.fireEvent(new SessionExpiredEvent(SessionExpiredType.EXPIREDONSERVER));
} else {
Log.error("Error retrieving sapces for " + accountingType + ":" + caught.getLocalizedMessage());
Log.error("Error retrieving spaces for " + accountingType + ":" + caught.getLocalizedMessage());
UtilsGXT3.alert("Error retrieving spaces ", caught.getLocalizedMessage());
}
@ -414,7 +414,9 @@ public class AccountingManagerController {
});
} else {
createDefaultSeriesRequest(null);
}
} */
createDefaultSeriesRequest(null);
}
private void createDefaultSeriesRequest(Spaces spaces) {