|
Lines 189-201
EDI accounts › Administration › Koha
Link Here
|
| 189 |
<label for="standard">Standard:</label> |
189 |
<label for="standard">Standard:</label> |
| 190 |
<select name="standard" id="standard"> |
190 |
<select name="standard" id="standard"> |
| 191 |
[% FOREACH standard IN standards %] |
191 |
[% FOREACH standard IN standards %] |
| 192 |
[% IF standard.code == account.standard %] |
192 |
[% IF standard == 'BIC' %] |
| 193 |
<option value="[% standard.code | html %]" selected="selected"> |
193 |
[% SET description = 'BiC' %] |
| 194 |
[% standard.description | html %] |
194 |
[% ELSE %] |
|
|
195 |
[% SET description = 'EDItEUR' %] |
| 196 |
[% END %] |
| 197 |
[% IF standard == account.standard %] |
| 198 |
<option value="[% standard | html %]" selected="selected"> |
| 199 |
[% description | html %] |
| 195 |
</option> |
200 |
</option> |
| 196 |
[% ELSE %] |
201 |
[% ELSE %] |
| 197 |
<option value="[% standard.code | html %]"> |
202 |
<option value="[% standard | html %]"> |
| 198 |
[% standard.description | html %] |
203 |
[% description | html %] |
| 199 |
</option> |
204 |
</option> |
| 200 |
[% END %] |
205 |
[% END %] |
| 201 |
[% END %] |
206 |
[% END %] |
|
Lines 328-334
EDI accounts › Administration › Koha
Link Here
|
| 328 |
([% account.id_code_qualifier | html %]) |
333 |
([% account.id_code_qualifier | html %]) |
| 329 |
</td> |
334 |
</td> |
| 330 |
<td>[% account.san | html %]</td> |
335 |
<td>[% account.san | html %]</td> |
| 331 |
<td>[% account.standard | html %]</td> |
336 |
<td>[% IF account.standard == 'BIC' %]BiC[% ELSE %]EDItEUR[% END %]</td> |
| 332 |
[% IF account.quotes_enabled %] |
337 |
[% IF account.quotes_enabled %] |
| 333 |
<td>Yes</td> |
338 |
<td>Yes</td> |
| 334 |
[% ELSE %] |
339 |
[% ELSE %] |
| 335 |
- |
|
|