|
Lines 100-110
Link Here
|
| 100 |
|
100 |
|
| 101 |
<li> |
101 |
<li> |
| 102 |
<label for="paid">Amount being paid: </label> |
102 |
<label for="paid">Amount being paid: </label> |
| 103 |
<input name="paid" id="paid" value="[% amountoutstanding | $Price %]"/> |
103 |
<input name="paid" id="paid" value="[% amountoutstanding | $Price on_editing => 1 %]"/> |
| 104 |
</li> |
104 |
</li> |
| 105 |
<li> |
105 |
<li> |
| 106 |
<label for="collected">Collected from patron: </label> |
106 |
<label for="collected">Collected from patron: </label> |
| 107 |
<input id="collected" value="[% amountoutstanding | $Price %]"/> |
107 |
<input id="collected" value="[% amountoutstanding | $Price on_editing => 1 %]"/> |
| 108 |
</li> |
108 |
</li> |
| 109 |
<li> |
109 |
<li> |
| 110 |
<label>Change to give: </label> |
110 |
<label>Change to give: </label> |
|
Lines 202-208
Link Here
|
| 202 |
</li> |
202 |
</li> |
| 203 |
<li> |
203 |
<li> |
| 204 |
<label for="paid">Amount paid :</label> |
204 |
<label for="paid">Amount paid :</label> |
| 205 |
<input name="paid" id="paid" value="[% total | $Price %]"/> |
205 |
<input name="paid" id="paid" value="[% total | $Price on_editing => 1 %]"/> |
| 206 |
</li> |
206 |
</li> |
| 207 |
<li> |
207 |
<li> |
| 208 |
[% IF type == 'writeoff' %] |
208 |
[% IF type == 'writeoff' %] |
|
Lines 210-216
Link Here
|
| 210 |
[% ELSE %] |
210 |
[% ELSE %] |
| 211 |
<label for="collected">Collect from patron: </label> |
211 |
<label for="collected">Collect from patron: </label> |
| 212 |
[% END %] |
212 |
[% END %] |
| 213 |
<input id="collected" value="[% total | $Price %]"/> |
213 |
<input id="collected" value="[% total | $Price on_editing => 1 %]"/> |
| 214 |
</li> |
214 |
</li> |
| 215 |
<li> |
215 |
<li> |
| 216 |
<label>Change to give: </label> |
216 |
<label>Change to give: </label> |
| 217 |
- |
|
|