From b8fb9c6ff021ea8bfa054e161aa2cf20a5a76d1f Mon Sep 17 00:00:00 2001 From: "venbatechnologies@gmail.com" Date: Mon, 4 Feb 2019 16:50:54 +0530 Subject: [PATCH] UI changes --- .../final-remarks.component.html | 21 +++++++++++++++++++ .../final-remarks/final-remarks.component.ts | 8 +++++++ 2 files changed, 29 insertions(+) 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 dcf7ee39d..4603d85f1 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 @@ -34,6 +34,27 @@ + + + + + Positive + Negative + Refer to Credit + Others + + + + + + + + + + + + +
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 6d22cd494..c3c8a61e8 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 @@ -58,6 +58,10 @@ export class FinalRemarksComponent implements OnInit { final_custormer_remark_type : [], final_other_customer_behaviour:[], is_service_provided: ['', Validators.required], + pd_officers_recommendation:['', Validators.required], + others_pd_officers_recommendation:[''], + enter_reason_for_negative:[''], + enter_reason_for_refer_to_credit:[''], final_form_remarks: ['',Validators.required] }); this.getM_Type(); @@ -88,6 +92,10 @@ export class FinalRemarksComponent implements OnInit { if(data.dataStatus){ this._finalRemarkForm.controls.final_custormer_remark_type.setValue(data.records.final_custormer_remark_type); this._finalRemarkForm.controls.final_other_customer_behaviour.setValue(data.records.final_other_customer_behaviour); + this._finalRemarkForm.controls.pd_officers_recommendation.setValue(data.records.pd_officers_recommendation); + this._finalRemarkForm.controls.others_pd_officers_recommendation.setValue(data.records.others_pd_officers_recommendation); + this._finalRemarkForm.controls.enter_reason_for_negative.setValue(data.records.enter_reason_for_negative); + this._finalRemarkForm.controls.enter_reason_for_refer_to_credit.setValue(data.records.enter_reason_for_refer_to_credit); this._finalRemarkForm.controls.is_service_provided.setValue(data.records.is_service_provided); this._finalRemarkForm.controls.final_form_remarks.setValue(data.records.final_form_remarks); this.noRecordsFound = true;