getSellerTransaction.setIncludeContainingOrder(Boolean.TRUE);
getSellerTransaction.setDetailLevel(detailLevels);
if (UtilValidate.isEmpty(fromDate)) {
getSellerTransaction.setNumberOfDays(30);
}
TimeFilter modifiedTimeFilter = new TimeFilter(fromDate, toDate);
getSellerTransaction.setModifiedTimeFilter(modifiedTimeFilter);
TransactionType[] transactions = getSellerTransaction.getSellerTransactions();
for (int tranCount = 0; tranCount < transactions.length; tranCount++) {
TransactionType transaction = transactions[tranCount];
if (UtilValidate.isNotEmpty(transaction.getContainingOrder())) {