Remove D section from configuration page

- Remove D section (calculated lines) from configuration interface
- Remove D section from section headers configuration
- Simplify configuration page by removing unnecessary calculated section
- Clean up interface to show only configurable sections (A and B)
This commit is contained in:
Frank Cools 2025-10-07 20:14:31 +02:00
parent 8eaf68f544
commit 62a0b5dba2
2 changed files with 0 additions and 6 deletions

View File

@ -164,7 +164,6 @@ foreach ($lines_by_section as $section_code => $lines) {
// Skip D-section lines (25, 26, 28, 29) as they are calculated // Skip D-section lines (25, 26, 28, 29) as they are calculated
if ($section_code == 'D') { if ($section_code == 'D') {
print '<div class="info"><strong>Note:</strong> Les lignes de la section D sont calculées automatiquement à partir des autres sections.</div>';
continue; continue;
} }

View File

@ -468,11 +468,6 @@ class DeclarationTVA_Config
'title' => 'B. DÉCOMPTE DE LA TVA À PAYER', 'title' => 'B. DÉCOMPTE DE LA TVA À PAYER',
'description' => '', 'description' => '',
'notice' => '' 'notice' => ''
),
'D' => array(
'title' => 'D. RÉSULTAT',
'description' => '',
'notice' => ''
) )
); );
} }