Revision 6c0095f1
Von Jan Büren vor mehr als 5 Jahren hinzugefügt
js/kivi.BankTransaction.js | ||
---|---|---|
140 | 140 |
} |
141 | 141 |
}); |
142 | 142 |
}; |
143 |
ns.update_skonto = function(caller, bt_id, prop_id, formatted_amount_with_skonto_pt) { |
|
144 |
if (caller.value === 'free_skonto') { |
|
145 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).val(""); |
|
146 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).prop('disabled', false); |
|
147 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).focus(); |
|
148 |
} |
|
149 |
if (caller.value === 'without_skonto') { |
|
150 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).val(kivi.format_amount(0,2)); |
|
151 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).prop('disabled', true); |
|
152 |
} |
|
153 |
if (caller.value === 'with_skonto_pt') { |
|
154 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).val(formatted_amount_with_skonto_pt); |
|
155 |
$('#free_skonto_amount_' + bt_id + '_' + prop_id).prop('disabled', true); |
|
156 |
} |
|
157 |
}; |
|
158 |
|
|
143 | 159 |
}); |
Auch abrufbar als: Unified diff
Kontoauszug verbuchen: Neuen Skonto-Typ
Eingabe eines freien Skonto-Betrags in der Maske aktiv.
Ferner Anzeigen des Skonto-Betrags bei with_skonto_pt, damit
der Anwender besser visuell unterstützt wird.