gemcap-be-common 1.4.39 → 1.4.41
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.
|
@@ -126,7 +126,11 @@ export declare enum EProspectFileGroups {
|
|
|
126
126
|
ownershipStructure = "ownershipStructure",
|
|
127
127
|
organizationStructure = "organizationStructure",
|
|
128
128
|
financialsBankInformation = "financialsBankInformation",
|
|
129
|
+
historicalFinancials = "historicalFinancials",
|
|
130
|
+
projections = "projections",
|
|
131
|
+
accountsPayables = "accountsPayables",
|
|
129
132
|
collateralSales = "collateralSales",
|
|
133
|
+
receivables = "receivables",
|
|
130
134
|
taxes = "taxes",
|
|
131
135
|
taxesIncome = "taxesIncome",
|
|
132
136
|
taxesProperty = "taxesProperty",
|
package/models/Prospect.model.js
CHANGED
|
@@ -171,7 +171,11 @@ var EProspectFileGroups;
|
|
|
171
171
|
EProspectFileGroups["ownershipStructure"] = "ownershipStructure";
|
|
172
172
|
EProspectFileGroups["organizationStructure"] = "organizationStructure";
|
|
173
173
|
EProspectFileGroups["financialsBankInformation"] = "financialsBankInformation";
|
|
174
|
+
EProspectFileGroups["historicalFinancials"] = "historicalFinancials";
|
|
175
|
+
EProspectFileGroups["projections"] = "projections";
|
|
176
|
+
EProspectFileGroups["accountsPayables"] = "accountsPayables";
|
|
174
177
|
EProspectFileGroups["collateralSales"] = "collateralSales";
|
|
178
|
+
EProspectFileGroups["receivables"] = "receivables";
|
|
175
179
|
EProspectFileGroups["taxes"] = "taxes";
|
|
176
180
|
EProspectFileGroups["taxesIncome"] = "taxesIncome";
|
|
177
181
|
EProspectFileGroups["taxesProperty"] = "taxesProperty";
|
|
@@ -309,40 +313,44 @@ const externalProspectInitialInfo = () => ({
|
|
|
309
313
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation]: [
|
|
310
314
|
{
|
|
311
315
|
_id: (0, main_helper_1.getUUID)(),
|
|
312
|
-
_sharepointFolder:
|
|
316
|
+
_sharepointFolder: 'historicalFinancials',
|
|
313
317
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
314
318
|
},
|
|
315
319
|
{
|
|
316
320
|
_id: (0, main_helper_1.getUUID)(),
|
|
317
|
-
_sharepointFolder:
|
|
321
|
+
_sharepointFolder: 'projections',
|
|
318
322
|
title: 'Currently Monthly Projections',
|
|
319
323
|
},
|
|
320
324
|
{
|
|
321
325
|
_id: (0, main_helper_1.getUUID)(),
|
|
322
|
-
_sharepointFolder:
|
|
326
|
+
_sharepointFolder: 'accountsPayables',
|
|
323
327
|
title: 'Last 3 Month Bank Statements',
|
|
324
328
|
},
|
|
325
329
|
],
|
|
326
330
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
327
331
|
{
|
|
328
332
|
_id: (0, main_helper_1.getUUID)(),
|
|
329
|
-
_sharepointFolder:
|
|
333
|
+
_sharepointFolder: 'accountsPayables',
|
|
330
334
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
331
335
|
},
|
|
332
336
|
{
|
|
333
337
|
_id: (0, main_helper_1.getUUID)(),
|
|
338
|
+
_sharepointFolder: 'receivables',
|
|
334
339
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
335
340
|
},
|
|
336
341
|
{
|
|
337
342
|
_id: (0, main_helper_1.getUUID)(),
|
|
343
|
+
_sharepointFolder: 'receivables',
|
|
338
344
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
339
345
|
},
|
|
340
346
|
{
|
|
341
347
|
_id: (0, main_helper_1.getUUID)(),
|
|
348
|
+
_sharepointFolder: 'receivables',
|
|
342
349
|
title: 'Excel Format: Outstanding / held checks list',
|
|
343
350
|
},
|
|
344
351
|
{
|
|
345
352
|
_id: (0, main_helper_1.getUUID)(),
|
|
353
|
+
_sharepointFolder: 'receivables',
|
|
346
354
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
347
355
|
},
|
|
348
356
|
],
|
package/models/Prospect.model.ts
CHANGED
|
@@ -254,7 +254,11 @@ export enum EProspectFileGroups {
|
|
|
254
254
|
ownershipStructure = 'ownershipStructure',
|
|
255
255
|
organizationStructure = 'organizationStructure',
|
|
256
256
|
financialsBankInformation = 'financialsBankInformation',
|
|
257
|
+
historicalFinancials = 'historicalFinancials',
|
|
258
|
+
projections = 'projections',
|
|
259
|
+
accountsPayables = 'accountsPayables',
|
|
257
260
|
collateralSales = 'collateralSales',
|
|
261
|
+
receivables = 'receivables',
|
|
258
262
|
taxes = 'taxes',
|
|
259
263
|
taxesIncome = 'taxesIncome',
|
|
260
264
|
taxesProperty = 'taxesProperty',
|
|
@@ -402,40 +406,44 @@ export const externalProspectInitialInfo = (): IProspectExternalNew => ({
|
|
|
402
406
|
[ExternalProspectStageTwoTables.financialInformation]: [
|
|
403
407
|
{
|
|
404
408
|
_id: getUUID(),
|
|
405
|
-
_sharepointFolder:
|
|
409
|
+
_sharepointFolder: 'historicalFinancials',
|
|
406
410
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
407
411
|
},
|
|
408
412
|
{
|
|
409
413
|
_id: getUUID(),
|
|
410
|
-
_sharepointFolder:
|
|
414
|
+
_sharepointFolder: 'projections',
|
|
411
415
|
title: 'Currently Monthly Projections',
|
|
412
416
|
},
|
|
413
417
|
{
|
|
414
418
|
_id: getUUID(),
|
|
415
|
-
_sharepointFolder:
|
|
419
|
+
_sharepointFolder: 'accountsPayables',
|
|
416
420
|
title: 'Last 3 Month Bank Statements',
|
|
417
421
|
},
|
|
418
422
|
],
|
|
419
423
|
[ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
420
424
|
{
|
|
421
425
|
_id:getUUID(),
|
|
422
|
-
_sharepointFolder:
|
|
426
|
+
_sharepointFolder: 'accountsPayables',
|
|
423
427
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
424
428
|
},
|
|
425
429
|
{
|
|
426
430
|
_id: getUUID(),
|
|
431
|
+
_sharepointFolder: 'receivables',
|
|
427
432
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
428
433
|
},
|
|
429
434
|
{
|
|
430
435
|
_id: getUUID(),
|
|
436
|
+
_sharepointFolder: 'receivables',
|
|
431
437
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
432
438
|
},
|
|
433
439
|
{
|
|
434
440
|
_id: getUUID(),
|
|
441
|
+
_sharepointFolder: 'receivables',
|
|
435
442
|
title: 'Excel Format: Outstanding / held checks list',
|
|
436
443
|
},
|
|
437
444
|
{
|
|
438
445
|
_id: getUUID(),
|
|
446
|
+
_sharepointFolder: 'receivables',
|
|
439
447
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
440
448
|
},
|
|
441
449
|
],
|