Examples of SplitTxn


Examples of com.moneydance.apps.md.model.SplitTxn

     *
     * @return lot match table for security
     */
    public Hashtable<Long, Double> getLotMatchTable() {
        Hashtable<Long, Double> lotMatchTable = new Hashtable<>();
        SplitTxn securitySplit = currentTrans.getReferenceAccount().getCurrencyType()
                .equals(currentInfo.getCashCurrencyWrapper().getCurrencyType()) ? null : TxnUtil
                .getSecurityPart(currentTrans.getParentTxn());
        Hashtable<String, String> splitTable = null;
        if (securitySplit != null)
            splitTable = TxnUtil.parseCostBasisTag(securitySplit);
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.