|
@@ -24,7 +24,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="col-12" *ngIf="typeMode">
|
|
|
+ <div class="col-12" *ngIf="showPersonalData">
|
|
|
<h2 class="title">المعلومات الشخصيه</h2>
|
|
|
<div class="row">
|
|
|
<div class="wrapper">
|
|
@@ -117,6 +117,18 @@
|
|
|
<div class="row">
|
|
|
<div class="wrapper">
|
|
|
|
|
|
+ <div class="col-12">
|
|
|
+ <div class="form-group">
|
|
|
+ <h2 class="titleStatus">{{formData.status == 'pending' ? 'تحت الإجراء'
|
|
|
+ : formData.status == 'accepted' ? 'مقبول'
|
|
|
+ : formData.status == 'replayed_opinion' ? 'رأي القسم'
|
|
|
+ : formData.status == 'refused' ? 'مرفوض'
|
|
|
+ : formData.status == 'canceled' ? 'ملغي'
|
|
|
+ : formData.status == 'asked_for_opinion' ? 'طلب رأي'
|
|
|
+ : formData.status == 'asked_for_opinion' ? 'طلب رأي' : 'لايوجد'}}</h2>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4">
|
|
|
<div class="form-group">
|
|
|
<label style="float:right">نوع الطلب <span class="spanReqired-w">*</span></label>
|
|
@@ -196,9 +208,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
<!-- <h2 class="departmentHeading-w">أختر الأقسام <span>(قم بإختيار قسم كحد أدني)</span></h2> -->
|
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4" *ngIf="!editMode">
|
|
|
<div class="form-group">
|
|
@@ -226,7 +235,7 @@
|
|
|
</div>
|
|
|
<div class="col-12 col-sm-12 col-md-4 col-lg-4" *ngIf="editMode">
|
|
|
<div class="form-group">
|
|
|
- <label for="department4" style="float:right;">القسم</label>
|
|
|
+ <label for="department4" style="float:right;">القسم المناسب</label>
|
|
|
<select class="form-control selectStyle-w" id="department4" name="department4" [(ngModel)]="formData.department4">
|
|
|
<option *ngFor="let department of departments" [value]="department.department_id">{{department.department_name}}</option>
|
|
|
</select>
|
|
@@ -236,7 +245,7 @@
|
|
|
|
|
|
<div class="col-12 col-sm-12 col-md-12 col-lg-12" *ngIf="editMode">
|
|
|
<div class="form-group">
|
|
|
- <label for="status" style="float:right; display:block"> الحاله <span class="spanReqired-w">*</span></label>
|
|
|
+ <label for="status" style="float:right; display:block"> الأوامر <span class="spanReqired-w">*</span></label>
|
|
|
<button type="button" class="btn btn-success statusBtn-w" (click)="statusShow('accepted')">قبول</button>
|
|
|
<button type="button" class="btn btn-danger statusBtn-w" (click)="statusShow('refuced')">رفض</button>
|
|
|
<button type="button" class="btn btn-default statusBtn-w" (click)="statusShow('asked_for_opinion')">طلب رأي</button>
|