Revision 66b2b0ed
Von Moritz Bunkus vor fast 8 Jahren hinzugefügt
SL/AP.pm | ||
---|---|---|
649 | 649 |
|
650 | 650 |
# Get the AP accno. |
651 | 651 |
$query = |
652 |
qq|SELECT c.accno
|
|
652 |
qq|SELECT c.id
|
|
653 | 653 |
FROM acc_trans at |
654 | 654 |
LEFT JOIN chart c ON (at.chart_id = c.id) |
655 | 655 |
WHERE (trans_id = ?) |
... | ... | |
657 | 657 |
ORDER BY at.acc_trans_id |
658 | 658 |
LIMIT 1|; |
659 | 659 |
|
660 |
($form->{APselected}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
|
|
660 |
($form->{AP_chart_id}) = selectfirst_array_query($form, $dbh, $query, conv_i($form->{id}));
|
|
661 | 661 |
|
662 | 662 |
# Post the new payments. |
663 | 663 |
$self->post_transaction($myconfig, $form, $dbh, 1); |
Auch abrufbar als: Unified diff
Kreditorenbuchungen: Zahlungen buchen gefixt
Seit Umstellung auf die Verwendung des Chart-Pickers heißt die
Form-Variable für das Verbindlichkeitskonto »AP_chart_id«, und nicht
mehr »APselected«. Außerdem enthält sie die Datenbank-ID des Kontos,
und nicht die Kontonummer.