issues.add(new MissingBuySellPortfolioIssue(client, suspect.account, suspect.transaction));
iterAccount.remove();
}
else
{
BuySellEntry entry = new BuySellEntry(match.portfolio, suspect.account);
entry.setType(match.transaction.getType());
entry.setDate(match.transaction.getDate());
entry.setSecurity(match.transaction.getSecurity());
entry.setShares(match.transaction.getShares());
entry.setFees(match.transaction.getFees());
entry.setTaxes(match.transaction.getTaxes());
entry.setAmount(match.transaction.getAmount());
entry.insert();
match.portfolio.getTransactions().remove(match.transaction);
suspect.account.getTransactions().remove(suspect.transaction);
portfolioTransactions.remove(match);