/* * Created on Jun 22, 2003 */ package is.idega.idegaweb.member.isi.block.reports.presentation; import is.idega.idegaweb.member.isi.block.reports.business.WorkReportImportException; import java.rmi.RemoteException; import com.idega.presentation.IWContext; /** * Description: This class extends WorkReportImporter and takes the uploaded file and reads and imports the account data. * Copyright: Idega Software 2003 <br> * Company: Idega Software <br> * @author <a href="mailto:eiki@idega.is">Eirikur S. Hrafnsson</a> */ public class WorkReportAccountImporter extends WorkReportImporter { private static final String STEP_NAME_LOCALIZATION_KEY = "workreportaccountimporter.step_name"; protected final static String ROW_LABEL = "wr_imp_row"; protected final static String COL_LABEL = "wr_imp_col"; protected final static String DESC_LABEL = "wr_imp_desc"; protected WorkReportAccountImporter() { super(); setStepNameLocalizableKey(STEP_NAME_LOCALIZATION_KEY); } public void main(IWContext iwc) throws Exception { super.main(iwc); if (getWorkReportFileId() != -1) { //do nothing before we have the file id //sets this step as bold, if another class calls it this will be overridden setAsCurrentStepByStepLocalizableKey(STEP_NAME_LOCALIZATION_KEY); try { boolean success = getWorkReportImportBusiness(iwc).importAccountPart(getWorkReportFileId(), getWorkReportId()); if (success) { add(this.iwrb.getLocalizedString("WorkReportAccountImporter.import_successful", "Importing yearly account info completed successfully.")); } else { add(this.iwrb.getLocalizedString("WorkReportAccountImporter.import_failed", "Importing yearly account failed!")); } } catch (RemoteException e) { e.printStackTrace(); } catch (WorkReportImportException e) { add(this.iwrb.getLocalizedString(e.getMessage(), e.getMessage())); if (e.getRowForError() != null) { addBreak(); add(this.iwrb.getLocalizedString(ROW_LABEL,"Row") + " : " + e.getRowForError()); } if (e.getColumnForError() != null) { addBreak(); add(this.iwrb.getLocalizedString(COL_LABEL,"Col") + " : " + e.getColumnForError()); } if (e.getDetail() != null) { addBreak(); add(this.iwrb.getLocalizedString(DESC_LABEL,"Desc") + " : " + e.getDetail()); } } } } }