Lines 186-194
$(document).ready(function() {
Link Here
|
186 |
<option value="ALL">All</option> |
186 |
<option value="ALL">All</option> |
187 |
[% FOREACH branchloo IN branchloop %] |
187 |
[% FOREACH branchloo IN branchloop %] |
188 |
[% IF ( branchloo.selected ) %] |
188 |
[% IF ( branchloo.selected ) %] |
189 |
<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option> |
189 |
<option value="[% branchloo.branchcode %]" selected="selected">[% branchloo.branchname %]</option> |
190 |
[% ELSE %] |
190 |
[% ELSE %] |
191 |
<option value="[% branchloo.value %]">[% branchloo.branchname %]</option> |
191 |
<option value="[% branchloo.branchcode %]">[% branchloo.branchname %]</option> |
192 |
[% END %] |
192 |
[% END %] |
193 |
[% END %] |
193 |
[% END %] |
194 |
</select> |
194 |
</select> |
195 |
- |
|
|