Commit 632f3d5e by Chanachai

Add เปลี่ยนจากอักฤษเป็นไทย

parent 16d16296
......@@ -204,9 +204,7 @@
<label> ชื่อผู้จอง </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelRoomDetail.userName" formControlName="userNameForm" />
<div style="color: red;" *ngIf="myFormRoom.controls.userNameForm.status=='INVALID'">
Invalid
Username.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.userNameForm.status=='INVALID'">กรุณากรอกชื่อผู้จอง.</div>
</div>
</div>
</div>
......@@ -216,9 +214,7 @@
<label> อีเมล </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelRoomDetail.email" formControlName="email" />
<div style="color: red;" *ngIf="myFormRoom.controls.email.status=='INVALID'">
Invalid
Email.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.email.status=='INVALID'">กรุณากรอกอีเมล.</div>
</div>
</div>
</div>
......@@ -228,9 +224,7 @@
<label> เบอร์โทร </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelRoomDetail.room.rTelephone" formControlName="rTelephone" />
<div style="color: red;" *ngIf="myFormRoom.controls.rTelephone.status=='INVALID'">
Invalid
Telephone.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.rTelephone.status=='INVALID'">กรุณากรอกหมายเลขโทรศัพท์.</div>
</div>
</div>
</div>
......@@ -239,9 +233,7 @@
<label for="exampleFormControlSelect1">ชื่อห้อง</label>
<input class="form-control" type="text" [(ngModel)]="modelRoomDetail.room.rName"
formControlName="rName" />
<div style="color: red;" *ngIf="myFormRoom.controls.rName.status=='INVALID'">
Invalid
Room Name.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.rName.status=='INVALID'">กรุณากรอกชื่อห้อง.</div>
</div>
</div>
<div class="row">
......@@ -249,9 +241,7 @@
<label for="exampleFormControlSelect1">รายละเอียด</label>
<input class="form-control" type="text" [(ngModel)]="modelRoomDetail.room.rDesc"
formControlName="rDesc" />
<div style="color: red;" *ngIf="myFormRoom.controls.rDesc.status=='INVALID'">
Invalid
Desc.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.rDesc.status=='INVALID'">กรุณากรอกรายละเอียดการจอง.</div>
</div>
</div>
<div class="row">
......@@ -259,17 +249,13 @@
<label for="exampleFormControlSelect1">วันที่เริ่มต้น</label>
<input type="date" class="form-control" [(ngModel)]="sDate"
(ngModelChange)="rDate(sDate,'sdate')" formControlName="sDate" />
<div style="color: red;" *ngIf="myFormRoom.controls.sDate.status=='INVALID'">
Invalid
Start Date.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.sDate.status=='INVALID'">กรุณากรอกวันที่เริ่มต้นการจอง.</div>
</div>
<div class="col-6 mb-1">
<label for="exampleFormControlSelect1">วันที่สิ้นสุด</label>
<input type="date" class="form-control" [(ngModel)]="eDate"
(ngModelChange)="rDate(eDate,'edate')" formControlName="eDate" />
<div style="color: red;" *ngIf="myFormRoom.controls.eDate.status=='INVALID'">
Invalid
End Date.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.eDate.status=='INVALID'">กรุณากรอกวันที่สิ้นสุดการจอง.</div>
</div>
</div>
<div class="row">
......@@ -277,17 +263,13 @@
<label for="exampleFormControlSelect1">เวลาที่เริ่มต้น</label>
<input class="form-control" type="time" [(ngModel)]="thStime"
(ngModelChange)="thtimeChange(thStime,modelRoomDetail.sTime)" formControlName="sTime" />
<div style="color: red;" *ngIf="myFormRoom.controls.sTime.status=='INVALID'">
Invalid
Start Time.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.sTime.status=='INVALID'">กรุณากรอกเวลาที่เริ่มต้นการจอง.</div>
</div>
<div class="col-6 mb-1">
<label for="exampleFormControlSelect1">เวลาที่สิ้นสุด</label>
<input class="form-control" type="time" [(ngModel)]="thEtime"
(ngModelChange)="thtimeChange(thEtime,modelRoomDetail.eTime)" formControlName="eTime" />
<div style="color: red;" *ngIf="myFormRoom.controls.eTime.status=='INVALID'">
Invalid
End Time.</div>
<div style="color: red;" *ngIf="myFormRoom.controls.eTime.status=='INVALID'">กรุณากรอกเวลาที่สิ้นสุดการจอง</div>
</div>
</div>
<div class=" row">
......@@ -335,9 +317,7 @@
<label> ชื่อผู้จอง </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelItemDetail.userName" formControlName="userNameForm" />
<div style="color: red;" *ngIf="myFormEquir.controls.userNameForm.status=='INVALID'">
Invalid
Name.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.userNameForm.status=='INVALID'">กรุณากรอกชื่อผู้จอง.</div>
</div>
</div>
</div>
......@@ -347,9 +327,7 @@
<label> อีเมล </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelItemDetail.email" formControlName="email" />
<div style="color: red;" *ngIf="myFormEquir.controls.email.status=='INVALID'">
Invalid
Email.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.email.status=='INVALID'">กรุณากรอกอีเมล.</div>
</div>
</div>
</div>
......@@ -359,9 +337,7 @@
<label> เบอร์โทร </label>
<input class=" form-control" placeholder="" type="text"
[(ngModel)]="modelItemDetail.equirment.eTelephone" formControlName="eTelephone" />
<div style="color: red;" *ngIf="myFormEquir.controls.eTelephone.status=='INVALID'">
Invalid
Telephone.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.eTelephone.status=='INVALID'">กรุณากรอกหมายเลขโทรศัพท์</div>
</div>
</div>
</div>
......@@ -369,18 +345,14 @@
<div class="col-sm-12 mb-1">
<label for="exampleFormControlSelect1">ชื่ออุปกรณ์</label>
<input class="form-control" type="text" [(ngModel)]="modelItemDetail.equirment.eqName" formControlName="eqName" />
<div style="color: red;" *ngIf="myFormEquir.controls.eqName.status=='INVALID'">
Invalid
Equirment Name.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.eqName.status=='INVALID'">กรุณากรอกชื่ออุปกรณ์.</div>
</div>
</div>
<div class="row">
<div class="col-sm-12 mb-1">
<label for="exampleFormControlSelect1">รายละเอียดอุปกรณ์</label>
<input class="form-control" type="text" [(ngModel)]="modelItemDetail.equirment.eqDesc" formControlName="eqDesc" />
<div style="color: red;" *ngIf="myFormEquir.controls.eqDesc.status=='INVALID'">
Invalid
Equirment Desc.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.eqDesc.status=='INVALID'">กรุณากรอกรายละเอียดการเบิก.</div>
</div>
</div>
<div class="row">
......@@ -388,17 +360,13 @@
<label for="exampleFormControlSelect1">วันที่เริ่มต้น</label>
<input type="date" class="form-control" [(ngModel)]="sDate"
(ngModelChange)="rDate(sDate,'sdate')" formControlName="sDate" />
<div style="color: red;" *ngIf="myFormEquir.controls.sDate.status=='INVALID'">
Invalid
Start Date.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.sDate.status=='INVALID'">กรุณากรอกวันที่เริ่มต้นการเบิก</div>
</div>
<div class="col-6 mb-1">
<label for="exampleFormControlSelect1">วันที่สิ้นสุด</label>
<input type="date" class="form-control" [(ngModel)]="eDate"
(ngModelChange)="rDate(eDate,'edate')" formControlName="eDate" />
<div style="color: red;" *ngIf="myFormEquir.controls.eDate.status=='INVALID'">
Invalid
End Date.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.eDate.status=='INVALID'">กรุณากรอกวันที่สิ้นสุดการเบิก.</div>
</div>
</div>
<div class="row">
......@@ -406,17 +374,13 @@
<label for="exampleFormControlSelect1">เวลาที่เริ่มต้น</label>
<input class="form-control" type="time" [(ngModel)]="thStime"
(ngModelChange)="thtimeChange(thStime,modelItemDetail.sTime)" formControlName="sTime" />
<div style="color: red;" *ngIf="myFormEquir.controls.sTime.status=='INVALID'">
Invalid
Start Time.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.sTime.status=='INVALID'">กรุณากรอกเวลาที่เริ่มต้นการเบิก</div>
</div>
<div class="col-6 mb-1">
<label for="exampleFormControlSelect1">เวลาที่สิ้นสุด</label>
<input class="form-control" type="time" [(ngModel)]="thEtime"
(ngModelChange)="thtimeChange(thStime,modelItemDetail.eTime)" formControlName="eTime" />
<div style="color: red;" *ngIf="myFormEquir.controls.eTime.status=='INVALID'">
Invalid
End Time.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.eTime.status=='INVALID'">กรุณากรอกเวลาที่สิ้นสุดการเบิก</div>
</div>
</div>
<div class=" row">
......@@ -424,9 +388,7 @@
<label for="changequantity">จำนวน</label>
<input id="changequantity" type="number" class="form-control form-control-sm"
[(ngModel)]="modelItemDetail.Quantity" formControlName="Quantity" />
<div style="color: red;" *ngIf="myFormEquir.controls.Quantity.status=='INVALID'">
Invalid
Quantity.</div>
<div style="color: red;" *ngIf="myFormEquir.controls.Quantity.status=='INVALID'">กรุณากรอกจำนวนการเบิก.</div>
</div>
</div>
<div class=" row">
......
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