This repository was archived by the owner on Jan 23, 2025. It is now read-only.
File tree 1 file changed +8
-0
lines changed
src/main/com/topcoder/web/tc/view/pacts/client 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 485
485
<c:when test =" ${ payment. currentStatus. id eq OWED or payment. currentStatus. id eq ACCRUING } " >
486
486
<%-- Owed, Accruing --%>
487
487
<c:choose >
488
+ <c:when test =" ${ payment. currentStatus. id eq ACCRUING } " >
489
+ <%-- Payment is pending yet: un-checked, disabled --%>
490
+ <input type =" checkbox" disabled =" disabled" name =" ${ PAYMENT_ID } " value =" ${ payment. id } " />
491
+ </c:when >
488
492
<c:when test =" ${ payment. dueDate eq null or (payment. dueDate > now) } " >
489
493
<%-- Payment release date is not reached yet: un-checked, disabled --%>
490
494
<input type =" checkbox" disabled =" disabled" name =" ${ PAYMENT_ID } " value =" ${ payment. id } " />
634
638
<c:when test =" ${ paymentItem. currentStatus. id eq OWED or paymentItem. currentStatus. id eq ACCRUING } " >
635
639
<%-- Owed, Accruing --%>
636
640
<c:choose >
641
+ <c:when test =" ${ paymentItem. currentStatus. id eq ACCRUING } " >
642
+ <%-- Payment is pending yet: un-checked, disabled --%>
643
+ <span role =" checkbox" class =" checkbox disabled" data-name =" ${ PAYMENT_ID } " data-value =" ${ paymentItem. id } " ></span >
644
+ </c:when >
637
645
<c:when test =" ${ paymentItem. dueDate eq null or (paymentItem. dueDate > now) } " >
638
646
<%-- Payment release date is not reached yet: un-checked, disabled --%>
639
647
<span role =" checkbox" class =" checkbox disabled" data-name =" ${ PAYMENT_ID } " data-value =" ${ paymentItem. id } " ></span >
You can’t perform that action at this time.
0 commit comments