Lines 210-216
$(document).ready(function() {
Link Here
|
210 |
<p>Search was: |
210 |
<p>Search was: |
211 |
<ul> |
211 |
<ul> |
212 |
[% IF ( invoicenumber ) %] |
212 |
[% IF ( invoicenumber ) %] |
213 |
<li>Invoice no.: [% invoicenumber %]</li> |
213 |
<li>Invoice no.: [% invoicenumber |html %]</li> |
214 |
[% END %] |
214 |
[% END %] |
215 |
[% IF booksellerid %] |
215 |
[% IF booksellerid %] |
216 |
<li>Vendor: [% suppliername %]</li> |
216 |
<li>Vendor: [% suppliername %]</li> |
Lines 248-266
$(document).ready(function() {
Link Here
|
248 |
[% END %] |
248 |
[% END %] |
249 |
[% END %] |
249 |
[% END %] |
250 |
[% IF ( isbneanissn ) %] |
250 |
[% IF ( isbneanissn ) %] |
251 |
<li>ISBN/EAN/ISSN: [% isbneanissn %]</li> |
251 |
<li>ISBN/EAN/ISSN: [% isbneanissn |html %]</li> |
252 |
[% END %] |
252 |
[% END %] |
253 |
[% IF ( title ) %] |
253 |
[% IF ( title ) %] |
254 |
<li>Title: [% title %]</li> |
254 |
<li>Title: [% title |html %]</li> |
255 |
[% END %] |
255 |
[% END %] |
256 |
[% IF ( author ) %] |
256 |
[% IF ( author ) %] |
257 |
<li>Author: [% author %]</li> |
257 |
<li>Author: [% author |html %]</li> |
258 |
[% END %] |
258 |
[% END %] |
259 |
[% IF ( publisher ) %] |
259 |
[% IF ( publisher ) %] |
260 |
<li>Publisher: [% publisher %]</li> |
260 |
<li>Publisher: [% publisher |html %]</li> |
261 |
[% END %] |
261 |
[% END %] |
262 |
[% IF ( publicationyear ) %] |
262 |
[% IF ( publicationyear ) %] |
263 |
<li>Publication year: [% publicationyear %]</li> |
263 |
<li>Publication year: [% publicationyear |html %]</li> |
264 |
[% END %] |
264 |
[% END %] |
265 |
[% IF ( branch ) %] |
265 |
[% IF ( branch ) %] |
266 |
<li>Library: [% Branches.GetName( branch ) %]</li> |
266 |
<li>Library: [% Branches.GetName( branch ) %]</li> |
Lines 280-286
$(document).ready(function() {
Link Here
|
280 |
<ol> |
280 |
<ol> |
281 |
<li> |
281 |
<li> |
282 |
<label for="invoicenumber">Invoice no:</label> |
282 |
<label for="invoicenumber">Invoice no:</label> |
283 |
<input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber %]" class="focus" /> |
283 |
<input type="text" id="invoicenumber" name="invoicenumber" value="[% invoicenumber |html %]" class="focus" /> |
284 |
</li> |
284 |
</li> |
285 |
<li> |
285 |
<li> |
286 |
<label for="supplier">Vendor:</label> |
286 |
<label for="supplier">Vendor:</label> |
Lines 327-349
$(document).ready(function() {
Link Here
|
327 |
</li> |
327 |
</li> |
328 |
<li> |
328 |
<li> |
329 |
<label for="isbneanissn">ISBN / EAN / ISSN:</label> |
329 |
<label for="isbneanissn">ISBN / EAN / ISSN:</label> |
330 |
<input type="text" id="isbneanissn" name="isbneanissn" value="[% isbneanissn %]" /> |
330 |
<input type="text" id="isbneanissn" name="isbneanissn" value="[% isbneanissn |html %]" /> |
331 |
</li> |
331 |
</li> |
332 |
<li> |
332 |
<li> |
333 |
<label for="title">Title:</label> |
333 |
<label for="title">Title:</label> |
334 |
<input type="text" id="title" name="title" value="[% title %]" /> |
334 |
<input type="text" id="title" name="title" value="[% title |html %]" /> |
335 |
</li> |
335 |
</li> |
336 |
<li> |
336 |
<li> |
337 |
<label for="author">Author:</label> |
337 |
<label for="author">Author:</label> |
338 |
<input type="text" id="author" name="author" value="[% author %]" /> |
338 |
<input type="text" id="author" name="author" value="[% author |html %]" /> |
339 |
</li> |
339 |
</li> |
340 |
<li> |
340 |
<li> |
341 |
<label for="publisher">Publisher:</label> |
341 |
<label for="publisher">Publisher:</label> |
342 |
<input type="text" id="publisher" name="publisher" value="[% publisher %]" /> |
342 |
<input type="text" id="publisher" name="publisher" value="[% publisher |html %]" /> |
343 |
</li> |
343 |
</li> |
344 |
<li> |
344 |
<li> |
345 |
<label for="publicationyear">Publication year:</label> |
345 |
<label for="publicationyear">Publication year:</label> |
346 |
<input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear %]" /> |
346 |
<input type="text" id="publicationyear" name="publicationyear" value="[% publicationyear |html %]" /> |
347 |
</li> |
347 |
</li> |
348 |
<li> |
348 |
<li> |
349 |
<label for="branch">Library:</label> |
349 |
<label for="branch">Library:</label> |
350 |
- |
|
|