cat-qw-lib 2.6.52 → 2.6.53
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/fesm2022/cat-qw-lib.mjs
CHANGED
|
@@ -503,7 +503,11 @@ const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST = {
|
|
|
503
503
|
referredDate: 'w-2',
|
|
504
504
|
appId: 'w-2',
|
|
505
505
|
age: 'w-1',
|
|
506
|
-
tasks: 'w-1'
|
|
506
|
+
tasks: 'w-1',
|
|
507
|
+
productName: 'w-4',
|
|
508
|
+
baseRate: 'w-2',
|
|
509
|
+
monthlyPayment: 'w-2',
|
|
510
|
+
submittedDate: 'w-3'
|
|
507
511
|
};
|
|
508
512
|
const FIELD_DISPLAY_NAMES = {
|
|
509
513
|
riskRating: 'Risk Rating',
|
|
@@ -517,7 +521,11 @@ const FIELD_DISPLAY_NAMES = {
|
|
|
517
521
|
referredDate: 'Referred Days',
|
|
518
522
|
pending: 'Age',
|
|
519
523
|
lending: 'Type',
|
|
520
|
-
tasks: 'Tasks'
|
|
524
|
+
tasks: 'Tasks',
|
|
525
|
+
productName: 'Product',
|
|
526
|
+
baseRate: 'Base Rate',
|
|
527
|
+
monthlyPayment: 'Monthly Payment',
|
|
528
|
+
submittedDate: 'Submitted Date'
|
|
521
529
|
};
|
|
522
530
|
// ...existing code...
|
|
523
531
|
const QUEUE_RECORD_TABLE_COLUMN_ORDER = [
|
|
@@ -531,7 +539,11 @@ const QUEUE_RECORD_TABLE_COLUMN_ORDER = [
|
|
|
531
539
|
'sla',
|
|
532
540
|
'valuationStatus',
|
|
533
541
|
'lending',
|
|
534
|
-
'tasks'
|
|
542
|
+
'tasks',
|
|
543
|
+
'productName', // Product
|
|
544
|
+
'baseRate', // Base Rate
|
|
545
|
+
'monthlyPayment', // Monthly Payment
|
|
546
|
+
'submittedDate' // Submitted Date
|
|
535
547
|
];
|
|
536
548
|
// ...existing code...
|
|
537
549
|
|