All checks were successful
Deploy mahnung / deploy (push) Successful in 14s
Vollstaendiges 3-stufiges Mahnwesen nach BGB §288: - SQL-Schema (llx_mahnung_mahnung, llx_mahnung_stufe) - CRUD-Klassen (Mahnung, MahnungStufe, MahnungVorschlag) - TCPDF DIN-5008 PDF-Generierung - Verzugszinsberechnung B2C/B2B + §288 Abs.5 Pauschale - Trigger: offene Mahnungen bei Zahlungseingang schliessen - Hook: Tab + Button auf Rechnungs-/Kundenkarte - Cron: taegl. Vorschlagsliste + Ntfy-Push - Deploy-Pipeline (.forgejo/workflows/deploy.yml) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
13 lines
758 B
SQL
13 lines
758 B
SQL
-- 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.
|
|
|
|
ALTER TABLE llx_mahnung_mahnung ADD UNIQUE INDEX uk_mahnung_ref (entity, ref);
|
|
ALTER TABLE llx_mahnung_mahnung ADD INDEX idx_mahnung_facture (fk_facture);
|
|
ALTER TABLE llx_mahnung_mahnung ADD INDEX idx_mahnung_soc (fk_soc);
|
|
ALTER TABLE llx_mahnung_mahnung ADD INDEX idx_mahnung_status (status);
|
|
ALTER TABLE llx_mahnung_mahnung ADD INDEX idx_mahnung_stufe (stufe);
|
|
ALTER TABLE llx_mahnung_mahnung ADD INDEX idx_mahnung_date (date_mahnung);
|