Revision 2d881637
Von Niclas Zimmermann vor mehr als 11 Jahren hinzugefügt
SL/SEPA.pm | ||
---|---|---|
357 | 357 |
AND ((c.link LIKE '%:${ARAP}') OR (c.link LIKE '${ARAP}:%') OR (c.link = '${ARAP}')) |
358 | 358 |
LIMIT 1| ], |
359 | 359 |
|
360 |
'add_acc_trans' => [ qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo) |
|
361 |
VALUES (?, ?, ?, ?, current_date, ?, '')| ], |
|
360 |
'add_acc_trans' => [ qq|INSERT INTO acc_trans (trans_id, chart_id, amount, transdate, gldate, source, memo, taxkey, tax_id)
|
|
361 |
VALUES (?, ?, ?, ?, current_date, ?, '', 0, (SELECT id FROM tax WHERE taxkey=0 LIMIT 1))| ],
|
|
362 | 362 |
|
363 | 363 |
'update_arap' => [ qq|UPDATE ${arap} |
364 | 364 |
SET paid = paid + ? |
Auch abrufbar als: Unified diff
tax_id/taxkey bei SEPA-Überweisungen
Bei SEPA-Überweisungen wird jetzt auch tax_id und taxkey in die
acc_trans geschrieben.
Behebt Bug #2169.