@prutech/compliance 1.0.232 → 1.0.233

Sign up to get free protection for your applications and to get access to all the features.
@@ -4032,6 +4032,9 @@ class FtrWorkListItemModel {
4032
4032
  this.isFTR = get(data, 'isFTR');
4033
4033
  this.wlFtrId = get(data, 'wlFtrId');
4034
4034
  this.jobCenter = get(data, 'jobCenter');
4035
+ this.providerAssignment = get(data, 'providerAssignment');
4036
+ this.assignmentSiteName = get(data, 'assignmentSiteName');
4037
+ this.infractionDate = get(data, 'infractionDate');
4035
4038
  }
4036
4039
  }
4037
4040
 
@@ -4364,6 +4367,21 @@ const columnDefs$9 = [
4364
4367
  {
4365
4368
  headerName: 'Individual Status', field: 'individualStatus.value', sortable: true, resizable: true, filter: true,
4366
4369
  },
4370
+ {
4371
+ headerName: 'Provider Assignment', field: 'providerAssignment', sortable: true, resizable: true, filter: true,
4372
+ },
4373
+ {
4374
+ headerName: 'Assignment Site Name', field: 'assignmentSiteName', sortable: true, resizable: true, filter: true,
4375
+ },
4376
+ {
4377
+ headerName: 'Infraction Date', field: 'infractionDate', sortable: true, resizable: true, valueFormatter: dateOnlyFormatter, filter: 'agDateColumnFilter',
4378
+ filterParams: {
4379
+ comparator: dateComparatorFn,
4380
+ filterOptions: dateFilterOptions,
4381
+ buttons: ['clear', 'apply'],
4382
+ suppressAndOrCondition: true,
4383
+ },
4384
+ }
4367
4385
  ];
4368
4386
 
4369
4387
  class FtrWorkSheetComponent {