Package br.com.visualmidia.persistence

Examples of br.com.visualmidia.persistence.GetIncomingId


        } catch (Exception e) {
          logger.error("Get Expenditure Exception: ", e);
        }
      } else {
        try {
          String id = (editAccountId == null) ? (String) system.query(new GetIncomingId()) : editAccountId;
          String categoryId = billPlan.get(billPlanCombo.getText()).getId();
          system.execute(new AddIncoming(id, descriptionText.getText(), new GDDate(nextPaymentDateText.getText()), frequencyCombo
              .getSelectionIndex(), Integer.parseInt(numberOfOcurrenciesText.getText()), new Money(
                  (valueText.getText().equals("") ? VALUE_0_00 : valueText.getText())), (fixedValue.getSelectionIndex() == 0) ? true
                      : false, categoryId, observation.getText()));
View Full Code Here

TOP

Related Classes of br.com.visualmidia.persistence.GetIncomingId

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.