protected void eventActionDelete(
     ActionEvent e, boolean bAdministrateLockKeyI, boolean bNeedNoDeleteI) throws Throwable {
   DelegateFactory.getInstance()
       .getZeiterfassungDelegate()
       .removeZeitmodelltagpause(zeitmodelltagpauseDto);
   this.setKeyWhenDetailPanel(null);
   super.eventActionDelete(e, false, false);
 }
Ejemplo n.º 2
0
 protected void eventActionDelete(
     ActionEvent e, boolean bAdministrateLockKeyI, boolean bNeedNoDeleteI) throws Throwable {
   DelegateFactory.getInstance()
       .getStuecklisteDelegate()
       .removeFertigungsgruppe(fertigungsgruppeDto);
   this.setKeyWhenDetailPanel(null);
   super.eventActionDelete(e, false, false);
 }
Ejemplo n.º 3
0
 protected void eventActionDelete(
     ActionEvent e, boolean bAdministrateLockKeyI, boolean bNeedNoDeleteI) throws Throwable {
   DelegateFactory.getInstance()
       .getBenutzerDelegate()
       .removeNachrichtart(nachrichtartDto.getIId());
   this.setKeyWhenDetailPanel(null);
   super.eventActionDelete(e, false, false);
 }
Ejemplo n.º 4
0
 /**
  * Stornieren einer Rechnung bzw Gutschrift
  *
  * @param e ActionEvent
  * @param bAdministrateLockKeyI boolean
  * @param bNeedNoDeleteI boolean
  * @throws Throwable
  */
 protected void eventActionDelete(
     ActionEvent e, boolean bAdministrateLockKeyI, boolean bNeedNoDeleteI) throws Throwable {
   if (this.lostechnikerDto != null) {
     if (lostechnikerDto.getIId() != null) {
       if (!isLockedDlg()) {
         DelegateFactory.getInstance().getFertigungDelegate().removeLostechniker(lostechnikerDto);
         this.lostechnikerDto = null;
         this.leereAlleFelder(this);
         super.eventActionDelete(e, false, false);
       }
     }
   }
 }
Ejemplo n.º 5
0
  protected void eventActionDelete(
      ActionEvent e, boolean bAdministrateLockKeyI, boolean bNeedNoDeleteI) throws Throwable {

    if (!isLockedDlg()) {
      DelegateFactory.getInstance()
          .getPartnerDelegate()
          .removePASelektion(
              new PASelektionPK(pASelektionDto.getPartnerIId(), pASelektionDto.getSelektionIId()));
      pASelektionDto = new PASelektionDto();

      super.eventActionDelete(e, false, false);
    }
  }