Revision e251cbec
Von G. Richardson vor etwa 13 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
|
||
# if l_ob is selected l_cb is always ignored
|
||
if ( $form->{l_ob} ) {
|
||
$where .= ' AND ob_transaction is true '
|
||
$where .= ' AND ac.ob_transaction is true '
|
||
} elsif ( not $form->{l_cb} ) {
|
||
$where .= ' AND cb_transaction is false ';
|
||
$where .= ' AND ac.cb_transaction is false ';
|
||
};
|
||
|
||
if ($fromdate) {
|
||
... | ... | |
my $inwhere = "";
|
||
my $item;
|
||
|
||
$where .= ' AND cb_transaction is false ' unless $form->{l_cb};
|
||
$where .= ' AND ac.cb_transaction is false ' unless $form->{l_cb};
|
||
|
||
if ($fromdate) {
|
||
$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