Home
last modified time | relevance | path

Searched refs:matchedSplit (Results 1 – 6 of 6) sorted by relevance

/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/converter/
H A Dtransactionmatchfinder.cpp46 matchedSplit.reset(); in findMatch()
63 if (matchedSplit.isNull()) { in getMatchedSplit()
67 return *matchedSplit; in getMatchedSplit()
141 matchedSplit.reset(new MyMoneySplit(split)); in findMatchingSplit()
148 matchedSplit.reset(new MyMoneySplit(split)); in findMatchingSplit()
H A Dmymoneystatementreader.h150 MyMoneySplit matchedSplit,
157 MyMoneySplit matchedSplit,
H A Dmymoneystatementreader.cpp1293 MyMoneySplit matchedSplit = existingTrMatchFinder.getMatchedSplit(); in processTransactionEntry() local
1294 …handleMatchingOfExistingTransaction(matcher, matchedTransaction, matchedSplit, transactionUnderImp… in processTransactionEntry()
1303 MyMoneySplit matchedSplit = scheduledTrMatchFinder.getMatchedSplit(); in processTransactionEntry() local
1306 …handleMatchingOfScheduledTransaction(matcher, matchedSchedule, matchedSplit, transactionUnderImpor… in processTransactionEntry()
1462 MyMoneySplit matchedSplit, in handleMatchingOfExistingTransaction() argument
1478 matcher.match(matchedTransaction, matchedSplit, importedTransaction, importedSplit, true); in handleMatchingOfExistingTransaction()
1486 MyMoneySplit matchedSplit, in handleMatchingOfScheduledTransaction() argument
1502 if (matchedSplit.shares() != importedSplit.shares() && !matchedSchedule.isFixed()) { in handleMatchingOfScheduledTransaction()
1520 matchedSplit.setShares(importedSplit.shares()); in handleMatchingOfScheduledTransaction()
1521 matchedSplit.setValue(importedSplit.value()); in handleMatchingOfScheduledTransaction()
[all …]
H A Dtransactionmatchfinder.h85 …QScopedPointer<MyMoneySplit> matchedSplit; //!< the split that matches the importe… variable
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/widgets/
H A Dstdtransactionmatched.cpp103 MyMoneySplit matchedSplit; in registerCellText() local
105 matchedSplit = matchedTransaction.splitById(d->m_split.value("kmm-match-split")); in registerCellText()
170 if (!matchedSplit.memo().isEmpty() && memo != matchedSplit.memo()) { in registerCellText()
171 int pos = memo.lastIndexOf(matchedSplit.memo()); in registerCellText()
/dports/finance/kmymoney/kmymoney-5.1.1/kmymoney/plugins/xml/tests/
H A Dmymoneyxmlcontenthandler-test.cpp391 MyMoneySplit matchedSplit; in writeTransaction() local
392 matchedSplit.setMemo(matchedTx.memo()); in writeTransaction()
393 matchedSplit.setAccountId("A000076"); in writeTransaction()
394 matchedTx.addSplit(matchedSplit); in writeTransaction()
479 QCOMPARE(tread.splits().at(0).memo(), matchedSplit.memo()); in writeTransaction()