gemcap-be-common 1.5.70 → 1.5.72
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/classes/sales-item.d.ts +4 -0
- package/classes/sales-item.js +2 -0
- package/classes/sales-item.ts +4 -0
- package/db/bbcDates.db.d.ts +3 -0
- package/db/bbcSheets.db.d.ts +1 -0
- package/db/collateral-adjustments.db.d.ts +1 -0
- package/db/collaterals.db.d.ts +5 -1
- package/db/reserve.db.d.ts +1 -0
- package/helpers/column-desciptions.helper.js +14 -0
- package/helpers/column-desciptions.helper.ts +14 -0
- package/interfaces/collaterals.interface.d.ts +1 -0
- package/models/AccountPayableItem.model.d.ts +13 -9
- package/models/BBCSheet.model.d.ts +4 -0
- package/models/InventoryAvailability.model.d.ts +16 -12
- package/models/InventoryAvailabilityItem.model.d.ts +7 -3
- package/models/InventoryItem.model.d.ts +25 -21
- package/models/QueryResult.model.d.ts +5 -0
- package/models/ReceivableAvailability.model.d.ts +28 -24
- package/models/ReceivableAvailabilityItem.model.d.ts +61 -57
- package/models/ReceivableAvailabilityManualSummary.model.d.ts +5 -0
- package/models/ReceivableItem.model.d.ts +16 -12
- package/models/SalesItem.model.d.ts +24 -12
- package/models/SalesItem.model.js +8 -0
- package/models/SalesItem.model.ts +10 -0
- package/models/_index.d.ts +13 -9
- package/package.json +1 -1
- package/services/borrowers.service.d.ts +4 -2
- package/services/brokers.service.d.ts +12 -2
- package/services/collateral-adjustments.service.d.ts +1 -0
- package/services/collaterals.service.d.ts +2 -0
- package/services/compliance-borrowers.service.d.ts +15 -3
- package/services/compliance-borrowers.service.js +1 -1
- package/services/compliance-borrowers.service.ts +2 -2
- package/services/equipment.service.d.ts +1 -0
- package/services/file-manager.service.d.ts +1 -0
- package/services/financial-compliance.service.d.ts +2 -0
- package/services/financial-spreading.service.d.ts +2 -0
- package/services/inventory.service.d.ts +1 -0
- package/services/loan-charges.service.d.ts +1 -0
- package/services/loan-payments.service.d.ts +1 -0
- package/services/loan-statement-status.service.d.ts +10 -0
- package/services/loan-statement.service.d.ts +8 -0
- package/services/loan-transactions.service.d.ts +8 -0
- package/services/quickbooks.service.d.ts +2 -0
- package/services/reports.service.d.ts +2 -0
- package/services/reserve.service.d.ts +1 -0
- package/services/signs.service.d.ts +1 -0
- package/services/uploads.service.d.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
- package/db/new-summary.d.ts +0 -31
- package/db/new-summary.js +0 -1450
- package/db/new-summary.ts +0 -1691
- package/models/Sales.model.ts +0 -85
package/db/new-summary.d.ts
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { IExcelJsCell } from '../helpers/excel.helper';
|
|
2
|
-
import { FinancialSpreadingService } from '../services/financial-spreading.service';
|
|
3
|
-
import { YieldService } from '../services/yield.service';
|
|
4
|
-
import { AvailabilityService } from '../services/availability.service';
|
|
5
|
-
import { BorrowerService } from '../services/borrowers.service';
|
|
6
|
-
import { BorrowerSummaryService } from '../services/borrower-summary.service';
|
|
7
|
-
import { ComplianceBorrowersService } from '../services/compliance-borrowers.service';
|
|
8
|
-
import { LoanChargesService } from '../services/loan-charges.service';
|
|
9
|
-
import { LoanTransactionsService } from '../services/loan-transactions.service';
|
|
10
|
-
import { SignsService } from '../services/signs.service';
|
|
11
|
-
import { MonthEndDataService } from '../services/month-end-data.service';
|
|
12
|
-
export declare class NewSummaryExcel {
|
|
13
|
-
private readonly availabilityService;
|
|
14
|
-
private readonly borrowerService;
|
|
15
|
-
private readonly borrowerSummaryService;
|
|
16
|
-
private readonly complianceBorrowersService;
|
|
17
|
-
private readonly financialSpreadingService;
|
|
18
|
-
private readonly loanChargesService;
|
|
19
|
-
private readonly loanTransactionsService;
|
|
20
|
-
private readonly signsService;
|
|
21
|
-
private readonly yieldService;
|
|
22
|
-
private readonly monthEndDataService;
|
|
23
|
-
constructor(availabilityService: AvailabilityService, borrowerService: BorrowerService, borrowerSummaryService: BorrowerSummaryService, complianceBorrowersService: ComplianceBorrowersService, financialSpreadingService: FinancialSpreadingService, loanChargesService: LoanChargesService, loanTransactionsService: LoanTransactionsService, signsService: SignsService, yieldService: YieldService, monthEndDataService: MonthEndDataService);
|
|
24
|
-
private getMainData;
|
|
25
|
-
private getAllBorrowersSummary;
|
|
26
|
-
private getBorrowerSummary;
|
|
27
|
-
private getPaidAmount;
|
|
28
|
-
getNewSummaryData(borrowerIds: string[], start: Date, end: Date): Promise<{
|
|
29
|
-
[p: string]: IExcelJsCell[][];
|
|
30
|
-
}>;
|
|
31
|
-
}
|