- Add multi-invoice payment support (link one bank transaction to multiple invoices) - Add payment unlinking feature to correct wrong matches - Show linked payments, invoices and bank entries in transaction detail view - Allow linking already paid invoices to bank transactions - Update README with new features - Add CHANGELOG.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
853 B
SQL
Executable file
14 lines
853 B
SQL
Executable file
-- Copyright (C) 2026 Eduard Wisch <data@data-it-solution.de>
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
|
|
-- Indexes for llx_bankimport_statement
|
|
|
|
ALTER TABLE llx_bankimport_statement ADD UNIQUE INDEX uk_bankimport_statement (statement_number, statement_year, iban, entity);
|
|
ALTER TABLE llx_bankimport_statement ADD INDEX idx_bankimport_statement_entity (entity);
|
|
ALTER TABLE llx_bankimport_statement ADD INDEX idx_bankimport_statement_iban (iban);
|
|
ALTER TABLE llx_bankimport_statement ADD INDEX idx_bankimport_statement_year (statement_year);
|
|
ALTER TABLE llx_bankimport_statement ADD INDEX idx_bankimport_statement_date (statement_date);
|