merge : kms

This commit is contained in:
gandhimathi 2018-11-01 15:00:45 +05:30
parent e2212df4d7
commit 6eb3de5a62
3 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ export class EditPdApplicantComponent implements OnInit {
this._pd.updatePdApplicant(pd_applicant_details).subscribe(result => { this._pd.updatePdApplicant(pd_applicant_details).subscribe(result => {
if (result.status == 200) { if (result.status == 200) {
this.notifier.notify('success', 'Applicants updated..'); this.notifier.notify('success', 'PD Details Updated.');
this.dialogRef.close(); this.dialogRef.close();
} }
else { else {

View File

@ -179,7 +179,7 @@ export class EditPdMasterComponent implements OnInit {
Object.keys(my_array).forEach((key) => ( my_array[key] == null) && delete my_array[key]); Object.keys(my_array).forEach((key) => ( my_array[key] == null) && delete my_array[key]);
this._pd.editPdMasterDetails(my_array, updateStatus).subscribe(result => { this._pd.editPdMasterDetails(my_array, updateStatus).subscribe(result => {
if (result.status == 200) { if (result.status == 200) {
this.notifier.notify('success', 'PD Master Updated.'); this.notifier.notify('success', 'PD Details Updated.');
this.dialogRef.close(); this.dialogRef.close();
} }
else { else {

View File

@ -34,7 +34,7 @@
</mat-tab> </mat-tab>
<mat-tab> <mat-tab>
<ng-template mat-tab-label><mat-icon>done_all</mat-icon>&nbsp;QC_Completed </ng-template> <ng-template mat-tab-label><mat-icon>done_all</mat-icon>&nbsp;QC Completed </ng-template>
<app-qc-completed-pd [bindFilterValue]="filterValue" (loadPdView)="viewPDDetails($event)"></app-qc-completed-pd> <app-qc-completed-pd [bindFilterValue]="filterValue" (loadPdView)="viewPDDetails($event)"></app-qc-completed-pd>