Commit 082c79a7 authored by Almouhannad's avatar Almouhannad

(F) Edit toastrs

parent 674add08
......@@ -41,7 +41,7 @@ export class UpdateDoctorPersonalDataFormComponent {
result => {
if (result.status === true)
{
this.toastrService.success('تم تعديل البيانات بنجاح');
this.toastrService.success('تم تعديل البيانات بنجاح');
this.router.navigateByUrl('admin/doctors');
}
else {
......
......@@ -35,7 +35,7 @@ export class UpdateDoctorUserDataFormComponent {
.subscribe(
result => {
if (result.status === true) {
this.toastrService.success('تم تحديث البيانات بنجاح');
this.toastrService.success('تم تحديث البيانات بنجاح');
this.router.navigateByUrl('admin/doctors');
}
else {
......
......@@ -45,7 +45,7 @@ export class CreateEmployeeFormComponent {
this.employeesDataService.create(this.formModel)
.subscribe(result => {
if (result.status === true) {
this.toastrService.success('تم إضافة الموظف بنجاح');
this.toastrService.success('تم إضافة الموظف بنجاح');
this.router.navigateByUrl(`receptionist/employees/${result.id!}`);
}
else {
......
......@@ -35,7 +35,7 @@ export class CreateWitingListItemForEmployeeComponent {
this.waitingListService.createBySerialNumber(this.formModel.serialNumber)
.subscribe((result => {
if (result.status === true) {
this.toastrService.success('تمت الإضافة بنجاح');
this.toastrService.success('تمت الإضافة بنجاح');
this.router.navigateByUrl('receptionist/waitinglist');
}
else {
......
......@@ -40,7 +40,7 @@ export class WaitingListItemComponent {
this.waitingListService.delete(this.model.id)
.subscribe(result => {
if (result.status === true) {
this.toastrService.success('تم الحذف بنجاح');
this.toastrService.success('تم الحذف بنجاح');
this.deleted.emit();
}
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment