56 lines
2.3 KiB
HTML
56 lines
2.3 KiB
HTML
|
<div class="row">
|
||
|
<h6 class="title" th:text="'Type of Special Pass Application - ' + ${spForm?.appType?.mstrDtDesc?.en} + ' Pass'" />
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Application Ref No.'}"></small>
|
||
|
<h6 th:text="${spForm?.spRefNo}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Applicant Full Name'}"></small>
|
||
|
<h6 th:text="${spForm?.applicant?.fullname}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Nationality'}"></small>
|
||
|
<h6 th:text="${spForm?.applicant?.nationality?.cntryDesc}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Passport No.'}"></small>
|
||
|
<h6 th:text="${spForm?.applicant?.passportNo}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Passport Expiry Date'}"></small>
|
||
|
<h6 th:text="${#dates.format(spForm?.applicant?.pptExpiryDt, 'dd-MM-yyyy')}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Expiry Date of Pass'}"></small>
|
||
|
<h6 th:text="${#dates.format(spForm?.passExpiryDt, 'dd-MM-yyyy')}"></h6>
|
||
|
</div>
|
||
|
<th:block th:if="${spForm?.appType?.mstrDtCode == 'STD'}">
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Educational Institution Name'}"></small>
|
||
|
<h6 th:text="${spForm?.companyProfile?.name}"></h6>
|
||
|
</div>
|
||
|
</th:block>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Period of Extension Requested'}"></small>
|
||
|
<h6 th:text="${#dates.format(spForm?.passExtDt, 'dd-MM-yyyy')}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Payment Ref No.'}"></small>
|
||
|
<th:block th:if="${!isPaid}">
|
||
|
<h6 th:text="${payForm?.sellerOrderNo}"></h6>
|
||
|
</th:block>
|
||
|
<th:block th:if="${isPaid}">
|
||
|
<h6 th:text="${transaction.sellerOrderNo}"></h6>
|
||
|
</th:block>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Payment Amount'}"></small>
|
||
|
<h6 th:text="'MYR ' + ${#numbers.formatDecimal(payForm?.txnAmount, 0, 'COMMA', 2, 'POINT')}"></h6>
|
||
|
</div>
|
||
|
<div class="col-lg-4 col-md-4">
|
||
|
<small class="text-muted" th:text="#{'Reason for Overstaying'}"></small>
|
||
|
<h6 th:text="${spForm?.reason}"></h6>
|
||
|
</div>
|
||
|
</div>
|