@SuppressWarnings("unchecked")
  public void Del() throws Exception {
    try {
      this.lstshareinfo = (List<CoyCustShareInfo>) this.session.get("lstShareInfoSession");
      this.seqno = this.seqno - 1;
      this.lstshareinfo.remove(this.seqno);

      this.session.put("lstShareInfoSession", this.lstshareinfo);
      this.lstshareinfo = (List<CoyCustShareInfo>) this.session.get("lstShareInfoSession");
    } catch (final Exception exp) {

      this.setMessage(BaseAction.ErrorMessage());
      final ExceptionEntities lEntExp = new ExceptionEntities();
      lEntExp.setJavaClass(Thread.currentThread().getStackTrace()[1].getClassName());
      lEntExp.setMethodName(Thread.currentThread().getStackTrace()[1].getMethodName());
      ExceptionHelper.WriteException(lEntExp, exp);
    }
  }
Ejemplo n.º 2
0
 public String View() throws Exception {
   try {
     if (this.getId() != null) {
       this.customer = new Customer();
       this.customer = this.service.ViewCustomer(this.getId());
     } else {
       this.Paging();
       this.mode = INPUT;
       this.setMessage(BaseAction.SelectFirst());
     }
   } catch (final Exception exp) {
     this.setMessage(BaseAction.ErrorMessage());
     final ExceptionEntities lEntExp = new ExceptionEntities();
     lEntExp.setJavaClass(Thread.currentThread().getStackTrace()[1].getClassName());
     lEntExp.setMethodName(Thread.currentThread().getStackTrace()[1].getMethodName());
     ExceptionHelper.WriteException(lEntExp, exp);
   }
   return this.mode;
 }
  public void Save() throws Exception {
    try {
      for (final CoyCustShareInfo shareinfo : this.lstshareinfo) {
        shareinfo.setCustomer(this.getCustomer());
        shareinfo.setName(this.getName());
        shareinfo.setIdnumber(this.getIdnumber());
        shareinfo.setJobPositionId(this.getJobpositionid());
        shareinfo.setAddress(this.getAddress());
        shareinfo.setPhone(this.getPhone());
        shareinfo.setSharePercentage(this.getSharepercentage());
      }

      this.customermaintservice.SaveCompanyCustomerShare(sesLoginName(), this.lstshareinfo);
    } catch (final Exception exp) {

      this.setMessage(BaseAction.ErrorMessage());
      final ExceptionEntities lEntExp = new ExceptionEntities();
      lEntExp.setJavaClass(Thread.currentThread().getStackTrace()[1].getClassName());
      lEntExp.setMethodName(Thread.currentThread().getStackTrace()[1].getMethodName());
      ExceptionHelper.WriteException(lEntExp, exp);
    }
  }
  public void Add() throws Exception {
    try {
      final CoyCustShareInfo shareinfo = new CoyCustShareInfo();

      shareinfo.setName(this.getName());
      shareinfo.setIdnumber(this.getIdnumber());
      shareinfo.setJobPositionId(this.getJobpositionid());
      shareinfo.setAddress(this.getAddress());
      shareinfo.setPhone(this.getPhone());
      shareinfo.setSharePercentage(this.getSharepercentage());

      this.lstshareinfo.add(shareinfo);
      this.session.put("lstShareInfoSession", this.lstshareinfo);
    } catch (final Exception exp) {

      this.setMessage(BaseAction.ErrorMessage());
      final ExceptionEntities lEntExp = new ExceptionEntities();
      lEntExp.setJavaClass(Thread.currentThread().getStackTrace()[1].getClassName());
      lEntExp.setMethodName(Thread.currentThread().getStackTrace()[1].getMethodName());
      ExceptionHelper.WriteException(lEntExp, exp);
    }
  }