@prutech/compliance 1.0.226 → 1.0.227
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/conciliation-appointment-work-list/components/context-menu/conciliation-context-menu.component.mjs +3 -2
- package/esm2020/lib/conciliation-appointment-work-list/constants/worklist_id.mjs +5 -0
- package/esm2020/lib/conciliation-appointment-work-list/effects/conciliation-appointment-work-list.effect.mjs +6 -4
- package/esm2020/lib/conciliation-appointment-work-list/models/save-conciliation-status-payload.model.mjs +2 -1
- package/esm2020/lib/conciliation-appointment-work-list/models/save-status-response.mjs +2 -1
- package/esm2020/lib/conciliation-appointment-work-list/services/conciliation-appointment-work-list.service.mjs +10 -4
- package/esm2020/lib/noi-work-list/components/context-menu/context-menu.component.mjs +3 -1
- package/esm2020/lib/noi-work-list/effects/noi-work-list.effect.mjs +4 -3
- package/esm2020/lib/noi-work-list/models/save-noi-status-payload.model.mjs +2 -1
- package/esm2020/lib/pre-conciliation-work-list/components/review-details-dialog/review-details-dialog.component.mjs +3 -3
- package/esm2020/lib/pre-conciliation-work-list/models/review-details.model.mjs +4 -2
- package/esm2020/lib/pre-noi-work-list/components/pre-noi-context-menu/pre-noi-context-menu.component.mjs +25 -23
- package/esm2020/lib/pre-noi-work-list/effects/conciliation-appointment-work-list.effect.mjs +12 -4
- package/esm2020/lib/pre-noi-work-list/models/save-prenoi-status-payload.model.mjs +4 -1
- package/esm2020/lib/pre-noi-work-list/models/save-status-response.mjs +4 -1
- package/esm2020/lib/telephone-settled-conference/components/context-menu/context-menu.component.mjs +100 -55
- package/esm2020/lib/telephone-settled-conference/effects/telephone-or-settled-conference-list.effect.mjs +17 -9
- package/esm2020/lib/telephone-settled-conference/models/save-conciliation-status-payload.model.mjs +5 -1
- package/esm2020/lib/telephone-settled-conference/models/save-status-response.mjs +5 -1
- package/esm2020/lib/telephone-settled-conference/models/telephone-or-settled-conference-work-list-item.model.mjs +1 -1
- package/fesm2015/prutech-compliance.mjs +152 -89
- package/fesm2015/prutech-compliance.mjs.map +1 -1
- package/fesm2020/prutech-compliance.mjs +185 -96
- package/fesm2020/prutech-compliance.mjs.map +1 -1
- package/lib/conciliation-appointment-work-list/constants/worklist_id.d.ts +4 -0
- package/lib/conciliation-appointment-work-list/models/save-conciliation-status-payload.model.d.ts +1 -0
- package/lib/conciliation-appointment-work-list/models/save-status-response.d.ts +1 -0
- package/lib/conciliation-appointment-work-list/services/conciliation-appointment-work-list.service.d.ts +3 -1
- package/lib/noi-work-list/models/save-noi-status-payload.model.d.ts +1 -0
- package/lib/pre-noi-work-list/effects/conciliation-appointment-work-list.effect.d.ts +3 -1
- package/lib/pre-noi-work-list/models/save-prenoi-status-payload.model.d.ts +3 -0
- package/lib/pre-noi-work-list/models/save-status-response.d.ts +3 -0
- package/lib/telephone-settled-conference/effects/telephone-or-settled-conference-list.effect.d.ts +3 -1
- package/lib/telephone-settled-conference/models/save-conciliation-status-payload.model.d.ts +4 -0
- package/lib/telephone-settled-conference/models/save-status-response.d.ts +4 -0
- package/lib/telephone-settled-conference/models/telephone-or-settled-conference-work-list-item.model.d.ts +1 -1
- package/package.json +1 -1
@@ -15,12 +15,13 @@ import { createFeatureSelector, createSelector, select, StoreModule } from '@ngr
|
|
15
15
|
import * as i5$1 from '@prutech/identity-client';
|
16
16
|
import { ApiInterceptorService } from '@prutech/identity-client';
|
17
17
|
import * as i2$2 from '@prutech/components';
|
18
|
-
import { Lookup, SeamsHttpResponse, handleSuccess, handleLoadFail, AbstractComponent, PtDynamicElement, ClientServicesScreenComponent, CoreModule, DynamicFormsModule, TabsModule, ContextMenuComponent as ContextMenuComponent$3, AgGridComponent, invalidPhoneNumber, invalidEmail, NgxMaskModule, PtDynamicType, SignatureModalComponent, SignatureService, AssessmentQuestion } from '@prutech/components';
|
18
|
+
import { dateFormat as dateFormat$2, Lookup, SeamsHttpResponse, handleSuccess, handleLoadFail, AbstractComponent, PtDynamicElement, ClientServicesScreenComponent, CoreModule, DynamicFormsModule, TabsModule, ContextMenuComponent as ContextMenuComponent$3, AgGridComponent, invalidPhoneNumber, invalidEmail, NgxMaskModule, PtDynamicType, SignatureModalComponent, SignatureService, AssessmentQuestion } from '@prutech/components';
|
19
19
|
import { assign, get, map, toString, isNil, filter, find, toNumber, split, trim, set, mapValues, concat, isEmpty, isEqual, includes, last, first, has, forEach, cloneDeep, head, nth, chain, reduce, sortBy, invoke, keys, keyBy, size, isNumber, sum, values, some, isNaN, range, join, compact, uniqBy, flatMap, floor, padStart } from 'lodash';
|
20
20
|
import { createEntityAdapter } from '@ngrx/entity';
|
21
21
|
import { __decorate } from 'tslib';
|
22
22
|
import { of, BehaviorSubject, combineLatest, Subject } from 'rxjs';
|
23
23
|
import { map as map$1, switchMap, catchError, tap, takeUntil, filter as filter$1, distinctUntilChanged, take, exhaustMap, startWith } from 'rxjs/operators';
|
24
|
+
import moment from 'moment';
|
24
25
|
import * as i3 from 'ngx-toastr';
|
25
26
|
import { ToastrModule } from 'ngx-toastr';
|
26
27
|
import { ClientSideRowModelModule } from '@ag-grid-community/client-side-row-model';
|
@@ -36,7 +37,6 @@ import * as i6 from '@angular/material/input';
|
|
36
37
|
import { MatInputModule } from '@angular/material/input';
|
37
38
|
import * as i1$2 from '@angular/router';
|
38
39
|
import { RouterModule } from '@angular/router';
|
39
|
-
import moment from 'moment';
|
40
40
|
import * as i7$1 from '@angular/material/core';
|
41
41
|
import { MatNativeDateModule, DateAdapter, MAT_DATE_LOCALE, MAT_DATE_FORMATS } from '@angular/material/core';
|
42
42
|
import * as i8 from '@angular/material/datepicker';
|
@@ -249,7 +249,7 @@ class ReviewDetails {
|
|
249
249
|
this.caseStatus = get(data, 'caseStatus');
|
250
250
|
this.caseType = get(data, 'caseType');
|
251
251
|
this.localOffice = get(data, 'localOffice');
|
252
|
-
this.dob = get(data, 'dob');
|
252
|
+
this.dob = moment(get(data, 'dob')).format(dateFormat$2);
|
253
253
|
this.language = get(data, 'language');
|
254
254
|
this.childCare = get(data, 'childCare');
|
255
255
|
this.esCode = get(data, 'esCode');
|
@@ -554,10 +554,10 @@ class ReviewDetailsDialogComponent extends AbstractComponent {
|
|
554
554
|
}
|
555
555
|
}
|
556
556
|
ReviewDetailsDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ReviewDetailsDialogComponent, deps: [{ token: i1$1.MatDialogRef }, { token: i1$2.Router }, { token: PreConciliationWorkListService }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component });
|
557
|
-
ReviewDetailsDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ReviewDetailsDialogComponent, selector: "prutech-review-details-dialog", usesInheritance: true, ngImport: i0, template: "<prutech-loader *ngIf=\"(loading | async)\"></prutech-loader>\r\n<prutech-dialog-box class=\"prutech-dialog-box\">\r\n <div class=\"header\">Review Details</div>\r\n <div class=\"body prutech-dialog-content\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\" fxLayoutGap=\"10px\">\r\n <div fxLayout=\"row\" fxLayoutAlign=\"space-between start\">\r\n <!-- left -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case #</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsCaseNumber }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">First Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.firstName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Last Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.lastName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Date of Birth</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.dob | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Local Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.localOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Household Size</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.householdSize }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Shelter Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.shelterType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">CA ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.esCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">RAR Information</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.raDetails }}</div>\r\n </div>\r\n <ng-template [ngIf]=\"hasAssignmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"assignment\"></ng-container>\r\n </ng-template>\r\n <ng-template [ngIf]=\"hasAppointmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"appointment\"></ng-container>\r\n </ng-template>\r\n </div>\r\n <!-- middle -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">SNAP ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.snapEsCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Individual Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.individualStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Form Language</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.language }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Residential Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.residentialAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Mailing Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.mailingAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Program Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.programStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">FFR Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.nextFFR | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Child Care</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.childCare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Car Fare</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.carFare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Income</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.income }}</div>\r\n </div>\r\n </div>\r\n <!-- right-->\r\n <div fxFlex=\"20%\" fxLayout=\"column\" fxLayoutAlign=\"start start\">\r\n <!-- <div *ngIf=\"!!reviewDetails?.caseId\">\r\n <prutech-rar-modal [caseId]=\"reviewDetails?.caseId\"></prutech-rar-modal>\r\n </div> -->\r\n <button mat-button color=\"primary\" (click)=\"navigateToFia3a()\">FIA3A</button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"dialogboxfooter\">\r\n <button mat-flat-button (click)=\"closeModal()\">EXIT</button>\r\n </div>\r\n</prutech-dialog-box>\r\n\r\n<ng-template #assignment>\r\n <div class=\"sub-title-header\">Assignment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n<ng-template #appointment>\r\n <div class=\"sub-title-header\">Appointment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n", styles: [""], components: [{ type: i2$2.LoaderComponent, selector: "prutech-loader" }, { type: i2$2.DialogBoxComponent, selector: "prutech-dialog-box" }, { type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i5.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { type: i4$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "async": i4$1.AsyncPipe, "date": i4$1.DatePipe } });
|
557
|
+
ReviewDetailsDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ReviewDetailsDialogComponent, selector: "prutech-review-details-dialog", usesInheritance: true, ngImport: i0, template: "<prutech-loader *ngIf=\"(loading | async)\"></prutech-loader>\r\n<prutech-dialog-box class=\"prutech-dialog-box\">\r\n <div class=\"header\">Review Details</div>\r\n <div class=\"body prutech-dialog-content\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\" fxLayoutGap=\"10px\">\r\n <div fxLayout=\"row\" fxLayoutAlign=\"space-between start\">\r\n <!-- left -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case #</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsCaseNumber }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">First Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.firstName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Last Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.lastName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Date of Birth</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.dob }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Local Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.localOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Household Size</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.householdSize }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Shelter Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.shelterType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">CA ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.esCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">RAR Information</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.raDetails }}</div>\r\n </div>\r\n <ng-template [ngIf]=\"hasAssignmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"assignment\"></ng-container>\r\n </ng-template>\r\n <ng-template [ngIf]=\"hasAppointmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"appointment\"></ng-container>\r\n </ng-template>\r\n </div>\r\n <!-- middle -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">SNAP ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.snapEsCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Individual Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.individualStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Form Language</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.language }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Residential Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.residentialAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Mailing Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.mailingAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Program Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.programStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">FFR Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.nextFFR | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Child Care</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.childCare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Car Fare</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.carFare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Income</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.income }}</div>\r\n </div>\r\n </div>\r\n <!-- right-->\r\n <div fxFlex=\"20%\" fxLayout=\"column\" fxLayoutAlign=\"start start\">\r\n <!-- <div *ngIf=\"!!reviewDetails?.caseId\">\r\n <prutech-rar-modal [caseId]=\"reviewDetails?.caseId\"></prutech-rar-modal>\r\n </div> -->\r\n <button mat-button color=\"primary\" (click)=\"navigateToFia3a()\">FIA3A</button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"dialogboxfooter\">\r\n <button mat-flat-button (click)=\"closeModal()\">EXIT</button>\r\n </div>\r\n</prutech-dialog-box>\r\n\r\n<ng-template #assignment>\r\n <div class=\"sub-title-header\">Assignment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n<ng-template #appointment>\r\n <div class=\"sub-title-header\">Appointment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n", styles: [""], components: [{ type: i2$2.LoaderComponent, selector: "prutech-loader" }, { type: i2$2.DialogBoxComponent, selector: "prutech-dialog-box" }, { type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }], directives: [{ type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i5.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { type: i4$1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], pipes: { "async": i4$1.AsyncPipe, "date": i4$1.DatePipe } });
|
558
558
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ReviewDetailsDialogComponent, decorators: [{
|
559
559
|
type: Component,
|
560
|
-
args: [{ selector: 'prutech-review-details-dialog', template: "<prutech-loader *ngIf=\"(loading | async)\"></prutech-loader>\r\n<prutech-dialog-box class=\"prutech-dialog-box\">\r\n <div class=\"header\">Review Details</div>\r\n <div class=\"body prutech-dialog-content\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\" fxLayoutGap=\"10px\">\r\n <div fxLayout=\"row\" fxLayoutAlign=\"space-between start\">\r\n <!-- left -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case #</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsCaseNumber }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">First Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.firstName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Last Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.lastName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Date of Birth</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.dob
|
560
|
+
args: [{ selector: 'prutech-review-details-dialog', template: "<prutech-loader *ngIf=\"(loading | async)\"></prutech-loader>\r\n<prutech-dialog-box class=\"prutech-dialog-box\">\r\n <div class=\"header\">Review Details</div>\r\n <div class=\"body prutech-dialog-content\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\" fxLayoutGap=\"10px\">\r\n <div fxLayout=\"row\" fxLayoutAlign=\"space-between start\">\r\n <!-- left -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case #</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsCaseNumber }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">First Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.firstName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Last Name</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.lastName }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Date of Birth</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.dob }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Local Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.localOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Household Size</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.householdSize }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Shelter Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.shelterType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Case Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.caseType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">CA ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.esCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">RAR Information</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.raDetails }}</div>\r\n </div>\r\n <ng-template [ngIf]=\"hasAssignmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"assignment\"></ng-container>\r\n </ng-template>\r\n <ng-template [ngIf]=\"hasAppointmentInfo()\">\r\n <ng-container *ngTemplateOutlet=\"appointment\"></ng-container>\r\n </ng-template>\r\n </div>\r\n <!-- middle -->\r\n <div fxFlex=\"40%\" fxLayout=\"column\" fxLayoutAlign=\"start stretch\">\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">SNAP ES Code</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.snapEsCode }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Individual Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.individualStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">WMS Office</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.wmsOffice }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Form Language</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.language }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Residential Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.residentialAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Mailing Address</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.mailingAddress }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Program Status</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.programStatus }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">FFR Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.nextFFR | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Child Care</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.childCare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Car Fare</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.carFare }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Income</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.income }}</div>\r\n </div>\r\n </div>\r\n <!-- right-->\r\n <div fxFlex=\"20%\" fxLayout=\"column\" fxLayoutAlign=\"start start\">\r\n <!-- <div *ngIf=\"!!reviewDetails?.caseId\">\r\n <prutech-rar-modal [caseId]=\"reviewDetails?.caseId\"></prutech-rar-modal>\r\n </div> -->\r\n <button mat-button color=\"primary\" (click)=\"navigateToFia3a()\">FIA3A</button>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"dialogboxfooter\">\r\n <button mat-flat-button (click)=\"closeModal()\">EXIT</button>\r\n </div>\r\n</prutech-dialog-box>\r\n\r\n<ng-template #assignment>\r\n <div class=\"sub-title-header\">Assignment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Assignment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.assignmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n<ng-template #appointment>\r\n <div class=\"sub-title-header\">Appointment Information</div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentType }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Appointment Site</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentSite }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Date</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionDate | date: dateFormat }}</div>\r\n </div>\r\n <div fxFlex fxLayout=\"row\" fxLayoutAlign=\"start start\" class=\"readonly-group\">\r\n <div fxFlex=\"40%\" class=\"label\">Infraction Type</div>\r\n <div fxFlex class=\"value\">{{ reviewDetails?.appointmentInfractionType }}</div>\r\n </div>\r\n</ng-template>\r\n", styles: [""] }]
|
561
561
|
}], ctorParameters: function () {
|
562
562
|
return [{ type: i1$1.MatDialogRef }, { type: i1$2.Router }, { type: PreConciliationWorkListService }, { type: undefined, decorators: [{
|
563
563
|
type: Inject,
|
@@ -2036,6 +2036,7 @@ class SaveStatusResponse$2 {
|
|
2036
2036
|
this.originalCategoryId = get(data, 'originalCategoryId');
|
2037
2037
|
this.assessmentId = get(data, 'assessmentId');
|
2038
2038
|
this.letterType = get(data, 'letterType');
|
2039
|
+
this.infractionDate = get(data, 'infractionDate');
|
2039
2040
|
}
|
2040
2041
|
}
|
2041
2042
|
|
@@ -2116,10 +2117,16 @@ class ConciliationAppointmentWorkListService {
|
|
2116
2117
|
dispatchPrintDocument(payload) {
|
2117
2118
|
this.store.dispatch(new PrintDocumentAction(payload));
|
2118
2119
|
}
|
2119
|
-
printDocument(letterType, assessmentId, CmsCaseID) {
|
2120
|
+
printDocument(letterType, assessmentId, CmsCaseID, worklistType, infractionDate) {
|
2120
2121
|
if (assessmentId !== undefined) {
|
2121
|
-
|
2122
|
-
.
|
2122
|
+
if (infractionDate != null) {
|
2123
|
+
return this.http.get(`${get(this.environment, 'utilityQueryService')}Document/GenerateGoodCauseLetter/${letterType}/${CmsCaseID}/${assessmentId}/${worklistType}?infractionDate=${infractionDate}`)
|
2124
|
+
.pipe(map$1((data) => get(data, 'responseObject')));
|
2125
|
+
}
|
2126
|
+
else {
|
2127
|
+
return this.http.get(`${get(this.environment, 'utilityQueryService')}Document/GenerateGoodCauseLetter/${letterType}/${CmsCaseID}/${assessmentId}/${worklistType}`)
|
2128
|
+
.pipe(map$1((data) => get(data, 'responseObject')));
|
2129
|
+
}
|
2123
2130
|
}
|
2124
2131
|
else {
|
2125
2132
|
return this.http.get(`${get(this.environment, 'utilityQueryService')}Document/GenerateGoodCauseLetter/${letterType}/${CmsCaseID}`)
|
@@ -9932,6 +9939,11 @@ function getGrantOption$2(payload) {
|
|
9932
9939
|
return GrantOptionType$2.Other;
|
9933
9940
|
}
|
9934
9941
|
|
9942
|
+
const conciliationId = 1;
|
9943
|
+
const preNoiId = 2;
|
9944
|
+
const noiId = 3;
|
9945
|
+
const teleConferenceId = 4;
|
9946
|
+
|
9935
9947
|
class ConciliationAppointmentWorkListEffect {
|
9936
9948
|
constructor(conciliationWorkListService, toastr, dialog, router, tabService, actions$) {
|
9937
9949
|
this.conciliationWorkListService = conciliationWorkListService;
|
@@ -9958,8 +9970,9 @@ class ConciliationAppointmentWorkListEffect {
|
|
9958
9970
|
const grantOption = getGrantOption$2(get(action, 'payload'));
|
9959
9971
|
const actionId = get(action, 'payload.actionId');
|
9960
9972
|
const originalCategoryId = get(action, 'payload.originalCategoryId');
|
9973
|
+
const infractionDate = get(action, 'payload.infractionDate');
|
9961
9974
|
if (actionId === goodCauseGrantedActionId$2) {
|
9962
|
-
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId') });
|
9975
|
+
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId'), worklistType: conciliationId, infractionDate: infractionDate, });
|
9963
9976
|
if (originalCategoryId === csAppointments || originalCategoryId === csAssignments || originalCategoryId === tagAppointments || originalCategoryId === tagAssignments) {
|
9964
9977
|
this.router.navigate(['/ea-ep/' + get(action, 'payload.caseId')], { queryParams: { isconciliationWL: true } });
|
9965
9978
|
}
|
@@ -10064,14 +10077,14 @@ class ConciliationAppointmentWorkListEffect {
|
|
10064
10077
|
this.saveBatchAppointmentSuccessAction$ = this.actions$.pipe(ofType(ConciliationAppointmentWorkListActionTypes.SubmitBatchPoolAppointmentSuccess), map$1((action) => {
|
10065
10078
|
// handleSuccess(this.toastr);
|
10066
10079
|
handleSuccess(this.toastr);
|
10067
|
-
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.eaepAssessmentId'), CmsCaseID: get(action, 'payload.caseId') });
|
10080
|
+
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.eaepAssessmentId'), CmsCaseID: get(action, 'payload.caseId'), worklistType: conciliationId, infractionDate: get(action, 'payload.infractionDate'), });
|
10068
10081
|
this.conciliationWorkListService.dispatchLoadConciliationWorkList();
|
10069
10082
|
}));
|
10070
10083
|
this.saveBatchAppointmentFailAction$ = this.actions$.pipe(ofType(ConciliationAppointmentWorkListActionTypes.SubmitBatchPoolAppointmentFail), map$1((action) => get(action, 'payload')), tap((response) => {
|
10071
10084
|
handleLoadFail(this.toastr, map(get(response, 'seamsErrorCodes'), 'value'));
|
10072
10085
|
}));
|
10073
10086
|
this.printDocument$ = this.actions$.pipe(ofType(ConciliationAppointmentWorkListActionTypes.PrintDocument), map$1((action) => action.payload), switchMap((payload) => {
|
10074
|
-
return this.conciliationWorkListService.printDocument(payload.letterType, payload.assessmentId, payload.CmsCaseID)
|
10087
|
+
return this.conciliationWorkListService.printDocument(payload.letterType, payload.assessmentId, payload.CmsCaseID, conciliationId, payload.infractionDate)
|
10075
10088
|
.pipe(
|
10076
10089
|
// tslint:disable-next-line:no-any
|
10077
10090
|
map$1((response) => {
|
@@ -10347,6 +10360,7 @@ class SaveConciliationStatusPayload {
|
|
10347
10360
|
this.originalCategoryId = get(data, 'originalCategoryId');
|
10348
10361
|
this.assessmentId = get(data, 'assessmentId');
|
10349
10362
|
this.letterType = get(data, 'letterType');
|
10363
|
+
this.infractionDate = get(data, 'infractionDate');
|
10350
10364
|
}
|
10351
10365
|
}
|
10352
10366
|
|
@@ -11476,7 +11490,7 @@ class ConciliationContextMenuComponent extends AbstractComponent {
|
|
11476
11490
|
// } else if (letterTypeId === 2) {
|
11477
11491
|
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId') });
|
11478
11492
|
// }
|
11479
|
-
const payload = new SaveConciliationStatusPayload(Object.assign(Object.assign({}, res), { isWantToSendClientBack: null, actionId: goodCauseGrantedActionId$2, wlConciliationId: get(item, 'wlConciliationId'), appointmentId: null, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId }));
|
11493
|
+
const payload = new SaveConciliationStatusPayload(Object.assign(Object.assign({}, res), { isWantToSendClientBack: null, actionId: goodCauseGrantedActionId$2, wlConciliationId: get(item, 'wlConciliationId'), appointmentId: null, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
11480
11494
|
this.conciliationWorkListService.dispatchSaveStatus(payload);
|
11481
11495
|
});
|
11482
11496
|
}
|
@@ -11544,7 +11558,7 @@ class ConciliationContextMenuComponent extends AbstractComponent {
|
|
11544
11558
|
else if ((item === null || item === void 0 ? void 0 : item.originalCategoryId) === wecareAppointments ||
|
11545
11559
|
(item === null || item === void 0 ? void 0 : item.originalCategoryId) === ivapAssignments ||
|
11546
11560
|
(item === null || item === void 0 ? void 0 : item.originalCategoryId) === vrsAppointments) {
|
11547
|
-
const payload = new SaveConciliationStatusPayload(Object.assign(Object.assign({}, res), { actionId: goodCauseGrantedActionId$2, wlConciliationId: item === null || item === void 0 ? void 0 : item.wlConciliationId, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId }));
|
11561
|
+
const payload = new SaveConciliationStatusPayload(Object.assign(Object.assign({}, res), { actionId: goodCauseGrantedActionId$2, wlConciliationId: item === null || item === void 0 ? void 0 : item.wlConciliationId, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
11548
11562
|
this.conciliationWorkListService.dispatchSaveStatus(payload);
|
11549
11563
|
//Batch pool logic added to SubmitGrantedConciliation api
|
11550
11564
|
// const payload: SubmitBatchPoolAppointmentModel = new SubmitBatchPoolAppointmentModel({
|
@@ -13084,13 +13098,13 @@ class NoiWorkListEffect {
|
|
13084
13098
|
handleSuccess(this.toastr);
|
13085
13099
|
/*if (get(action, 'payload.actionId') === goodCauseGrantedActionId) {
|
13086
13100
|
return new OpenAppointmentDialogAction(get(action, 'payload.caseId'));
|
13087
|
-
}
|
13101
|
+
}
|
13088
13102
|
return new LoadNoiWorkListAction();
|
13089
13103
|
}*/
|
13090
13104
|
const actionId = get(action, 'payload.actionId');
|
13091
13105
|
const originalCategoryId = get(action, 'payload.originalCategoryId');
|
13092
13106
|
if (actionId === goodCauseGrantedActionId$2) {
|
13093
|
-
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId') });
|
13107
|
+
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId'), worklistType: noiId, infractionDate: get(action, 'payload.infractionDate') });
|
13094
13108
|
if (originalCategoryId === csAppointments || originalCategoryId === csAssignments || originalCategoryId === tagAppointments || originalCategoryId === tagAssignments) {
|
13095
13109
|
this.router.navigate(['/ea-ep/' + get(action, 'payload.caseId')], { queryParams: { isconciliationWL: true } });
|
13096
13110
|
}
|
@@ -13194,6 +13208,7 @@ class SaveNoiStatusPayload {
|
|
13194
13208
|
this.letterType = get(data, 'letterType');
|
13195
13209
|
this.caseId = get(data, 'caseId');
|
13196
13210
|
this.assessmentId = get(data, 'assessmentId');
|
13211
|
+
this.infractionDate = get(data, 'infractionDate');
|
13197
13212
|
}
|
13198
13213
|
}
|
13199
13214
|
|
@@ -13514,13 +13529,13 @@ class ContextMenuNoiListComponent extends AbstractComponent {
|
|
13514
13529
|
// } else if (letterTypeId === 2) {
|
13515
13530
|
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId') });
|
13516
13531
|
// }
|
13517
|
-
const payload = new SaveNoiStatusPayload(Object.assign(Object.assign({}, res), { wlNOIId: item.wlNOIId, actionId: goodCauseGrantedActionId$2, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId }));
|
13532
|
+
const payload = new SaveNoiStatusPayload(Object.assign(Object.assign({}, res), { wlNOIId: item.wlNOIId, actionId: goodCauseGrantedActionId$2, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
13518
13533
|
this.noiWorkListService.dispatchSaveStatus(payload);
|
13519
13534
|
});
|
13520
13535
|
if ((item === null || item === void 0 ? void 0 : item.originalCategoryId) === jcAppointments ||
|
13521
13536
|
(item === null || item === void 0 ? void 0 : item.originalCategoryId) === splRefAppointments ||
|
13522
13537
|
get(item, 'originalCategoryId') === null) {
|
13523
|
-
const payload = new SaveNoiStatusPayload(Object.assign(Object.assign({}, res), { wlNOIId: item.wlNOIId, actionId: goodCauseGrantedActionId$2 }));
|
13538
|
+
const payload = new SaveNoiStatusPayload(Object.assign(Object.assign({}, res), { wlNOIId: item.wlNOIId, actionId: goodCauseGrantedActionId$2, infractionDate: get(item, 'infractionDate') }));
|
13524
13539
|
this.noiWorkListService.dispatchSaveStatus(payload);
|
13525
13540
|
//Tags Misiing
|
13526
13541
|
this.tabService.dispatchAddTab({
|
@@ -29841,6 +29856,9 @@ class SaveStatusResponse$1 {
|
|
29841
29856
|
this.caseId = get(data, 'caseId');
|
29842
29857
|
this.actionId = get(data, 'actionId');
|
29843
29858
|
this.wlPreNoiId = get(data, 'wlPreNoiId');
|
29859
|
+
this.letterType = get(data, 'letterType'),
|
29860
|
+
this.assessmentId = get(data, 'assessmentId'),
|
29861
|
+
this.infractionDate = get(data, 'infractionDate');
|
29844
29862
|
}
|
29845
29863
|
}
|
29846
29864
|
|
@@ -29977,6 +29995,9 @@ class SavePreNoiStatusPayload {
|
|
29977
29995
|
this.outreachMode = get(data, 'outreachMode');
|
29978
29996
|
this.outreachOutcome = get(data, 'email');
|
29979
29997
|
this.wlPreNoiId = get(data, 'wlPreNoiId');
|
29998
|
+
this.letterType = get(data, 'letterType'),
|
29999
|
+
this.assessmentId = get(data, 'assessmentId'),
|
30000
|
+
this.infractionDate = get(data, 'infractionDate');
|
29980
30001
|
}
|
29981
30002
|
}
|
29982
30003
|
|
@@ -30520,27 +30541,25 @@ class PreNoiContextMenuComponent extends AbstractComponent {
|
|
30520
30541
|
dialogRef.afterClosed()
|
30521
30542
|
.pipe(takeUntil(this.componentDestroyed))
|
30522
30543
|
.subscribe((letterTypeId) => {
|
30523
|
-
if (letterTypeId === 1) {
|
30524
|
-
|
30544
|
+
// if (letterTypeId === 1) {
|
30545
|
+
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId'), worklistType: preNoiId ,infractionDate: get(item,'infractionDate') });
|
30546
|
+
// } else if (letterTypeId === 2) {
|
30547
|
+
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId'),worklistType: preNoiId ,infractionDate: get(item,'infractionDate') });
|
30548
|
+
// }
|
30549
|
+
const payload = new SavePreNoiStatusPayload(Object.assign(Object.assign({}, res), { actionId: goodCauseGrantedActionId$1, wlPreNoiId: item === null || item === void 0 ? void 0 : item.wlPreNoiId, letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), caseId: get(item, 'cmsCaseId'), infractionDate: get(item, 'infractionDate') }));
|
30550
|
+
if (get(item, 'infractedType.value.lookupId') === InfractionTypeEnum.FTRAppointment
|
30551
|
+
&& ((get(item, 'infractedAt.value.lookupId') === InfractionAtEnum.CareerServices && this.user
|
30552
|
+
&& (this.user.isJosWorker || this.user.isJosSupervisor || this.user.isOutStationWorker || this.user.isOutStationSupervisor)) // br 8, 9
|
30553
|
+
|| (get(item, 'infractedAt.value.lookupId') === InfractionAtEnum.CareerAdvance && this.user
|
30554
|
+
&& (this.user.isJosWorker || this.user.isJosSupervisor || this.user.isOutStationWorker || this.user.isOutStationSupervisor)))) {
|
30555
|
+
// br 10, 11
|
30556
|
+
this.openYesNoConfirmationDialog(payload, item);
|
30525
30557
|
}
|
30526
|
-
else
|
30527
|
-
|
30558
|
+
else {
|
30559
|
+
// send to BE
|
30560
|
+
this.preNoiWorkListService.dispatchSaveStatus(payload);
|
30528
30561
|
}
|
30529
30562
|
});
|
30530
|
-
const payload = new SavePreNoiStatusPayload(Object.assign(Object.assign({}, res), { actionId: goodCauseGrantedActionId$1, wlPreNoiId: item === null || item === void 0 ? void 0 : item.wlPreNoiId }));
|
30531
|
-
//
|
30532
|
-
if (get(item, 'infractedType.value.lookupId') === InfractionTypeEnum.FTRAppointment
|
30533
|
-
&& ((get(item, 'infractedAt.value.lookupId') === InfractionAtEnum.CareerServices && this.user
|
30534
|
-
&& (this.user.isJosWorker || this.user.isJosSupervisor || this.user.isOutStationWorker || this.user.isOutStationSupervisor)) // br 8, 9
|
30535
|
-
|| (get(item, 'infractedAt.value.lookupId') === InfractionAtEnum.CareerAdvance && this.user
|
30536
|
-
&& (this.user.isJosWorker || this.user.isJosSupervisor || this.user.isOutStationWorker || this.user.isOutStationSupervisor)))) {
|
30537
|
-
// br 10, 11
|
30538
|
-
this.openYesNoConfirmationDialog(payload, item);
|
30539
|
-
}
|
30540
|
-
else {
|
30541
|
-
// send to BE
|
30542
|
-
this.preNoiWorkListService.dispatchSaveStatus(payload);
|
30543
|
-
}
|
30544
30563
|
}
|
30545
30564
|
});
|
30546
30565
|
}
|
@@ -30770,13 +30789,14 @@ function getGrantOption$1(payload) {
|
|
30770
30789
|
}
|
30771
30790
|
|
30772
30791
|
class PreNoiWorkListEffect {
|
30773
|
-
constructor(PreNoiWorkListService, toastr, dialog, router, tabService, actions
|
30792
|
+
constructor(PreNoiWorkListService, toastr, dialog, router, tabService, actions$, conciliationWorkListService) {
|
30774
30793
|
this.PreNoiWorkListService = PreNoiWorkListService;
|
30775
30794
|
this.toastr = toastr;
|
30776
30795
|
this.dialog = dialog;
|
30777
30796
|
this.router = router;
|
30778
30797
|
this.tabService = tabService;
|
30779
30798
|
this.actions$ = actions$;
|
30799
|
+
this.conciliationWorkListService = conciliationWorkListService;
|
30780
30800
|
this.loadWorkList$ = this.actions$.pipe(ofType(PreNoiWorkListActionTypes.LoadPreNoiWorkList), switchMap(() => {
|
30781
30801
|
return this.PreNoiWorkListService.loadWorkList().pipe(map$1((data) => new LoadPreNoiWorkListSuccessAction(data)),
|
30782
30802
|
// tslint:disable-next-line:no-any
|
@@ -30792,6 +30812,10 @@ class PreNoiWorkListEffect {
|
|
30792
30812
|
}));
|
30793
30813
|
this.saveStatusSuccess$ = this.actions$.pipe(ofType(PreNoiWorkListActionTypes.SaveStatusSuccess), tap((action) => {
|
30794
30814
|
handleSuccess(this.toastr);
|
30815
|
+
const actionId = get(action, 'payload.actionId');
|
30816
|
+
if (actionId === goodCauseGrantedActionId$2) {
|
30817
|
+
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId'), worklistType: preNoiId, infractionDate: get(action, 'payload.infractionDate'), });
|
30818
|
+
}
|
30795
30819
|
const grantOption = getGrantOption$1(get(action, 'payload'));
|
30796
30820
|
if (grantOption === GrantOptionType$1.Appointment) {
|
30797
30821
|
// this.PreNoiWorkListService.dispatchOpenAppointmentDialog(get(action, 'payload.caseId'));
|
@@ -30900,7 +30924,7 @@ class PreNoiWorkListEffect {
|
|
30900
30924
|
}));
|
30901
30925
|
}
|
30902
30926
|
}
|
30903
|
-
PreNoiWorkListEffect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PreNoiWorkListEffect, deps: [{ token: PreNoiWorkListService }, { token: i3.ToastrService }, { token: i1$1.MatDialog }, { token: i1$2.Router }, { token: i2$2.TabService }, { token: i2$1.Actions }], target: i0.ɵɵFactoryTarget.Injectable });
|
30927
|
+
PreNoiWorkListEffect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PreNoiWorkListEffect, deps: [{ token: PreNoiWorkListService }, { token: i3.ToastrService }, { token: i1$1.MatDialog }, { token: i1$2.Router }, { token: i2$2.TabService }, { token: i2$1.Actions }, { token: ConciliationAppointmentWorkListService }], target: i0.ɵɵFactoryTarget.Injectable });
|
30904
30928
|
PreNoiWorkListEffect.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PreNoiWorkListEffect });
|
30905
30929
|
__decorate([
|
30906
30930
|
Effect()
|
@@ -30955,7 +30979,7 @@ __decorate([
|
|
30955
30979
|
], PreNoiWorkListEffect.prototype, "saveStatusFailAction$", void 0);
|
30956
30980
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: PreNoiWorkListEffect, decorators: [{
|
30957
30981
|
type: Injectable
|
30958
|
-
}], ctorParameters: function () { return [{ type: PreNoiWorkListService }, { type: i3.ToastrService }, { type: i1$1.MatDialog }, { type: i1$2.Router }, { type: i2$2.TabService }, { type: i2$1.Actions }]; }, propDecorators: { loadWorkList$: [], saveStatus$: [], loadWorkListFailAction$: [], saveStatusSuccess$: [], openDialog$: [], SaveSchedulingCallBackDetail$: [], savSuccessAction$: [], savFailAction$: [], SaveOutreachWorklistDetail$: [], saveSuccessAction$: [], saveFailAction$: [], saveStatusworks$: [], saveReassignFailAction$: [], saveReassignSuccessAction$: [], savePreConciliationworks$: [], saveStatusSuccessAction$: [], saveStatusFailAction$: [] } });
|
30982
|
+
}], ctorParameters: function () { return [{ type: PreNoiWorkListService }, { type: i3.ToastrService }, { type: i1$1.MatDialog }, { type: i1$2.Router }, { type: i2$2.TabService }, { type: i2$1.Actions }, { type: ConciliationAppointmentWorkListService }]; }, propDecorators: { loadWorkList$: [], saveStatus$: [], loadWorkListFailAction$: [], saveStatusSuccess$: [], openDialog$: [], SaveSchedulingCallBackDetail$: [], savSuccessAction$: [], savFailAction$: [], SaveOutreachWorklistDetail$: [], saveSuccessAction$: [], saveFailAction$: [], saveStatusworks$: [], saveReassignFailAction$: [], saveReassignSuccessAction$: [], savePreConciliationworks$: [], saveStatusSuccessAction$: [], saveStatusFailAction$: [] } });
|
30959
30983
|
|
30960
30984
|
class OutreachHistoryListEffects$1 {
|
30961
30985
|
constructor(outreachHistoryListService, actions$, toastr) {
|
@@ -31409,6 +31433,10 @@ class SaveStatusResponse {
|
|
31409
31433
|
this.isVendor = get(data, 'isVendor');
|
31410
31434
|
this.caseId = get(data, 'caseId');
|
31411
31435
|
this.actionId = get(data, 'actionId');
|
31436
|
+
this.infractionDate = get(data, 'infractionDate');
|
31437
|
+
this.originalCategoryId = get(data, 'originalCategoryId');
|
31438
|
+
this.letterType = get(data, 'letterType');
|
31439
|
+
this.assessmentId = get(data, 'assessmentId');
|
31412
31440
|
}
|
31413
31441
|
}
|
31414
31442
|
|
@@ -31601,6 +31629,10 @@ class SaveTelephoneOrSettledConferenceStatusPayload {
|
|
31601
31629
|
this.inPerson = get(data, 'inPerson');
|
31602
31630
|
this.outreachMode = get(data, 'outreachMode');
|
31603
31631
|
this.outreachOutcome = get(data, 'email');
|
31632
|
+
this.infractionDate = get(data, 'infractionDate');
|
31633
|
+
this.originalCategoryId = get(data, 'originalCategoryId');
|
31634
|
+
this.letterType = get(data, 'letterType');
|
31635
|
+
this.assessmentId = get(data, 'assessmentId');
|
31604
31636
|
}
|
31605
31637
|
}
|
31606
31638
|
|
@@ -32545,57 +32577,83 @@ class TelephoneOrSettledConferencContextMenuComponent extends AbstractComponent
|
|
32545
32577
|
});
|
32546
32578
|
}
|
32547
32579
|
openGoodCauseGrantedDialog(item) {
|
32548
|
-
|
32549
|
-
|
32550
|
-
|
32551
|
-
|
32552
|
-
|
32553
|
-
|
32554
|
-
|
32555
|
-
|
32556
|
-
|
32557
|
-
|
32558
|
-
|
32559
|
-
|
32560
|
-
|
32561
|
-
|
32562
|
-
|
32563
|
-
|
32564
|
-
|
32565
|
-
|
32566
|
-
|
32567
|
-
|
32568
|
-
.
|
32569
|
-
|
32570
|
-
|
32571
|
-
|
32572
|
-
|
32573
|
-
|
32574
|
-
|
32575
|
-
|
32576
|
-
|
32577
|
-
|
32578
|
-
get(item, 'originalCategoryId') === csAssignments ||
|
32579
|
-
get(item, 'originalCategoryId') === tagAppointments ||
|
32580
|
-
get(item, 'originalCategoryId') === tagAssignments ||
|
32581
|
-
get(item, 'originalCategoryId') === splRefAppointments ||
|
32582
|
-
get(item, 'originalCategoryId') === null) {
|
32583
|
-
const payload = new SaveTelephoneOrSettledConferenceStatusPayload(Object.assign(Object.assign({}, res), { wlTelephoneSettledId: item.wlTelephoneSettledId, actionId: goodCauseGrantedActionId }));
|
32584
|
-
this.telephoneOrSettledConferenceWorkListService.dispatchSaveStatus(payload);
|
32585
|
-
this.tabService.dispatchAddTab({
|
32586
|
-
tabName: 'ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId),
|
32587
|
-
route: '/ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId),
|
32588
|
-
label: 'Assessments' + ' - ' + (item === null || item === void 0 ? void 0 : item.clientName),
|
32589
|
-
canClose: true,
|
32580
|
+
if ((item === null || item === void 0 ? void 0 : item.originalCategoryId) === csAppointments || (item === null || item === void 0 ? void 0 : item.originalCategoryId) === csAssignments ||
|
32581
|
+
(item === null || item === void 0 ? void 0 : item.originalCategoryId) === tagAppointments || (item === null || item === void 0 ? void 0 : item.originalCategoryId) === tagAssignments) {
|
32582
|
+
const dialogRef = this.dialog.open(GoodCauseGrantedActionComponent, {
|
32583
|
+
width: dialogSize$1,
|
32584
|
+
disableClose: true,
|
32585
|
+
data: {
|
32586
|
+
conciliationLookups: this.conciliationLookups,
|
32587
|
+
showInPerson: false,
|
32588
|
+
},
|
32589
|
+
});
|
32590
|
+
dialogRef.afterClosed().pipe(takeUntil(this.componentDestroyed)).subscribe((res) => {
|
32591
|
+
if (res) {
|
32592
|
+
const dialogRef = this.dialog.open(GenerateFIA1187ALetterDialogboxComponent, {
|
32593
|
+
width: '55vw',
|
32594
|
+
disableClose: true,
|
32595
|
+
data: {
|
32596
|
+
// assessmentId: this.assessmentId || get(this.data, 'eaepAssessmentId'),
|
32597
|
+
// caseId: this.caseId,
|
32598
|
+
},
|
32599
|
+
});
|
32600
|
+
dialogRef.afterClosed()
|
32601
|
+
.pipe(takeUntil(this.componentDestroyed))
|
32602
|
+
.subscribe((letterTypeId) => {
|
32603
|
+
// if (letterTypeId === 1) {
|
32604
|
+
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId'), worklistType: teleConferenceId ,infractionDate: get(item, 'infractionDate')});
|
32605
|
+
// } else if (letterTypeId === 2) {
|
32606
|
+
// this.conciliationWorkListService.dispatchPrintDocument({ letterType: letterTypeId, assessmentId: get(item, 'eaepAssessmentId'), CmsCaseID: get(item, 'cmsCaseId'), worklistType: teleConferenceId,infractionDate: get(item, 'infractionDate')});
|
32607
|
+
// }
|
32608
|
+
const payload = new SaveTelephoneOrSettledConferenceStatusPayload(Object.assign(Object.assign({}, res), { wlTelephoneSettledId: item.wlTelephoneSettledId, actionId: 1, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
32609
|
+
this.telephoneOrSettledConferenceWorkListService.dispatchSaveStatus(payload);
|
32590
32610
|
});
|
32591
|
-
this.router.navigate(['/ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId)], { relativeTo: this.route, state: { clientName: item === null || item === void 0 ? void 0 : item.clientName } });
|
32592
32611
|
}
|
32593
|
-
|
32594
|
-
|
32595
|
-
|
32612
|
+
});
|
32613
|
+
}
|
32614
|
+
else {
|
32615
|
+
const dialogRef = this.dialog.open(GoodCauseGrantedActionComponent, {
|
32616
|
+
width: dialogSize$1,
|
32617
|
+
disableClose: true,
|
32618
|
+
data: {
|
32619
|
+
conciliationLookups: this.conciliationLookups,
|
32620
|
+
showInPerson: false,
|
32621
|
+
},
|
32622
|
+
});
|
32623
|
+
dialogRef.afterClosed().pipe(takeUntil(this.componentDestroyed)).subscribe((res) => {
|
32624
|
+
if (res) {
|
32625
|
+
const dialogRef = this.dialog.open(GenerateFIA1187ALetterDialogboxComponent, {
|
32626
|
+
width: '55vw',
|
32627
|
+
disableClose: true,
|
32628
|
+
data: {
|
32629
|
+
// assessmentId: this.assessmentId || get(this.data, 'eaepAssessmentId'),
|
32630
|
+
// caseId: this.caseId,
|
32631
|
+
},
|
32632
|
+
});
|
32633
|
+
dialogRef.afterClosed()
|
32634
|
+
.pipe(takeUntil(this.componentDestroyed))
|
32635
|
+
.subscribe((letterTypeId) => {
|
32636
|
+
if (get(item, 'originalCategoryId') === jcAppointments ||
|
32637
|
+
get(item, 'originalCategoryId') === splRefAppointments ||
|
32638
|
+
get(item, 'originalCategoryId') === null) {
|
32639
|
+
const payload = new SaveTelephoneOrSettledConferenceStatusPayload(Object.assign(Object.assign({}, res), { wlTelephoneSettledId: item.wlTelephoneSettledId, actionId: goodCauseGrantedActionId, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
32640
|
+
this.telephoneOrSettledConferenceWorkListService.dispatchSaveStatus(payload);
|
32641
|
+
this.tabService.dispatchAddTab({
|
32642
|
+
tabName: 'ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId),
|
32643
|
+
route: '/ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId),
|
32644
|
+
label: 'Assessments' + ' - ' + (item === null || item === void 0 ? void 0 : item.clientName),
|
32645
|
+
canClose: true,
|
32646
|
+
});
|
32647
|
+
this.router.navigate(['/ea-ep/' + (item === null || item === void 0 ? void 0 : item.cmsCaseId)], { relativeTo: this.route, state: { clientName: item === null || item === void 0 ? void 0 : item.clientName } });
|
32648
|
+
}
|
32649
|
+
else {
|
32650
|
+
const payload = new SaveTelephoneOrSettledConferenceStatusPayload(Object.assign(Object.assign({}, res), { wlTelephoneSettledId: item.wlTelephoneSettledId, actionId: goodCauseGrantedActionId, caseId: item === null || item === void 0 ? void 0 : item.cmsCaseId, originalCategoryId: item === null || item === void 0 ? void 0 : item.originalCategoryId, assessmentId: get(item, 'eaepAssessmentId'), letterType: letterTypeId, infractionDate: get(item, 'infractionDate') }));
|
32651
|
+
this.telephoneOrSettledConferenceWorkListService.dispatchSaveStatus(payload);
|
32652
|
+
}
|
32653
|
+
});
|
32596
32654
|
}
|
32597
|
-
}
|
32598
|
-
}
|
32655
|
+
});
|
32656
|
+
}
|
32599
32657
|
}
|
32600
32658
|
submitBatchPoolAppointment(item, appointmentNYCWAYcode) {
|
32601
32659
|
const payload = new SubmitBatchPoolAppointmentModel({
|
@@ -32981,8 +33039,9 @@ function getGrantOption(payload) {
|
|
32981
33039
|
}
|
32982
33040
|
|
32983
33041
|
class TelephoneOrSettledConferenceWorkListEffect {
|
32984
|
-
constructor(telephoneOrSettledConference, toastr, dialog, router, tabService, actions$) {
|
33042
|
+
constructor(telephoneOrSettledConference, conciliationWorkListService, toastr, dialog, router, tabService, actions$) {
|
32985
33043
|
this.telephoneOrSettledConference = telephoneOrSettledConference;
|
33044
|
+
this.conciliationWorkListService = conciliationWorkListService;
|
32986
33045
|
this.toastr = toastr;
|
32987
33046
|
this.dialog = dialog;
|
32988
33047
|
this.router = router;
|
@@ -33004,6 +33063,10 @@ class TelephoneOrSettledConferenceWorkListEffect {
|
|
33004
33063
|
this.saveStatusSuccess$ = this.actions$.pipe(ofType(TelephoneOrSettledConferenceWorkListActionTypes.SaveStatusSuccess), tap((action) => {
|
33005
33064
|
handleSuccess(this.toastr);
|
33006
33065
|
const grantOption = getGrantOption(get(action, 'payload'));
|
33066
|
+
const actionId = get(action, 'payload.actionId');
|
33067
|
+
if (actionId === goodCauseGrantedActionId$2) {
|
33068
|
+
this.conciliationWorkListService.dispatchPrintDocument({ letterType: get(action, 'payload.letterType'), assessmentId: get(action, 'payload.assessmentId'), CmsCaseID: get(action, 'payload.caseId'), worklistType: teleConferenceId, infractionDate: get(action, 'payload.infractionDate'), });
|
33069
|
+
}
|
33007
33070
|
if (grantOption === GrantOptionType.Appointment) {
|
33008
33071
|
// this.telephoneOrSettledConference.dispatchOpenAppointmentDialog(get(action, 'payload.caseId'));
|
33009
33072
|
this.telephoneOrSettledConference.dispatchLoadTelephoneOrSettledConferenceWorkList();
|
@@ -33093,7 +33156,7 @@ class TelephoneOrSettledConferenceWorkListEffect {
|
|
33093
33156
|
}));
|
33094
33157
|
}
|
33095
33158
|
}
|
33096
|
-
TelephoneOrSettledConferenceWorkListEffect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TelephoneOrSettledConferenceWorkListEffect, deps: [{ token: TelephoneOrSettledConferenceWorkListService }, { token: i3.ToastrService }, { token: i1$1.MatDialog }, { token: i1$2.Router }, { token: i2$2.TabService }, { token: i2$1.Actions }], target: i0.ɵɵFactoryTarget.Injectable });
|
33159
|
+
TelephoneOrSettledConferenceWorkListEffect.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TelephoneOrSettledConferenceWorkListEffect, deps: [{ token: TelephoneOrSettledConferenceWorkListService }, { token: ConciliationAppointmentWorkListService }, { token: i3.ToastrService }, { token: i1$1.MatDialog }, { token: i1$2.Router }, { token: i2$2.TabService }, { token: i2$1.Actions }], target: i0.ɵɵFactoryTarget.Injectable });
|
33097
33160
|
TelephoneOrSettledConferenceWorkListEffect.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TelephoneOrSettledConferenceWorkListEffect });
|
33098
33161
|
__decorate([
|
33099
33162
|
Effect()
|
@@ -33139,7 +33202,7 @@ __decorate([
|
|
33139
33202
|
], TelephoneOrSettledConferenceWorkListEffect.prototype, "saveReassignSuccessAction$", void 0);
|
33140
33203
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: TelephoneOrSettledConferenceWorkListEffect, decorators: [{
|
33141
33204
|
type: Injectable
|
33142
|
-
}], ctorParameters: function () { return [{ type: TelephoneOrSettledConferenceWorkListService }, { type: i3.ToastrService }, { type: i1$1.MatDialog }, { type: i1$2.Router }, { type: i2$2.TabService }, { type: i2$1.Actions }]; }, propDecorators: { loadWorkList$: [], saveStatus$: [], loadWorkListFailAction$: [], saveStatusSuccess$: [], openDialog$: [], SaveSchedulingCallBackDetail$: [], savSuccessAction$: [], savFailAction$: [], SaveOutreachWorklistDetail$: [], saveSuccessAction$: [], saveFailAction$: [], saveStatusworks$: [], saveReassignFailAction$: [], saveReassignSuccessAction$: [] } });
|
33205
|
+
}], ctorParameters: function () { return [{ type: TelephoneOrSettledConferenceWorkListService }, { type: ConciliationAppointmentWorkListService }, { type: i3.ToastrService }, { type: i1$1.MatDialog }, { type: i1$2.Router }, { type: i2$2.TabService }, { type: i2$1.Actions }]; }, propDecorators: { loadWorkList$: [], saveStatus$: [], loadWorkListFailAction$: [], saveStatusSuccess$: [], openDialog$: [], SaveSchedulingCallBackDetail$: [], savSuccessAction$: [], savFailAction$: [], SaveOutreachWorklistDetail$: [], saveSuccessAction$: [], saveFailAction$: [], saveStatusworks$: [], saveReassignFailAction$: [], saveReassignSuccessAction$: [] } });
|
33143
33206
|
|
33144
33207
|
class OutreachHistoryListEffects {
|
33145
33208
|
constructor(outreachHistoryListService, actions$, toastr) {
|