diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/add-pd/add-pd.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/add-pd/add-pd.component.ts index 575d2a514..177d25bc5 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/add-pd/add-pd.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/add-pd/add-pd.component.ts @@ -617,7 +617,7 @@ export class AddPdComponent implements OnInit, OnDestroy { } }, error => { this.disableAfterSubmit = false; - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/all-pd/all-pd.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/all-pd/all-pd.component.ts index d8da0411c..604e1f9b5 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/all-pd/all-pd.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/all-pd/all-pd.component.ts @@ -104,6 +104,7 @@ export class AllPdComponent implements OnInit, OnChanges { // , error => {this.errorMessage = error}); ,error => { this.errorMessage.push(error); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); alert(error.html_format); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-applicant/edit-pd-applicant.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-applicant/edit-pd-applicant.component.ts index 16ae01953..e44b53448 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-applicant/edit-pd-applicant.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-applicant/edit-pd-applicant.component.ts @@ -255,7 +255,7 @@ export class EditPdApplicantComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-master/edit-pd-master.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-master/edit-pd-master.component.ts index 9941d3b9b..c0b649db5 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-master/edit-pd-master.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/edit-pd-master/edit-pd-master.component.ts @@ -81,7 +81,12 @@ export class EditPdMasterComponent implements OnInit { this.lenderBranchList = x[0]['branches']; } } - }, error => this.errorMessage = error); + } + //, error => this.errorMessage = error); + , error => { + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); + }); } selectedLender(lender){ // alert(JSON.stringify(lender['branches '])); @@ -460,7 +465,8 @@ export class EditPdMasterComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong in Address Try Again.!'); }//else }, error => { - this.notifier.notify('warning', 'Something Wents Wrong in Address Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong in Address Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong in Address Section Try Again.!' + '-' + error.error_text + ' occur'); }); this._pd.editPdMasterDetails(lenderMasterArray, updateStatus).subscribe(result => { @@ -472,7 +478,8 @@ export class EditPdMasterComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); }//else }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); });//error closed }//else closed diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/initiate-additional-pd/initiate-additional-pd.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/initiate-additional-pd/initiate-additional-pd.component.ts index a0e9b4a43..ad92ed3c7 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/initiate-additional-pd/initiate-additional-pd.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/initiate-additional-pd/initiate-additional-pd.component.ts @@ -19,7 +19,7 @@ export class InitiateAdditionalPdComponent implements OnInit { this.notifier = notifier; this.pageTitle="Choose customer segment For this PD address" this.applicantList = this.data.applicants_details; - this.applicantList = this.applicantList.filter(appt => appt.applicant_type != 2); + this.applicantList = this.applicantList.filter(appt => appt.applicant_type != 2 && appt.applicant_type != 3); } ngOnInit() { @@ -94,7 +94,8 @@ submitDetails(values: any) { this.dialogRef.close({update_status:true}); },3000); }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); // alert(error); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.html index 1bc85a7e4..57d25eefc 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.html @@ -195,7 +195,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.ts index 37adfcb18..5ca35e3df 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/address/address.component.ts @@ -510,7 +510,7 @@ export class AddressComponent implements OnInit { this.disableAfterSubmit = false; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); this.disableAfterSubmit = false; }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.html index 63dad2962..b7aeee00b 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.html @@ -436,7 +436,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.ts index 9be483aed..5156b9bc4 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/assets-info/assets-info.component.ts @@ -147,7 +147,7 @@ export class AssetsInfoComponent implements OnInit { this.getM_Vehicle_Type(); this.getM_UOM_Type(); - this.pdTrigerService.retriveFile(this.pdid,'5',null).subscribe(data => { + this.pdTrigerService.retriveFile(this.pdid,'4',null).subscribe(data => { if (data.status == 200) { if(data.records.length>0){ data.records.forEach((val, index) => { @@ -848,7 +848,8 @@ export class AssetsInfoComponent implements OnInit { this.disableAfterSubmit = false; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); this.disableAfterSubmit = false; // this.dialogRef.close(); }); diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.html index c6b8ece55..e715854fd 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.html @@ -224,7 +224,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.ts index 7d11658b3..b10703a30 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/banking-details/banking-details.component.ts @@ -320,7 +320,8 @@ export class BankingDetailsComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.html index a9ecacdd5..e8d3f9e6e 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.html @@ -390,7 +390,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.ts index ad857b53d..404f65282 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-assets-info/business-assets-info.component.ts @@ -821,7 +821,8 @@ if(datas.business_name_of_the_owner !== null){ this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.html index a12b47278..f631023d9 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.html @@ -156,7 +156,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.ts index 4855810af..b45d0f232 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-banking-details/business-banking-details.component.ts @@ -315,7 +315,8 @@ export class BusinessBankingDetailsComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.html index 61f75454f..10c5087d0 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.html @@ -1615,7 +1615,7 @@
- Yes No @@ -1624,7 +1624,7 @@ Shop and Est Act Cert Required
-
+

Shop and Est Act Cert Image

@@ -1633,7 +1633,7 @@
- Yes No @@ -1642,7 +1642,7 @@ GST Regn Cert Required
-
+

GST Regn Cert Image

@@ -1650,7 +1650,7 @@
- Yes No @@ -1659,7 +1659,7 @@ Export / Import cert Required
-
+

Export / Import cert Image

@@ -1667,7 +1667,7 @@
- + Yes No Not Applicable @@ -1675,7 +1675,7 @@ Factory Cert Required
-
+

Factory cert Image

@@ -1684,7 +1684,7 @@
- Yes No @@ -1693,7 +1693,7 @@ Cert of Practice Required
-
+

Cert of Practice Image

@@ -1702,7 +1702,7 @@
- + Yes No Not Applicable @@ -1710,7 +1710,7 @@ PF Regn Required
-
+

PF Regn Image

@@ -1719,7 +1719,7 @@
- + Yes No Not Applicable @@ -1727,7 +1727,7 @@ ESIC Regn Required
-
+

ESIC Regn Image

@@ -1775,42 +1775,42 @@ - -
-
-
-
-
-
-
{{doc.document_name}}
- -
-
-
-
-
-
-
-
-
- - picture_as_pdf - {{doc.document_title}} - -
-
+ +
+
+
+
+
+
+
{{doc.document_name}} +
-
- - -

No Files

-
-
- +
+
+
+
+
+ + picture_as_pdf + {{doc.document_title}} + +
+
+
+
+
+
+
+ + +

No Files

+
+
+ diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.ts index 5bfdf8fdd..8e9ce733b 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/business-info/business-info.component.ts @@ -592,11 +592,12 @@ export class BusinessInfoComponent implements OnInit { if(data.records.gst_Regn_cert =='yes'){ this.businessForm.addControl('gst_Regn_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('gst_Regn_cert_pic');} if(data.records.factory_cert =='yes'){ this.businessForm.addControl('factory_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('factory_cert_pic');} if(data.records.practice_cert_cert =='yes'){ this.businessForm.addControl('practice_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('practice_cert_pic');} - if(data.records.shop_eat_act_cert =='yes'){ alert('if control'); this.businessForm.addControl('shop_eat_act_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('shop_eat_act_cert_pic');} + if(data.records.shop_eat_act_cert =='yes'){ this.businessForm.addControl('shop_eat_act_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('shop_eat_act_cert_pic');} if(data.records.pf_regn =='yes'){ this.businessForm.addControl('pf_regn_pic', new FormControl('')); }else{ this.businessForm.removeControl('pf_regn_pic');} if(data.records.esic_regn =='yes'){ this.businessForm.addControl('esic_regn_pic', new FormControl('')); }else{ this.businessForm.removeControl('esic_regn_pic');} if(data.records.export_import_cert =='yes'){ this.businessForm.addControl('export_import_cert_pic', new FormControl('')); }else{ this.businessForm.removeControl('export_import_cert_pic');} this.businessForm.patchValue(businessVal); + console.log('this.businessForm',this.businessForm); } else { //Desgn.push(this.createDesignation()); Partnr.push(this.createPartners()); @@ -1647,7 +1648,8 @@ export class BusinessInfoComponent implements OnInit { this.dialogRef.close(); }, 3000); }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.html index e423fbdf0..a9af371d7 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.html @@ -439,7 +439,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.ts index 286ffa73c..89b7e278f 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/client-info/client-info.component.ts @@ -693,7 +693,7 @@ export class ClientInfoComponent implements OnInit { // this.errorMessage = "Some Thing Wents Wrong Try Again !"; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); // this.errorMessage = "Something Wents Wrong Try Again !"; // this.dialogRef.close(); }); diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.html index 640ec3c97..0d0c7c008 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.html @@ -201,7 +201,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.ts index 0d12f92e4..57c83a18b 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/current-loan/current-loan.component.ts @@ -569,7 +569,8 @@ export class CurrentLoanComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + // this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }) } validateAllFormFields(formGroup: FormGroup) { diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.html index 9103f18ac..36a26a6c9 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.html @@ -284,7 +284,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.ts index cdfc23c47..038df3362 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/employment-info/employment-info.component.ts @@ -517,7 +517,7 @@ export class EmploymentInfoComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }) } /** On Key Press Event For Numbers */ diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.html index febc7b04b..1221ed375 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.html @@ -179,7 +179,7 @@ - {{"₹"}} {{item.get('earning_gross_income_per_month').value | numberToWords}} Only + {{"₹"}} {{+item.get('earning_gross_income_per_month').value | numberToWords}} Only
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.ts index c7055d1bd..b90b6f70b 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/family-details/family-details.component.ts @@ -94,10 +94,11 @@ export class FamilyDetailsComponent implements OnInit { let familyMembersGeneralForm = Object.keys(data.record.from_general_form).map(function (key) { return data.record.from_general_form[key]; }); - + let datas = familyMembersGeneralForm.map(element => { return { id: element.pd_co_applicant_id.toString(), + title: element.applicant_title_name ? element.applicant_title_name : '', name: element.applicant_name, relationship: element.relationship, relation_to: element.relation_to, @@ -117,6 +118,7 @@ export class FamilyDetailsComponent implements OnInit { let datas = familyMembersBusinessForm.map(element => { return { id: element.other_family_relationship_id.toString(), + title:element.family_member_salutation, name: element.family_member_name, relationship: element.other_family_relationship_id, relation_to: element.relation_to_id, @@ -426,7 +428,7 @@ export class FamilyDetailsComponent implements OnInit { // // this.isReadOnly[inx] = false; // } arraydata = { - 'family_member_salutation':'', + 'family_member_salutation':val.title, 'family_member_name': val.name, 'family_member_relationship': val.relationship, 'family_member_age': val.age, @@ -688,7 +690,7 @@ export class FamilyDetailsComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.html index 08d88f5d2..ad6e8a0ab 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.html @@ -10,6 +10,9 @@
+ + +
@@ -170,4 +173,47 @@
+
+
+ + +
+
+
+
+
+
+
{{doc.document_name}} +
+
+
+
+
+
+
+
+
+
+ + picture_as_pdf + {{doc.document_title}} + +
+
+
+
+
+
+
+ + +

No Files

+
+
+
+
+ +
+ \ No newline at end of file diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.ts index 8eb4d18d4..4315f9f09 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/final-remarks/final-remarks.component.ts @@ -47,6 +47,7 @@ export class FinalRemarksComponent implements OnInit { public m_remarkTypeCustomerBehaviour = []; public m_recommendationList = []; + public documentsAndFilesList = []; private notifier: NotifierService; constructor( @@ -216,6 +217,26 @@ export class FinalRemarksComponent implements OnInit { }, err => { }) + + this.pdTrigerService.retriveFile(this.pdid,params.pd_form_id,null).subscribe(data => { + if (data.status == 200) { + if(data.records.length>0){ + data.records.forEach((val, index) => { + let splitted = val.pd_document_name.split("."); + let DocumentsAndFiles = { + 'document_name': val.pd_document_name, + 'document_title': val.pd_document_title, + 'document': val.doc_url, + 'document_type' : splitted[1] == 'pdf'?'pdf':'image' + } + this.documentsAndFilesList.push(DocumentsAndFiles); + }); + } + } + else{ + this.documentsAndFilesList = []; + } + }); } getM_Recommendation() { @@ -292,7 +313,7 @@ export class FinalRemarksComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); // this.errorMessage = "Something Wents Wrong Try Again !"; // this.dialogRef.close(); }); diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.html index 42f0d1ddf..98c7ab777 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.html @@ -557,7 +557,7 @@ + formControlName="forfaiting"> forfaiting Required @@ -583,7 +583,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.ts index 087631f37..5206aee7e 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/financial-info/financial-info.component.ts @@ -379,7 +379,7 @@ export class FinancialInfoComponent implements OnInit { }); } - changeBusinessActivity(event: any) { + changeWorkingCapitalFacilities(event: any) { console.log('event',event); if (event.value.exist_status == true && event.value.id == 2) { console.log('event.value.exist_status == true && event.value.id == 2',event.value.exist_status,event.value.id) @@ -1924,7 +1924,7 @@ export class FinancialInfoComponent implements OnInit { } //this.dialogRef.close(); }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }) } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.html index 0c32a3d04..b092d1cd7 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.html @@ -395,47 +395,45 @@
-->
-
- - - -
-
-
-
-
-
-
{{doc.document_name}} -
+ + + +
+
+
+
+
+
+
{{doc.document_name}} +
+
+
+
+
+
+
+
+
+
+ + picture_as_pdf + {{doc.document_title}} + +
+
-
-
-
-
-
- - picture_as_pdf - {{doc.document_title}} - -
-
-
-
-
-
-
- - -

No Files

-
-
- - - +
+ + +

No Files

+
+
+ + diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.ts index d5453ac2e..fd6fe54a6 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/general-info/general-info.component.ts @@ -761,7 +761,7 @@ export class GeneralInfoComponent implements OnInit { // this.errorMessage = "Some Thing Wents Wrong Try Again !"; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); this.disableAfterSubmit = false; // this.errorMessage = "Something Wents Wrong Try Again !"; }); diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.html index 31a595550..fe8f0d973 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.html @@ -70,7 +70,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.ts index c4e153422..4309bd085 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/lender-representative/lender-representative.component.ts @@ -120,7 +120,7 @@ export class LenderRepresentativeComponent implements OnInit { // control.push(this.createLRDetail()); // } }) - this._pd.retriveFile(this.pdid,this.form_id,'null').subscribe(data => { + this._pd.retriveFile(this.pdid,this.form_id,null).subscribe(data => { if (data.status == 200) { if(data.records.length>0){ data.records.forEach((val, index) => { @@ -195,7 +195,7 @@ export class LenderRepresentativeComponent implements OnInit { this.disableAfterSubmit = false; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); this.disableAfterSubmit = false; }) } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.html index 731c43751..5177fe605 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.html @@ -238,7 +238,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.ts index bbcce624b..0d4606c92 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/loan-details/loan-details.component.ts @@ -876,7 +876,7 @@ export class LoanDetailsComponent implements OnInit { this.disableAfterSubmit = false; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); this.disableAfterSubmit = false; }) } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.html index a2b09df0c..2417921e0 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.html @@ -229,7 +229,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.ts index 9aeb62346..abb3ab1ce 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/neighbour-hood/neighbour-hood.component.ts @@ -219,21 +219,23 @@ pdf(fileURL){ let stdcodesearch = elementValue.landline.search("-"); let stdcode = elementValue.landline.substr(0,stdcodesearch); let landline = elementValue.landline.substr(+stdcodesearch + 1,8); + console.log('elementValue.landline',elementValue.landline); + console.log('stdcode',stdcode,'landline',landline); return this._fb.group({ - reference_name: [elementValue.reference_name], - mobile: [elementValue.mobile,Validators.compose([Validators.minLength(10),Validators.maxLength(10)])], - std_code: [stdcode != null ? stdcode : '',Validators.compose([Validators.minLength(2),Validators.maxLength(4)])], - landline: [landline != null ? landline : '',Validators.compose([Validators.minLength(6),Validators.maxLength(8)])], - location:[elementValue.location], - relationship_with:[elementValue.relationship_with], - others: [elementValue.others], - year_relation_applicant:[elementValue.year_relation_applicant], - months_relation_applicant:[elementValue.months_relation_applicant], - business_volume_amount:[elementValue.business_volume_amount], - business_volume_unit:[elementValue.business_volume_unit], - others_unit : [elementValue.others_unit], - reference_final_remarks:[elementValue.reference_final_remarks], - specify_final_remark : [elementValue.specify_final_remark], + reference_name: [elementValue.reference_name != null ?elementValue.reference_name:''], + mobile: [elementValue.mobile != null ?elementValue.mobile:'',Validators.compose([Validators.minLength(10),Validators.maxLength(10)])], + std_code: [stdcode != null ? stdcode != 'null' ? stdcode :'' : '',Validators.compose([Validators.minLength(2),Validators.maxLength(4)])], + landline: [landline != null ? landline != 'null' ? landline :'' : '',Validators.compose([Validators.minLength(6),Validators.maxLength(8)])], + location:[elementValue.location!= null ?elementValue.location:''], + relationship_with:[elementValue.relationship_with!= null ?elementValue.relationship_with:''], + others: [elementValue.others!= null ?elementValue.others:''], + year_relation_applicant:[elementValue.year_relation_applicant!= null ?elementValue.year_relation_applicant:''], + months_relation_applicant:[elementValue.months_relation_applicant!= null ?elementValue.months_relation_applicant:''], + business_volume_amount:[elementValue.business_volume_amount!= null ?elementValue.business_volume_amount:''], + business_volume_unit:[elementValue.business_volume_unit!= null ?elementValue.business_volume_unit:''], + others_unit : [elementValue.others_unit!= null ?elementValue.others_unit:''], + reference_final_remarks:[elementValue.reference_final_remarks!= null ?elementValue.reference_final_remarks:''], + specify_final_remark : [elementValue.specify_final_remark!= null ?elementValue.specify_final_remark:''], // positive_remark:[elementValue.positive_remark], // negative_remark:[elementValue.negative_remark], // insufficient_info_remark:[elementValue.insufficient_info_remark] @@ -433,7 +435,7 @@ pdf(fileURL){ this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); } } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.html index 20958ceb4..50cde3a82 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.html @@ -161,7 +161,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.ts index 794e3aa27..2a5d3d2df 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/other-income/other-income.component.ts @@ -322,7 +322,7 @@ export class OtherIncomeComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }) } diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.html index 6d013d6ca..5bb3cfa30 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.html @@ -18,6 +18,10 @@ + + + + Property Details @@ -688,8 +692,50 @@
- - + + + + + + +
+
+
+
+
+
+
{{doc.document_name}} +
+
+
+
+
+
+
+
+
+
+ + picture_as_pdf + {{doc.document_title}} + +
+
+
+
+
+
+
+ + +

No Files

+
+
+
+
+ + diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.ts index 1bc93efca..f305e7e04 100644 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/rental-verification/manage-rental-verification/manage-rental-verification.component.ts @@ -14,7 +14,26 @@ import Swal from 'sweetalert2'; styleUrls: ['./manage-rental-verification.component.scss'] }) export class ManageRentalVerificationComponent implements OnInit { - + /** For DOCS Tab */ + public viewerOptions: any = { + navbar: false, + toolbar: { + zoomIn: 4, + zoomOut: 4, + oneToOne: 4, + reset: 4, + prev: 4, + play: { + show: 4, + size: 'large', + }, + next: 4, + rotateLeft: 4, + rotateRight: 4, + flipHorizontal: 4, + flipVertical: 4, + } +}; pipe = new DatePipe('en-US'); // customer_segment_abbr: any; // subproduct_abbr: any; @@ -45,6 +64,7 @@ export class ManageRentalVerificationComponent implements OnInit { //floorList: any=[{id:1,name:"Ground Floor"},{id:1,name:"First Floor"},{id:1,name:"Second Floor"},{id:1,name:"Third Floor"}] //unitMeasurementList: any=[{id:2,name:"Square Feet"},{id:3,name:"Square Yards"},{id:4,name:"Square Meters"},{id:5,name:"Acres"},{id:6,name:"Hectares"},{id:1,name:"Others (Please Specify)"}]; unitMeasurementList: any=[]; + documentsAndFilesList: any = []; SwalButtonText: string; SwalMessage: string; @@ -162,6 +182,27 @@ export class ManageRentalVerificationComponent implements OnInit { val=="0" ? this._rentalForm.addControl('why_third_party_check_not_done', new FormControl('', Validators.required)) : this._rentalForm.removeControl('why_third_party_check_not_done'); }); this.loadFormData(this.data.editData); + + this._pd.retriveFile(this.pdid,'17',null).subscribe(data => { + if (data.status == 200) { + if(data.records.length>0){ + data.records.forEach((val, index) => { + let splitted = val.pd_document_name.split("."); + let DocumentsAndFiles = { + 'document_name': val.pd_document_name, + 'document_title': val.pd_document_title, + 'document': val.doc_url, + 'document_type' : splitted[1] == 'pdf'?'pdf':'image' + } + this.documentsAndFilesList.push(DocumentsAndFiles); + }); + } + } + else{ + this.documentsAndFilesList = []; + } + }); + } initRentalForm() { @@ -999,7 +1040,7 @@ export class ManageRentalVerificationComponent implements OnInit { // this.errorMessage = "Some Thing Wents Wrong Try Again !"; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); return; // this.errorMessage = "Something Wents Wrong Try Again !"; }); 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 45a7ccbad..8d3026592 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 @@ -395,7 +395,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
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 0b6605c9f..698661228 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 @@ -732,7 +732,7 @@ export class StockComponent implements OnInit { this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); }); diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.html b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.html index d87a9e23d..7c241da27 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.html +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.html @@ -300,7 +300,8 @@
-
{{doc.document_name}}
+
{{doc.document_name}} +
diff --git a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.ts b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.ts index 77062f311..38a905a1d 100755 --- a/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.ts +++ b/ng6-seed/src/app/personal-discussion/manage-pd/list-pd/start-pd/forms/supplier-info/supplier-info.component.ts @@ -519,7 +519,7 @@ export class SupplierInfoComponent implements OnInit { // this.errorMessage = "Some Thing Wents Wrong Try Again !"; } }, error => { - this.notifier.notify('warning', 'Something Wents Wrong Try Again.!'); + this.notifier.notify('warning', 'Something Wents Wrong Try Again.!' + '-' + error.error_text + ' occur'); // this.errorMessage = "Something Wents Wrong Try Again !"; // this.dialogRef.close(); }); 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 40455da19..250dec2c2 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 @@ -69,8 +69,8 @@ -
-
{{master.loan_amount | numberToWords}} Only
+
+
{{master.loan_amount | numberToWords}} Only