Revision 180abd67
Von Bernd Bleßmann vor etwa 1 Jahr hinzugefügt
templates/design40_webpages/ap/form_header.html | ||
---|---|---|
230 | 230 |
<input type="hidden" name="tax_[% i %]" value="[% temp = " tax"_ i %][% $temp | html %]"> |
231 | 231 |
</td> |
232 | 232 |
<td class="numeric"> |
233 |
<input type="text" name="amount_[% i %]" size="10" [% disabled ? disabled : '' %] value="[% temp = "amount_"_ i %][% $temp | html %]" class="numeric-wi-small">
|
|
233 |
<input type="text" name="amount_[% i %]" size="10" [% readonly ? 'readonly' : '' %] value="[% temp = "amount_"_ i %][% $temp | html %]" class="numeric-wi-small">
|
|
234 | 234 |
</td> |
235 | 235 |
<td class="numeric"> |
236 | 236 |
[% temp_r = "tax_reverse_"_ i %] |
templates/webpages/ap/form_header.html | ||
---|---|---|
224 | 224 |
<input type="hidden" name="tax_[% i %]" value="[% temp = "tax"_ i %][% $temp | html %]"> |
225 | 225 |
</td> |
226 | 226 |
<td> |
227 |
<input name="amount_[% i %]" size="10" [% disabled ? disabled : '' %] value="[% temp = "amount_"_ i %][% $temp | html %]">
|
|
227 |
<input name="amount_[% i %]" size="10" [% readonly ? 'readonly' : '' %] value="[% temp = "amount_"_ i %][% $temp | html %]">
|
|
228 | 228 |
</td> |
229 | 229 |
<td> |
230 | 230 |
[% temp_r = "tax_reverse_"_ i %] |
Auch abrufbar als: Unified diff
Schreibgeschützte Kreditorenbelege: Betrag richtig readonly setzen
- die Variable, die den Schreibschutz steuern soll heißt "readonly"
- 'disabled' (oder 'readonly') muss im TT-Tag in Anführungszeichen,
sonst wird es als Variable interpretiert
- lieber readonly statt disabled setzen, da sonst bei einem "Erneuern"
das Feld nicht übertragen wird und dann die Buchunsgzeile
verschwindet, da kein Betrag vorhanden ist