Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 4e2b549a

Von Sven Schöling vor mehr als 14 Jahren hinzugefügt

  • ID 4e2b549a28f09fdc749f380a3e8c458c4ff53273
  • Vorgänger 251480b5
  • Nachfolger 6ce9fc3a

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.

Unterschiede anzeigen:

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