diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/queries-docs/queries-docs.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/queries-docs/queries-docs.component.ts
index 3995ab28a..9cadc91c2 100755
--- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/queries-docs/queries-docs.component.ts
+++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/queries-docs/queries-docs.component.ts
@@ -31,6 +31,7 @@ export class QueriesDocsComponent implements OnInit {
loadComponent:boolean=false
disableAfterSubmit: boolean;
fk_pd_type: any;
+ image_doc_params: { pdid: string; form_id: number; company_id: string; };
constructor(notifier: NotifierService,
private _ngZone: NgZone,
@@ -44,7 +45,7 @@ export class QueriesDocsComponent implements OnInit {
private pdTriggerService:PdTrigerService,
private awsService:AwsService) {
// console.log(this.pd_all_details)
- this.form_id = 10;
+ this.form_id = 24;
this.parent_pdid = this.pd_all_details.pdmaster_details.parent_pd_id;
this.pdid = this.pd_all_details.pdmaster_details.pd_id;
this.notifier = notifier;
@@ -54,6 +55,8 @@ export class QueriesDocsComponent implements OnInit {
this.customer_segment_abbr = this.pd_all_details.pdmaster_details.customer_segment_abbr;
this.lenderShortName = this.pd_all_details.pdmaster_details.lender_short_name;
this.fk_pd_type = this.pd_all_details.pdmaster_details.fk_pd_type;
+ this.image_doc_params={pdid:this.pdid,form_id:this.form_id,company_id:''}
+ console.log('image_doc_params',this.image_doc_params)
}
@ViewChild('autosize') autosize: CdkTextareaAutosize;