Skip to content
This repository was archived by the owner on Mar 21, 2025. It is now read-only.

changed min="minDate" to min="first.date" #3529

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/views/loans/viewloanaccountdetails.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h3 class="bolder">{{'label.heading.confirm' | translate}}</h3>

<div class="col-sm-3">
<input id="endDate" class="date-disable form-control" readonly type="text"
datepicker-pop="{{df}}" ng-model="date.toDate" is-open="opened" min="minDate"
datepicker-pop="{{df}}" ng-model="date.toDate" is-open="opened" min="date.fromDate"
max="restrictDate"/>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/views/organization/cashmgmt/createCashier.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
<label class="control-label col-sm-2"> {{ 'label.input.teller.cashier.endDate' | translate }}<span class="required">*</span></label>
<div class="col-sm-3">
<input id="endDate" name="endDate" sort type="text" datepicker-pop="dd MMMM yyyy" ng-model="formData.endDate"
class="form-control" is-open="opened" min="minDate" required />
class="form-control" is-open="opened" min="first.date" required />
</div>
<div class="col-sm-2">
<form-validate valattributeform="createcashierform" valattribute="endDate"/>
Expand Down