Examples of PaymentMoney


Examples of br.com.visualmidia.business.PaymentMoney

    item.setText(1, new SimpleDateFormat("EEE, dd/MM/yyyy HH:mm:ss").format(operation.getDateTime().getDate()));
    item.setText(2, system.getBillPlan().get(operation.getCategoryId()).getDescription());
    item.setText(3, operation.getDescription());
    String text = "";
    if(operation.getPaymentType() == null){
      text = new PaymentMoney().getType();
    }else{
      if(operation.getPaymentType().getType().equals("Dep�sito em Conta")){
        try {
          PaymentBankAccountPayed paymentBank = (PaymentBankAccountPayed) operation.getPaymentType();
          Account account = (Account) system.query(new GetAccounts(paymentBank.getAccountId()));
View Full Code Here

Examples of br.com.visualmidia.business.PaymentMoney

    private void addNewOperation() {
      if((extractBankItem.getAccount() == null ? new AccountsDialog(getShell(), this).open() == TitleAreaDialog.OK : true)) {
        BillCategory billCategory = system.getBillPlan().get(billPlanCombo.getText());
          String categoryId = billCategory.getId();
          new MoneyTransaction().accountOperationAndLinkExtractItem(account, categoryId, new GDDate(dateText.getText()), descriptionText.getText(), new Money(valueText.getText()).getFloatValue(), new PaymentMoney(), extractBankItem.getId());
          close();
      }
  }
View Full Code Here

Examples of br.com.visualmidia.business.PaymentMoney

  public PaymentTypeCombo(Composite parent, int style, boolean isDebit) {
    this.parent = parent;
    this.isDebit = isDebit;
    createCombo(parent, style);
    createListener();
    paymentType = new PaymentMoney();
  }
View Full Code Here

Examples of br.com.visualmidia.business.PaymentMoney

    this.parent = parent;
    this.dialog = dialog;
    this.isDebit = isDebit;
    createCombo(parent, style);
    createListener();
    paymentType = new PaymentMoney();
  }
View Full Code Here

Examples of br.com.visualmidia.business.PaymentMoney

  private void createListener() {
    combo.addListener(SWT.Selection, new Listener() {
      public void handleEvent(Event event) {
        if (combo.getText().equals("Dinheiro")) {
          paymentType = new PaymentMoney();
        } else if (combo.getText().equals("Cheque")) {
          openCheckInformationDialog(false);
        } else if (combo.getText().equals("Cart�o cr�dito")) {
          paymentType = new PaymentCard(true);
        } else if (combo.getText().equals("Cart�o d�bito")) {
View Full Code Here

Examples of br.com.visualmidia.business.PaymentMoney

    return operations;
  }
   
    public PaymentMoney getPaymentMoney() {
        if(paymentMoney == null)
          paymentMoney = new PaymentMoney();
       
        return paymentMoney;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.