+
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.ts
index ac70c67d1..33560102f 100755
--- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.ts
+++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.ts
@@ -90,7 +90,9 @@ export class ViewPdComponent implements OnInit, OnDestroy {
"COMPLETED": 'COMPLETED',
"ADD_ON_PENDING": 'ADD_ON_PENDING',
"QC_COMPLETED": 'QC_COMPLETED',
- "ALLOCATED_TO_PARTNER":'ALLOCATED_TO_PARTNER'
+ "ALLOCATED_TO_FIA":'ALLOCATED_TO_FIA',
+ "FIA_REJECTED":'FIA_REJECTED',
+ "FIA_ACCEPTED":'FIA_ACCEPTED'
};
mandatoryFieldsValidations: any = [];
diff --git a/ng6-seed/src/app/quality-check/qc-cus-images/qc-cus-images.component.scss b/ng6-seed/src/app/quality-check/qc-cus-images/qc-cus-images.component.scss
index c11ccc6c0..c6e4d93fb 100644
--- a/ng6-seed/src/app/quality-check/qc-cus-images/qc-cus-images.component.scss
+++ b/ng6-seed/src/app/quality-check/qc-cus-images/qc-cus-images.component.scss
@@ -1,3 +1,8 @@
+
+::ng-deep { .cus-images > mat-dialog-container {
+ overflow-y: scroll !important;
+}
+}
.paragraph_change {
color: #fff !important;
background-color: #e00201 !important;
diff --git a/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.html b/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.html
index 9c2dcaae7..b7a79207f 100755
--- a/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.html
+++ b/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.html
@@ -182,7 +182,7 @@
{{master.pd_status==pdStatusCheck.QC_COMPLETED ? 'QC Completed' : master.pd_status==pdStatusCheck.ADD_ON_PENDING ? 'Completed' : master.pd_status | titlecase}}
- ( {{master.vendor_status}} )
+ ( {{master.agency_short_name}} - {{master.vendor_status}} )
@@ -226,7 +226,7 @@
{{addresses.addtional_pd_data[0].pd_status==pdStatusCheck.QC_COMPLETED ? 'QC Completed' : addresses.addtional_pd_data[0].pd_status==pdStatusCheck.ADD_ON_PENDING ? 'Completed' : addresses.addtional_pd_data[0].pd_status | titlecase}}
- ( {{master.vendor_status}} )
+ ( {{master.agency_short_name}} - {{master.vendor_status}} )
diff --git a/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.ts b/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.ts
index e29b4a5ba..938ab5210 100755
--- a/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.ts
+++ b/ng6-seed/src/app/quality-check/qc-list/qc-view/qc-view.component.ts
@@ -326,7 +326,8 @@ export class QcViewComponent implements OnInit, OnDestroy {
maxHeight: '100vh',
height: '100%',
width: '100%',
- disableClose: true
+ disableClose: true,
+ panelClass:'cus-images'
});
dialogRef.afterClosed()
.subscribe(dataresult => {