Fixed tab order problem
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/admin/accounting-manager@135203 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
2565b445cf
commit
d8d07438e5
|
@ -66,11 +66,7 @@ public class AccountingManagerController {
|
|||
|
||||
public AccountingManagerController() {
|
||||
eventBus = new SimpleEventBus();
|
||||
accountingType = AccountingType.STORAGE;
|
||||
accountingState = new AccountingClientState();
|
||||
AccountingClientStateData accountingStateData = new AccountingClientStateData(
|
||||
accountingType, null, null, null);
|
||||
accountingState.setState(accountingType, accountingStateData);
|
||||
init();
|
||||
}
|
||||
|
||||
|
@ -155,7 +151,8 @@ public class AccountingManagerController {
|
|||
private void doEnableTabs(EnableTabs enableTabs) {
|
||||
if (enableTabs == null || enableTabs.getTabs() == null
|
||||
|| enableTabs.getTabs().isEmpty()) {
|
||||
UtilsGXT3.alert("Attention",
|
||||
UtilsGXT3
|
||||
.alert("Attention",
|
||||
"You don't have permissions to see Accounting Information in this scope!");
|
||||
} else {
|
||||
this.enableTabs = enableTabs;
|
||||
|
@ -290,8 +287,12 @@ public class AccountingManagerController {
|
|||
}
|
||||
|
||||
public void showDefault() {
|
||||
if (enableTabs != null && enableTabs.getTabs() != null
|
||||
&& enableTabs.getTabs().size() > 0
|
||||
&& enableTabs.getTabs().get(0) != null) {
|
||||
createDefaultChart(enableTabs.getTabs().get(0).getAccountingType());
|
||||
}
|
||||
}
|
||||
|
||||
private void createDefaultChart(AccountingType accountingType) {
|
||||
accountingMonitor = new AccountingMonitor();
|
||||
|
@ -353,11 +354,10 @@ public class AccountingManagerController {
|
|||
|
||||
}
|
||||
|
||||
|
||||
private void retrieveContext() {
|
||||
|
||||
AccountingManagerServiceAsync.INSTANCE.getContext(
|
||||
new AsyncCallback<Context>() {
|
||||
AccountingManagerServiceAsync.INSTANCE
|
||||
.getContext(new AsyncCallback<Context>() {
|
||||
|
||||
@Override
|
||||
public void onFailure(Throwable caught) {
|
||||
|
@ -389,7 +389,6 @@ public class AccountingManagerController {
|
|||
|
||||
}
|
||||
|
||||
|
||||
private void callDefaultSeriesRequest() {
|
||||
|
||||
AccountingManagerServiceAsync.INSTANCE.getSeries(accountingType,
|
||||
|
@ -568,8 +567,7 @@ public class AccountingManagerController {
|
|||
+ Constants.EXPORT_SERVLET_TYPE_PARAMETER + "="
|
||||
+ event.getExportType().name() + "&"
|
||||
+ Constants.EXPORT_SERVLET_ACCOUNTING_TYPE_PARAMETER + "="
|
||||
+ event.getAccountingType().name()
|
||||
+ "&"
|
||||
+ event.getAccountingType().name() + "&"
|
||||
+ Constants.CURR_GROUP_ID + "="
|
||||
+ GCubeClientContext.getCurrentContextId());
|
||||
|
||||
|
|
Loading…
Reference in New Issue