@prutech/compliance 1.0.230 → 1.0.231

Sign up to get free protection for your applications and to get access to all the features.
@@ -4716,6 +4716,8 @@ class IsarWorkListItemModel {
4716
4716
  this.isUpdateLegacy = get(data, 'isUpdateLegacy');
4717
4717
  this.appointmentId = get(data, 'appointmentId');
4718
4718
  this.wlIsarId = get(data, 'wlIsarId');
4719
+ this.infractionDate = get(data, 'infractionDate');
4720
+ this.updateLegacyDate = get(data, 'updateLegacyDate');
4719
4721
  }
4720
4722
  }
4721
4723
 
@@ -4978,6 +4980,12 @@ const columnDefs$8 = [
4978
4980
  {
4979
4981
  headerName: 'Job Center', field: 'jobCenter.value', resizable: true, sortable: true, filter: true,
4980
4982
  },
4983
+ {
4984
+ headerName: 'Infraction Date', field: 'infractionDate', valueFormatter: dateOnlyFormatter, resizable: true, sortable: true, filter: true,
4985
+ },
4986
+ {
4987
+ headerName: 'Update Legacy Date', field: 'updateLegacyDate', valueFormatter: dateOnlyFormatter, resizable: true, sortable: true, filter: true,
4988
+ }
4981
4989
  ];
4982
4990
 
4983
4991
  class IsarWorkSheetComponent {
@@ -10933,6 +10941,8 @@ class NonComplianceOutreachListItem {
10933
10941
  this.caseId = get(data, 'caseId');
10934
10942
  this.wlNonComplianceOutreachId = get(data, 'wlNonComplianceOutreachId');
10935
10943
  this.infractionType = get(data, 'infractionType');
10944
+ this.ncoEntryDate = get(data, 'ncoEntryDate');
10945
+ this.remainingDays = get(data, 'remainingDays');
10936
10946
  }
10937
10947
  }
10938
10948
 
@@ -12346,6 +12356,12 @@ const worklistColumnDefs$7 = [
12346
12356
  {
12347
12357
  headerName: 'Infraction Type', field: 'infractionType', sortable: true, resizable: true, filter: true,
12348
12358
  },
12359
+ {
12360
+ headerName: 'NCO Entry Date', field: 'ncoEntryDate', valueFormatter: dateOnlyFormatter, sortable: true, resizable: true, filter: true,
12361
+ },
12362
+ {
12363
+ headerName: 'Remaining Days', field: 'remainingDays', sortable: true, resizable: true, filter: true,
12364
+ },
12349
12365
  ];
12350
12366
 
12351
12367
  class NonComplianceOutreachGridComponent extends AbstractComponent {