Examples of Money


Examples of org.jugile.util.Money

      if (f.getAnnotation(Fld.class) != null) {
        if (val != null) {
          if (f.getType() == Time.class) {
            o = new Time(val,TSFORMAT);
          } else if (f.getType() == Money.class) {
            o = new Money(parseIntSafe(val));
          } else if (f.getType() == String.class) {
            if (val.equals(""+NULLCHAR+NULLCHAR)) val = ""+NULLCHAR;
            o = val;
          } else if (f.getType() == int.class) {
            o = parseIntSafe(val);
View Full Code Here

Examples of org.mifosplatform.organisation.monetary.domain.Money

            reinvestedDeposit.processAccountUponActivation(fmt);
            reinvestedDeposit.updateMaturityDateAndAmount(mc, isPreMatureClosure,
                isSavingsInterestPostingAtCurrentPeriodEnd, financialYearBeginningMonth);
            this.savingsAccountRepository.save(reinvestedDeposit);

            Money amountForDeposit = reinvestedDeposit.activateWithBalance();
            if (amountForDeposit.isGreaterThanZero()) {
                handleRDDeposit(reinvestedDeposit, fmt, reinvestedDeposit.getActivationLocalDate(), amountForDeposit.getAmount(),
                        paymentDetail, isRegularTransaction);
            }
            reinvestedDeposit.updateMaturityDateAndAmount(mc, isPreMatureClosure,
                isSavingsInterestPostingAtCurrentPeriodEnd, financialYearBeginningMonth);
            this.savingsAccountRepository.save(reinvestedDeposit);
View Full Code Here

Examples of org.opentripplanner.routing.core.Money

        path = spt.getPath(gg.getVertex("Caltrain:Mountain View Caltrain"), true);

        FareService fareService = gg.getService(FareService.class);
       
        Fare cost = fareService.getCost(path);
        assertEquals(cost.getFare(FareType.regular), new Money(new WrappedCurrency("USD"), 425));
    }
View Full Code Here

Examples of pl.com.bottega.ecommerce.sharedkernel.Money

  @EventListener
  public void handle(CustomerStatusChangedEvent event){
    OrderQuery orderQuery = new OrderQuery(null, event.getCustomerId());
    PaginatedResult<OrderDto> orders = orderFinder.query(orderQuery);
   
    Money discount = calculateDiscout(event.getCustomerId());
   
    for(OrderDto dto : orders.getItems()){
      discountingService.applyDiscount(dto.getOrderId(), discount);
    }
  }
View Full Code Here

Examples of ru.vagrant_ai.questionmarkgame.obj.add.Money

      Light element = light_array.get(i);
      element.update();
    }
    for (int i = 0; i < money_array.size(); ++i) //money update
    {
      Money element = money_array.get(i);
      element.update();
    }
    for (int i = 0; i < money_array.size(); ++i) //money remove
    {
      Money element = money_array.get(i);
      if (element.state == 0)
        money_array.remove(i);
    }
    for (int i = 0; i < sniper_array.size(); ++i) //sniper update
    {
      Sniper element = sniper_array.get(i);
      element.update();
    }
    if (knife)
      knifeUpdate();
    if (GameplayState.monster_controller.getState() == WS.BREAK)
    {
View Full Code Here

Examples of ru.vagrant_ai.questionmarkgame.obj.add.Money

      Light element = light_array.get(i);
      element.render(g);
    }
    for (int i = 0; i < money_array.size(); ++i)
    {
      Money element = money_array.get(i);
      element.render();
    }
    //shop render in Background
    //sniper render in Background   
  }
View Full Code Here

Examples of ru.vagrant_ai.questionmarkgame.obj.add.Money

    //sniper render in Background   
  }
 
  public static void addMoney(int x, int y, byte quantity)
  {
    Money money = new Money(x, y, quantity);
    money_array.add(money);
    return;
  }
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.