Revision a1070c2d
Von Philip Reetz vor etwa 17 Jahren hinzugefügt
SL/IS.pm | ||
---|---|---|
1525 | 1525 |
b.discount AS tradediscount, b.description AS business |
1526 | 1526 |
FROM customer c |
1527 | 1527 |
LEFT JOIN business b ON (b.id = c.business_id) |
1528 |
LEFT JOIN payment_terms pt ON (c.payment_id = pt.id)
|
|
1528 |
LEFT JOIN payment_terms pt ON (($form->{payment_id} = pt.id) OR (c.payment_id = pt.id))
|
|
1529 | 1529 |
WHERE c.id = ?|; |
1530 | 1530 |
push @values, $cid; |
1531 | 1531 |
$ref = selectfirst_hashref_query($form, $dbh, $query, @values); |
Auch abrufbar als: Unified diff
Beim Umwandeln von Auftrag in Rechnung wurden die Zahlungsbedingungen des Kunden und nicht die
des Auftrags verwendet