Revision e251cbec
Von G. Richardson vor fast 13 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
213 | 213 |
|
214 | 214 |
# if l_ob is selected l_cb is always ignored |
215 | 215 |
if ( $form->{l_ob} ) { |
216 |
$where .= ' AND ob_transaction is true ' |
|
216 |
$where .= ' AND ac.ob_transaction is true '
|
|
217 | 217 |
} elsif ( not $form->{l_cb} ) { |
218 |
$where .= ' AND cb_transaction is false '; |
|
218 |
$where .= ' AND ac.cb_transaction is false ';
|
|
219 | 219 |
}; |
220 | 220 |
|
221 | 221 |
if ($fromdate) { |
... | ... | |
471 | 471 |
my $inwhere = ""; |
472 | 472 |
my $item; |
473 | 473 |
|
474 |
$where .= ' AND cb_transaction is false ' unless $form->{l_cb}; |
|
474 |
$where .= ' AND ac.cb_transaction is false ' unless $form->{l_cb};
|
|
475 | 475 |
|
476 | 476 |
if ($fromdate) { |
477 | 477 |
$fromdate = conv_dateq($fromdate); |
Auch abrufbar als: Unified diff
Bug 1797 - cb_transaction nicht eindeutig bei GuV
cb_transaction kommt auch in Tabelle gl vor, wird aber für die Auswertung nicht
benötigt