gemcap-be-common 1.4.49 → 1.4.50
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/models/Prospect.model.js
CHANGED
|
@@ -319,44 +319,44 @@ const externalProspectInitialInfo = () => ({
|
|
|
319
319
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.financialInformation]: [
|
|
320
320
|
{
|
|
321
321
|
_id: (0, main_helper_1.getUUID)(),
|
|
322
|
-
_sharepointFolder:
|
|
322
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
|
|
323
323
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
324
324
|
},
|
|
325
325
|
{
|
|
326
326
|
_id: (0, main_helper_1.getUUID)(),
|
|
327
|
-
_sharepointFolder:
|
|
327
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_projections,
|
|
328
328
|
title: 'Currently Monthly Projections',
|
|
329
329
|
},
|
|
330
330
|
{
|
|
331
331
|
_id: (0, main_helper_1.getUUID)(),
|
|
332
|
-
_sharepointFolder:
|
|
332
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_bankStatements,
|
|
333
333
|
title: 'Last 3 Month Bank Statements',
|
|
334
334
|
},
|
|
335
335
|
],
|
|
336
336
|
[ProspectInfoStageTwo_model_1.ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
337
337
|
{
|
|
338
338
|
_id: (0, main_helper_1.getUUID)(),
|
|
339
|
-
_sharepointFolder:
|
|
339
|
+
_sharepointFolder: EProspectFileGroups.accountsPayables,
|
|
340
340
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
341
341
|
},
|
|
342
342
|
{
|
|
343
343
|
_id: (0, main_helper_1.getUUID)(),
|
|
344
|
-
_sharepointFolder:
|
|
344
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
345
345
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
346
346
|
},
|
|
347
347
|
{
|
|
348
348
|
_id: (0, main_helper_1.getUUID)(),
|
|
349
|
-
_sharepointFolder:
|
|
349
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
350
350
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
351
351
|
},
|
|
352
352
|
{
|
|
353
353
|
_id: (0, main_helper_1.getUUID)(),
|
|
354
|
-
_sharepointFolder:
|
|
354
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
355
355
|
title: 'Excel Format: Outstanding / held checks list',
|
|
356
356
|
},
|
|
357
357
|
{
|
|
358
358
|
_id: (0, main_helper_1.getUUID)(),
|
|
359
|
-
_sharepointFolder:
|
|
359
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
360
360
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
361
361
|
},
|
|
362
362
|
],
|
package/models/Prospect.model.ts
CHANGED
|
@@ -416,44 +416,44 @@ export const externalProspectInitialInfo = (): IProspectExternalNew => ({
|
|
|
416
416
|
[ExternalProspectStageTwoTables.financialInformation]: [
|
|
417
417
|
{
|
|
418
418
|
_id: getUUID(),
|
|
419
|
-
_sharepointFolder:
|
|
419
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_historicalFinancials,
|
|
420
420
|
title: 'Prior 2 years and YTD Income Statement & Balance Sheet in Excel Format',
|
|
421
421
|
},
|
|
422
422
|
{
|
|
423
423
|
_id: getUUID(),
|
|
424
|
-
_sharepointFolder:
|
|
424
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_projections,
|
|
425
425
|
title: 'Currently Monthly Projections',
|
|
426
426
|
},
|
|
427
427
|
{
|
|
428
428
|
_id: getUUID(),
|
|
429
|
-
_sharepointFolder:
|
|
429
|
+
_sharepointFolder: EProspectFileGroups.financialsBankInformation_bankStatements,
|
|
430
430
|
title: 'Last 3 Month Bank Statements',
|
|
431
431
|
},
|
|
432
432
|
],
|
|
433
433
|
[ExternalProspectStageTwoTables.accountsReceivables]: [
|
|
434
434
|
{
|
|
435
435
|
_id: getUUID(),
|
|
436
|
-
_sharepointFolder:
|
|
436
|
+
_sharepointFolder: EProspectFileGroups.accountsPayables,
|
|
437
437
|
title: 'Excel Format: Current and past 12 months A/P aging report by invoice date',
|
|
438
438
|
},
|
|
439
439
|
{
|
|
440
440
|
_id: getUUID(),
|
|
441
|
-
_sharepointFolder:
|
|
441
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
442
442
|
title: 'Excel Format: Current and past 12 months A/R aging report by invoice date',
|
|
443
443
|
},
|
|
444
444
|
{
|
|
445
445
|
_id: getUUID(),
|
|
446
|
-
_sharepointFolder:
|
|
446
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
447
447
|
title: 'Excel Format: A/R dilution (write-offs) for the trailing 3 months and 12 months',
|
|
448
448
|
},
|
|
449
449
|
{
|
|
450
450
|
_id: getUUID(),
|
|
451
|
-
_sharepointFolder:
|
|
451
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
452
452
|
title: 'Excel Format: Outstanding / held checks list',
|
|
453
453
|
},
|
|
454
454
|
{
|
|
455
455
|
_id: getUUID(),
|
|
456
|
-
_sharepointFolder:
|
|
456
|
+
_sharepointFolder: EProspectFileGroups.receivables,
|
|
457
457
|
title: 'Excel Format: Average A/R and A/P turnover in days for the trailing 3 months and 12 months',
|
|
458
458
|
},
|
|
459
459
|
],
|