2023-04-01 20:42:37 +02:00
|
|
|
<div id="tabs">
|
|
|
|
<ul>
|
|
|
|
<li><a href="#tabs-1"><!--[TABTEXT]--></a></li>
|
|
|
|
</ul>
|
|
|
|
<div id="tabs-1">
|
|
|
|
[MESSAGE]
|
2023-04-04 14:15:01 +02:00
|
|
|
[FORMHANDLEREVENT]
|
|
|
|
<div class="row">
|
|
|
|
<div class="row-height">
|
2023-04-05 11:07:12 +02:00
|
|
|
<div class="col-xs-12 col-md-12 col-md-height">
|
2023-04-04 14:15:01 +02:00
|
|
|
<div class="inside inside-full-height">
|
|
|
|
<fieldset>
|
|
|
|
<legend>{|Offene Einzelsalden|}</legend>
|
|
|
|
<form action="" method="post" id="buchungenform">
|
2023-04-01 20:42:37 +02:00
|
|
|
[TAB1]
|
2023-04-04 14:15:01 +02:00
|
|
|
</form>
|
2023-04-05 11:07:12 +02:00
|
|
|
</fieldset>
|
|
|
|
<fieldset>
|
|
|
|
<table>
|
|
|
|
<legend>Stapelverarbeitung</legend>
|
|
|
|
<tr>
|
|
|
|
<td><input type="checkbox" value="1" id="autoalle" /> alle markieren </td>
|
|
|
|
</tr>
|
|
|
|
<form action="" method="post">
|
2023-04-04 14:15:01 +02:00
|
|
|
<td><button name="submit" value="neuberechnen" class="ui-button-icon" style="width:100%;">{|Buchungen neu berechnen|}</button></td></tr>
|
|
|
|
</form>
|
2023-04-05 11:07:12 +02:00
|
|
|
<td><button name="submit" form = "buchungenform" value="BUCHEN" class="ui-button-icon" style="width:100%;">{|Markierte BUCHEN|}</button></td></tr>
|
2023-04-04 14:15:01 +02:00
|
|
|
</table>
|
2023-04-05 11:07:12 +02:00
|
|
|
</fieldset>
|
2023-04-04 14:15:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-04-01 20:42:37 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-04-05 11:07:12 +02:00
|
|
|
<script>
|
|
|
|
|
|
|
|
$('#autoalle').on('change',function(){
|
|
|
|
var wert = $(this).prop('checked');
|
|
|
|
$('#fibu_buchungen_zuordnen').find('input[type="checkbox"]').prop('checked',wert);
|
|
|
|
$('#fibu_buchungen_zuordnen').find('input[type="checkbox"]').first().trigger('change');
|
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|