|
Lines 306-315
Link Here
|
| 306 |
<label for="defaultreplacecost">Default replacement cost: </label> |
306 |
<label for="defaultreplacecost">Default replacement cost: </label> |
| 307 |
<input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | $Price on_editing => 1 %]" min="0" /> |
307 |
<input type="text" id="defaultreplacecost" name="defaultreplacecost" size="10" value="[% itemtype.defaultreplacecost | $Price on_editing => 1 %]" min="0" /> |
| 308 |
</li> |
308 |
</li> |
| 309 |
<li> |
|
|
| 310 |
<label for="processfee">Processing fee (when lost): </label> |
| 311 |
<input type="text" id="processfee" name="processfee" size="10" value="[% itemtype.processfee | $Price on_editing => 1 %]" min="0" /> |
| 312 |
</li> |
| 313 |
<li> |
309 |
<li> |
| 314 |
<label for="checkinmsg">Checkin message: </label> |
310 |
<label for="checkinmsg">Checkin message: </label> |
| 315 |
<textarea id="checkinmsg" name="checkinmsg" cols="55" rows="5">[% itemtype.checkinmsg | html %]</textarea> |
311 |
<textarea id="checkinmsg" name="checkinmsg" cols="55" rows="5">[% itemtype.checkinmsg | html %]</textarea> |
|
Lines 433-439
Link Here
|
| 433 |
<th>Daily rental charge</th> |
429 |
<th>Daily rental charge</th> |
| 434 |
<th>Hourly rental charge</th> |
430 |
<th>Hourly rental charge</th> |
| 435 |
<th>Default replacement cost</th> |
431 |
<th>Default replacement cost</th> |
| 436 |
<th>Processing fee (when lost)</th> |
|
|
| 437 |
<th>Checkin message</th> |
432 |
<th>Checkin message</th> |
| 438 |
<th>Library limitations</th> |
433 |
<th>Library limitations</th> |
| 439 |
<th>Automatic check-in</th> |
434 |
<th>Automatic check-in</th> |
|
Lines 509-515
Link Here
|
| 509 |
</td> |
504 |
</td> |
| 510 |
|
505 |
|
| 511 |
<td>[% itemtype.defaultreplacecost | $Price %]</td> |
506 |
<td>[% itemtype.defaultreplacecost | $Price %]</td> |
| 512 |
<td>[% itemtype.processfee | $Price %]</td> |
|
|
| 513 |
<td>[% itemtype.checkinmsg | html_line_break | $raw %]</td> |
507 |
<td>[% itemtype.checkinmsg | html_line_break | $raw %]</td> |
| 514 |
<td> |
508 |
<td> |
| 515 |
[% SET library_limits = itemtype.library_limits %] |
509 |
[% SET library_limits = itemtype.library_limits %] |
|
Lines 575-581
Link Here
|
| 575 |
rentalcharge: { number: true }, |
569 |
rentalcharge: { number: true }, |
| 576 |
rentalcharge_hourly: { number: true }, |
570 |
rentalcharge_hourly: { number: true }, |
| 577 |
defaultreplacecost: { number: true }, |
571 |
defaultreplacecost: { number: true }, |
| 578 |
processfee: { number: true } |
|
|
| 579 |
} |
572 |
} |
| 580 |
}); |
573 |
}); |
| 581 |
$("#itemtype").on("blur",function(){ |
574 |
$("#itemtype").on("blur",function(){ |
| 582 |
- |
|
|