Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
HIAST-Clinics
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
almohanad.hafez
HIAST-Clinics
Commits
082c79a7
Commit
082c79a7
authored
Aug 25, 2024
by
Almouhannad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(F) Edit toastrs
parent
674add08
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
update-doctor-personal-data-form.component.ts
...l-data-form/update-doctor-personal-data-form.component.ts
+1
-1
update-doctor-user-data-form.component.ts
...-user-data-form/update-doctor-user-data-form.component.ts
+1
-1
create-employee-form.component.ts
...st/create-employee-form/create-employee-form.component.ts
+1
-1
create-witing-list-item-for-employee.component.ts
...mployee/create-witing-list-item-for-employee.component.ts
+1
-1
waiting-list-item.component.ts
...ptionist/waiting-list-item/waiting-list-item.component.ts
+1
-1
No files found.
Clinics.Frontend/src/app/components/admin/update-doctor-personal-data-form/update-doctor-personal-data-form.component.ts
View file @
082c79a7
...
...
@@ -41,7 +41,7 @@ export class UpdateDoctorPersonalDataFormComponent {
result
=>
{
if
(
result
.
status
===
true
)
{
this
.
toastrService
.
success
(
'تم تعديل البيانات بنجاح'
);
this
.
toastrService
.
success
(
'تم تعديل البيانات بنجاح
✔
'
);
this
.
router
.
navigateByUrl
(
'admin/doctors'
);
}
else
{
...
...
Clinics.Frontend/src/app/components/admin/update-doctor-user-data-form/update-doctor-user-data-form.component.ts
View file @
082c79a7
...
...
@@ -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
{
...
...
Clinics.Frontend/src/app/components/receptionist/create-employee-form/create-employee-form.component.ts
View file @
082c79a7
...
...
@@ -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
{
...
...
Clinics.Frontend/src/app/components/receptionist/create-witing-list-item-for-employee/create-witing-list-item-for-employee.component.ts
View file @
082c79a7
...
...
@@ -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
{
...
...
Clinics.Frontend/src/app/components/receptionist/waiting-list-item/waiting-list-item.component.ts
View file @
082c79a7
...
...
@@ -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
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment