- Documents to be collected
+ Documents to be collected
+ Docuements to be uploaded
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 d6f98e002..3995ab28a 100644
--- 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
@@ -30,6 +30,7 @@ export class QueriesDocsComponent implements OnInit {
docsCollectedForm:FormGroup
loadComponent:boolean=false
disableAfterSubmit: boolean;
+ fk_pd_type: any;
constructor(notifier: NotifierService,
private _ngZone: NgZone,
@@ -52,6 +53,7 @@ export class QueriesDocsComponent implements OnInit {
this.subproduct_abbr = this.pd_all_details.pdmaster_details.subproduct_abbr;
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;
}
@ViewChild('autosize') autosize: CdkTextareaAutosize;
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.html
index f48d11150..ffecfb299 100755
--- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.html
+++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.html
@@ -40,7 +40,8 @@
(selectionChange)="checkComments($event.value,1,a);" required>
Select
Add Stock Details
- No Stock Observed
+ No Stock Observed
+ No Stock Available
Stock Required
@@ -136,7 +137,8 @@
(selectionChange)="checkComments($event.value,2,b);" required>
Select
Add Stock Details
- No Stock Observed
+ No Stock Observed
+ No Stock Available
@@ -222,7 +224,8 @@
(selectionChange)="checkComments($event.value,3,e)" required>
Select
Add Stock Details
-
No Stock Observed
+
No Stock Observed
+
No Stock Available
@@ -311,7 +314,8 @@
(selectionChange)="checkComments($event.value,4,g)" required>
Select
Add Stock Details
-
No stock observed
+
No Stock Observed
+
No Stock Available
@@ -425,7 +429,8 @@
(selectionChange)="checkComments($event.value,5,g)" required>
Select
Add Stock Details
-
No stock observed
+
No Stock Observed
+
No Stock Available
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.ts
index b3cd4b5f4..d0585f518 100755
--- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.ts
+++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/stock/stock.component.ts
@@ -61,6 +61,7 @@ export class StockComponent implements OnInit {
image_doc_params: { pdid: number; form_id: number; company_id: string; };
product_abbr: any;
prod_catagory: any;
+ fk_pd_type: any;
/** Constructor */
constructor(notifier: NotifierService,
@@ -86,6 +87,10 @@ export class StockComponent implements OnInit {
this.lender_applicant_id = this.pd_all_details.pdmaster_details.lender_applicant_id;
this.subproduct_abbr = this.pd_all_details.pdmaster_details.subproduct_abbr;
this.customer_segment_abbr = this.pd_all_details.pdmaster_details.customer_segment_abbr;
+ this.fk_pd_type = this.pd_all_details.pdmaster_details.fk_pd_type;
+ if(this.fk_pd_type == '3'){
+ this.SPsufficientList.push({value:"not able to assess",isdisplayvalue:"Not able to assess",isdisabled:false})
+ }
this.image_doc_params={pdid:this.pdid,form_id:this.form_id,company_id:this.company_id}
}
pdf(fileURL){
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.html
index 4a04072af..64c1ed28c 100755
--- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.html
+++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/view-pd/view-pd.component.html
@@ -127,9 +127,20 @@
-
+
+
+
+
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 119183645..fa4b152d9 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
@@ -559,5 +559,26 @@ export class ViewPdComponent implements OnInit, OnDestroy {
})
}
+ copyCusURL(randomStr) {
+ // console.log(window.location);
+ let cus_link = window.location.origin+'/customer/#/pd-images/'+randomStr;
+ console.log(randomStr)
+ this._pd.copyToClipBoard(cus_link);
+ this.notifier.notify('info','Customer link copied');
+ }
+
+ onClickSmsLink(master){
+ console.log('SMS',master);
+ let param={
+ pd_id: master.pd_id,
+ mobile_no: this.pdApplicantData[0].mobile_no,
+ random_string: master.random_string,
+ }
+ this._pd.smsLink(param).subscribe(res=>{
+ if(res['dataStatus']){
+ this.notifier.notify("info","SMS Sent Successfully")
+ }
+ })
+ }
}
\ No newline at end of file