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