Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 6c9c012e

Von Kivitendo Admin vor mehr als 11 Jahren hinzugefügt

  • ID 6c9c012e74984b7992fc4bad93c58960744f16d2
  • Vorgänger e925bd36
  • Nachfolger 4118324a

Bilanz-Bericht: eigene EB/SB-Filter für Gegenüberstellung

Jetzt kann man sowohl die Bilanz zum Stichtag, als auch zum
Gegenüberstellungstag, mit Filtern für EB- und SB-Buchungen ziehen.

Ein nützlicher Vergleich ist z.B.:

Zum Stand: 31.12.2012 (keine Haken gesetzt)
Gegenüberstellen zu: 01.01.2013 Haken bei: "nur EB-Buchungen"

um zu sehen ob alle Salden korrekt übertragen worden sind.

Unterschiede anzeigen:

SL/RP.pm
211 211

  
212 212
  $sth->finish;
213 213

  
214
  # filter for opening and closing bookings
214 215
  # if l_ob is selected l_cb is always ignored
215
  if ( $form->{l_ob} ) {
216
    $where .= ' AND ac.ob_transaction is true  '
217
  } elsif ( not $form->{l_cb} ) {
218
    $where .= ' AND ac.cb_transaction is false ';
216
  if ( $last_period ) {
217
    # ob/cb-settings for "as of" balance
218
    if ( $form->{l_ob_compared} ) {
219
      $where .= ' AND ac.ob_transaction is true  '
220
    } elsif ( not $form->{l_cb_compared} ) {
221
      $where .= ' AND ac.cb_transaction is false ';
222
    };
223
  } else {
224
    # ob/cb-settings for "compared to" balance
225
    if ( $form->{l_ob} ) {
226
      $where .= ' AND ac.ob_transaction is true  '
227
    } elsif ( not $form->{l_cb} ) {
228
      $where .= ' AND ac.cb_transaction is false ';
229
    };
219 230
  };
220 231

  
232

  
221 233
  if ($fromdate) {
222 234
    $fromdate = conv_dateq($fromdate);
223 235
    if ($form->{method} eq 'cash') {

Auch abrufbar als: Unified diff