Java Code Examples for org.apache.wicket.markup.html.form.TextField#getConvertedInput()

The following examples show how to use org.apache.wicket.markup.html.form.TextField#getConvertedInput() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RechnungEditForm.java    From projectforge-webapp with GNU General Public License v3.0 6 votes vote down vote up
@SuppressWarnings("unchecked")
@Override
protected void validation()
{
  super.validation();

  final RechnungStatus status = statusChoice.getConvertedInput();
  final TextField<BigDecimal> zahlBetragField = (TextField<BigDecimal>) dependentFormComponents[3];
  final BigDecimal zahlBetrag = zahlBetragField.getConvertedInput();
  final Integer projektId = getData().getProjektId();
  final Integer kundeId = getData().getKundeId();
  // final String kundeText = customerSelectPanel.getKundeTextField().getConvertedInput();
  final boolean zahlBetragExists = (zahlBetrag != null && zahlBetrag.compareTo(BigDecimal.ZERO) != 0);
  if (status == RechnungStatus.BEZAHLT && zahlBetragExists == false) {
    addError("fibu.rechnung.error.statusBezahltErfordertZahlBetrag");
  }
  // if (projektId == null && StringUtils.isBlank(kundeText) == true && kundeId == null) {
  if (projektId == null && kundeId == null) {
    addError("fibu.rechnung.error.kundeTextOderProjektRequired");
  }
}
 
Example 2
Source File: AbstractRechnungEditForm.java    From projectforge-webapp with GNU General Public License v3.0 5 votes vote down vote up
@SuppressWarnings("unchecked")
protected void validation()
{
  final TextField<Date> datumField = (TextField<Date>) dependentFormComponents[0];
  final TextField<Date> bezahlDatumField = (TextField<Date>) dependentFormComponents[1];
  final TextField<Date> faelligkeitField = (TextField<Date>) dependentFormComponents[2];
  final TextField<BigDecimal> zahlBetragField = (TextField<BigDecimal>) dependentFormComponents[3];
  final DropDownChoice<Integer> zahlungsZielChoice = (DropDownChoice<Integer>) dependentFormComponents[4];

  final Date bezahlDatum = bezahlDatumField.getConvertedInput();

  final Integer zahlungsZiel = zahlungsZielChoice.getConvertedInput();
  Date faelligkeit = faelligkeitField.getConvertedInput();
  if (faelligkeit == null && zahlungsZiel != null) {
    Date date = datumField.getConvertedInput();
    if (date == null) {
      date = getData().getDatum();
    }
    if (date != null) {
      final DayHolder day = new DayHolder(date);
      day.add(Calendar.DAY_OF_YEAR, zahlungsZiel);
      faelligkeit = day.getDate();
      getData().setFaelligkeit(day.getSQLDate());
      faelligkeitPanel.markModelAsChanged();
    }
  }
  getData().recalculate();

  final BigDecimal zahlBetrag = zahlBetragField.getConvertedInput();
  final boolean zahlBetragExists = (zahlBetrag != null && zahlBetrag.compareTo(BigDecimal.ZERO) != 0);
  if (bezahlDatum != null && zahlBetragExists == false) {
    addError("fibu.rechnung.error.bezahlDatumUndZahlbetragRequired");
  }
  if (faelligkeit == null) {
    addFieldRequiredError("fibu.rechnung.faelligkeit");
  }
}