Package br.com.visualmidia.persistence.add

Examples of br.com.visualmidia.persistence.add.AddExpenditures


      if (levelBillPlan == 1) {
        try {
          String id = (editAccountId == null) ? (String) system.query(new GetExpenditureId()) : editAccountId;

          String categoryId = billPlan.get(billPlanCombo.getText()).getId();
          system.execute(new AddExpenditures(id, descriptionText.getText(), 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()));
        } catch (TransactionDateException e) {
          MessageBox box = new MessageBox(parent.getShell(), IMessageProvider.INFORMATION);
View Full Code Here

TOP

Related Classes of br.com.visualmidia.persistence.add.AddExpenditures

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.