Java BigDecimal getDepositAmount(Boolean isReceipt, BigDecimal amount)

Here you can find the source of getDepositAmount(Boolean isReceipt, BigDecimal amount)

Description

get Deposit Amount

License

Open Source License

Declaration

public static BigDecimal getDepositAmount(Boolean isReceipt,
            BigDecimal amount) 

Method Source Code

//package com.java2s;
/*/*  ww  w.ja  v  a2  s .com*/
 *************************************************************************
 * The contents of this file are subject to the Openbravo  Public  License
 * Version  1.0  (the  "License"),  being   the  Mozilla   Public  License
 * Version 1.1  with a permitted attribution clause; you may not  use this
 * file except in compliance with the License. You  may  obtain  a copy of
 * the License at http://www.openbravo.com/legal/license.html
 * Software distributed under the License  is  distributed  on  an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific  language  governing  rights  and  limitations
 * under the License.
 * The Original Code is Openbravo ERP.
 * The Initial Developer of the Original Code is Openbravo SLU
 * All portions are Copyright (C) 2010-2015 Openbravo SLU
 * All Rights Reserved.
 * Contributor(s):  ______________________________________.
 *************************************************************************
 */

import java.math.BigDecimal;

public class Main {
    public static BigDecimal getDepositAmount(Boolean isReceipt,
            BigDecimal amount) {
        BigDecimal deposit = BigDecimal.ZERO;
        if (isReceipt) {
            if (amount.compareTo(BigDecimal.ZERO) == 1) {
                deposit = amount;
            }
            // else received payment was negative so treat as payment
        } else {
            if (amount.compareTo(BigDecimal.ZERO) == -1) {
                // Negative payment out is a deposit
                deposit = amount.abs();
            }
        }
        return deposit;
    }
}

Related

  1. getBalance(BigDecimal balance)
  2. getBtcToBuy(BigDecimal ask, BigDecimal bid, BigDecimal fee, BigDecimal scalpAmount)
  3. getByteArrayFromBigDecimalArray(Object value)
  4. getConversionUsdBased(final String destinycode, final BigDecimal amount, final BigDecimal usdBasedBaseRate, BigDecimal usdBasedDestinyRate)
  5. getDateFromRank(BigDecimal rank)
  6. getDigits(BigDecimal value)
  7. getDistance(BigDecimal sourceLatitude, BigDecimal sourceLongitude, BigDecimal destLatitude, BigDecimal destLongitude)
  8. getDividedBigDecimal(final int nDividend, final int nDivisor)
  9. getDoubleBigDecimal(String amount, int afterDot)