Changeset e0cdea2 for Farmatiko/ClientApp/src/app/admin
- Timestamp:
- 02/08/21 16:39:25 (4 years ago)
- Branches:
- master
- Children:
- 8eb1e21, dae4cde
- Parents:
- 0a694bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/admin/admin.component.ts
r0a694bb re0cdea2 124 124 125 125 rejectRequest(req: IPharmacyHeadRequest) { 126 this.dataService.deleteClaimingRequest(req .id)126 this.dataService.deleteClaimingRequest(req) 127 127 .subscribe((status: boolean) => { 128 128 if(status) { … … 139 139 approveRequest(req: IPharmacyHeadRequest) { 140 140 if(req) { 141 if (req.PharmacyHead.Pharmacy == null){ 142 req.PharmacyHead.Pharmacy = []; 143 } 141 144 req.PharmacyHead.Pharmacy.push(req.Pharmacy); 142 145 this.dataService.updatePharmacyHead(req.PharmacyHead)
Note:
See TracChangeset
for help on using the changeset viewer.