gemcap-be-common 1.3.6 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -893,7 +893,7 @@ class LoanTransactionsService {
|
|
|
893
893
|
const dailyTransactions = await this.getUnsentTransactionForDate(borrower._id.toString(), effectiveDate);
|
|
894
894
|
const transactionIds = dailyTransactions.map((tr) => tr._id.toString());
|
|
895
895
|
const { transactions, transactionIdsToMark, } = await this.getTransactionReport(transactionIds, borrower._id.toString(), effectiveDate);
|
|
896
|
-
console.log(borrower.name,
|
|
896
|
+
console.log(borrower.name, transactionIdsToMark.length);
|
|
897
897
|
if (transactionIdsToMark.length === 0) {
|
|
898
898
|
return;
|
|
899
899
|
}
|
|
@@ -994,7 +994,7 @@ export class LoanTransactionsService {
|
|
|
994
994
|
transactions,
|
|
995
995
|
transactionIdsToMark,
|
|
996
996
|
} = await this.getTransactionReport(transactionIds, borrower._id.toString(), effectiveDate);
|
|
997
|
-
console.log(borrower.name,
|
|
997
|
+
console.log(borrower.name, transactionIdsToMark.length);
|
|
998
998
|
if (transactionIdsToMark.length === 0) {
|
|
999
999
|
return;
|
|
1000
1000
|
}
|