Commit ce889465 authored by sbade's avatar sbade

updated cource files as onj clietn side


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97706 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 1326f8bd
...@@ -8,9 +8,7 @@ import ibase.webitm.utility.ITMException; ...@@ -8,9 +8,7 @@ import ibase.webitm.utility.ITMException;
import java.rmi.RemoteException; import java.rmi.RemoteException;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import javax.naming.InitialContext; import javax.naming.InitialContext;
/** /**
* @author base * @author base
* *
...@@ -90,12 +88,14 @@ public class ProductionVsBudgetReportBean ...@@ -90,12 +88,14 @@ public class ProductionVsBudgetReportBean
public String generatePDF(HashMap<String, List<String>> hashMap ,String exportPDFPath,String exportImagePath,String preyearMonth,String rptTitle,String userID,HashMap<String,List<String>> chartNameMap,HashMap<String, String> cntryIdNDescrMap) throws RemoteException, ITMException public String generatePDF(HashMap<String, List<String>> hashMap ,String exportPDFPath,String exportImagePath,String preyearMonth,String rptTitle,String userID) throws RemoteException, ITMException
{ {
String resultString="false"; String resultString="false";
try try
{ {
resultString= budgetReportRemote.generatePDF(hashMap,exportPDFPath,exportImagePath,preyearMonth,rptTitle,userID,chartNameMap,cntryIdNDescrMap);
resultString= budgetReportRemote.generatePDF(hashMap,exportPDFPath,exportImagePath,preyearMonth,rptTitle,userID);
} }
catch (Exception e) catch (Exception e)
{ {
...@@ -106,6 +106,9 @@ public class ProductionVsBudgetReportBean ...@@ -106,6 +106,9 @@ public class ProductionVsBudgetReportBean
return resultString; return resultString;
} }
public boolean getRoleValid(String userCode, String roleCode) throws RemoteException, ITMException public boolean getRoleValid(String userCode, String roleCode) throws RemoteException, ITMException
{ {
boolean isRoleExists=false; boolean isRoleExists=false;
...@@ -119,7 +122,10 @@ public class ProductionVsBudgetReportBean ...@@ -119,7 +122,10 @@ public class ProductionVsBudgetReportBean
System.out.println("ibase.dashboard.mfg.bean :ProductionVsBudgetReportBean "+e.getMessage()); System.out.println("ibase.dashboard.mfg.bean :ProductionVsBudgetReportBean "+e.getMessage());
e.printStackTrace(); e.printStackTrace();
} }
return isRoleExists; return isRoleExists;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment