Revision 4e2b549a
Von Sven Schöling vor mehr als 14 Jahren hinzugefügt
SL/RP.pm | ||
---|---|---|
1198 | 1198 |
AND (exchangerate.transdate = ${arap}.transdate)) AS exchangerate |
1199 | 1199 |
FROM ${arap}, ${ct} |
1200 | 1200 |
WHERE ((paid != amount) OR (datepaid > (date $todate) AND datepaid is not null)) |
1201 |
AND (${arap}.storno IS FALSE)
|
|
1201 |
AND NOT COALESCE (${arap}.storno, 'f')
|
|
1202 | 1202 |
AND (${arap}.${ct}_id = ${ct}.id) |
1203 | 1203 |
AND (${ct}.id = ?) |
1204 | 1204 |
AND (transdate <= (date $todate) $fromwhere ) |
Auch abrufbar als: Unified diff
RP->aging: storno kann auch NULL sein
Fehler trat auf, weil Kreditorenbuchungen nicht sicher gehen, dass storno auf false steht.
Dieser Fix behebt das für diesen speziellen Fall.
storno sollte später auf NOT NULL gesetzt werden.