Configuration Interface Improvements: - Added all missing CA-3 lines from planning document - Implemented proper section headers (A, B, C, D) - Added section descriptions for better understanding - Organized lines by section for logical grouping CA-3 Lines Added: - A1, A2: Taxable operations base amounts - B1-B4: VAT rate breakdowns (20%, 10%, 5.5%, 2.1%) - 05, 06: Intra-EU operations (B2B) - 17: VAT due on intra-EU acquisitions - 20, 21: Deductible VAT (fixed assets, other) - 22, 28, 29: Result calculations Section Headers: - A. Opérations imposables (Taxable Operations) - B. TVA due (VAT Due) - C. TVA déductible (Deductible VAT) - D. Résultat (Result) Enhanced Features: - Section-based organization in configuration - Type indicators (Base/VAT) for each line - Improved visual layout with section headers - Better grouping in current configuration display Language Support: - Added English translations for all new labels - Added French translations for all new labels - Consistent terminology across both languages The configuration page now shows the complete CA-3 structure as defined in the planning document!
197 lines
7.0 KiB
PHP
197 lines
7.0 KiB
PHP
<?php
|
|
/**
|
|
* MVP Setup page for DeclarationTVA module
|
|
* Complete CA-3 configuration with all sections and headers
|
|
*/
|
|
|
|
// Load Dolibarr environment
|
|
if (file_exists('../../main.inc.php')) {
|
|
$res = @include '../../main.inc.php';
|
|
} elseif (file_exists('../../../main.inc.php')) {
|
|
$res = @include '../../../main.inc.php';
|
|
} else {
|
|
$res = 0;
|
|
}
|
|
|
|
if (!$res) {
|
|
die("Include of main fails");
|
|
}
|
|
|
|
// Load module classes
|
|
require_once DOL_DOCUMENT_ROOT . '/custom/declarationtva/core/class/declarationtva_config.class.php';
|
|
|
|
// Access control
|
|
if (!$user->hasRight("declarationtva", "declarationtva", "admin")) {
|
|
accessforbidden();
|
|
}
|
|
|
|
// Load language files
|
|
$langs->load("declarationtva@declarationtva");
|
|
|
|
// Initialize objects
|
|
$config = new DeclarationTVA_Config($db, $conf->entity);
|
|
|
|
// Handle form submission
|
|
$action = GETPOST('action', 'alpha');
|
|
if ($action == 'update_mappings') {
|
|
$ca3_definitions = $config->getCA3LineDefinitions();
|
|
|
|
foreach ($ca3_definitions as $line => $definition) {
|
|
$account_code = GETPOST('account_code_' . $line, 'alpha');
|
|
$account_label = GETPOST('account_label_' . $line, 'alpha');
|
|
$vat_rate = GETPOST('vat_rate_' . $line, 'alpha');
|
|
|
|
if (!empty($account_code)) {
|
|
$config->updateAccountMapping($line, $account_code, $account_label, $vat_rate);
|
|
}
|
|
}
|
|
|
|
setEventMessages($langs->trans("ConfigurationUpdated"), null, 'mesgs');
|
|
}
|
|
|
|
// Get current mappings
|
|
$mappings = $config->getAllAccountMappings();
|
|
$account_mappings = array();
|
|
foreach ($mappings as $mapping) {
|
|
$account_mappings[$mapping['ca3_line']] = $mapping;
|
|
}
|
|
|
|
// Get available accounting accounts
|
|
$accounts = $config->getAccountingAccounts();
|
|
$vat_rates = $config->getVATRates();
|
|
$ca3_definitions = $config->getCA3LineDefinitions();
|
|
$section_headers = $config->getCA3SectionHeaders();
|
|
|
|
// Page title
|
|
$title = $langs->trans("DeclarationTVASetup");
|
|
llxHeader('', $title);
|
|
|
|
// Print page header
|
|
print load_fiche_titre($title, '', 'title_accountancy');
|
|
|
|
// Print configuration form
|
|
print '<form method="POST" action="' . $_SERVER['PHP_SELF'] . '">';
|
|
print '<input type="hidden" name="action" value="update_mappings">';
|
|
|
|
print '<div class="fiche">';
|
|
print '<div class="titre">' . $langs->trans("DeclarationTVAPCGMapping") . '</div>';
|
|
|
|
// Group CA-3 lines by section
|
|
$lines_by_section = array();
|
|
foreach ($ca3_definitions as $line => $definition) {
|
|
$section = $definition['section'];
|
|
if (!isset($lines_by_section[$section])) {
|
|
$lines_by_section[$section] = array();
|
|
}
|
|
$lines_by_section[$section][$line] = $definition;
|
|
}
|
|
|
|
// Print each section
|
|
foreach ($lines_by_section as $section_code => $lines) {
|
|
$section_info = $section_headers[$section_code];
|
|
|
|
// Section header
|
|
print '<div class="titre">' . $section_info['title'] . '</div>';
|
|
print '<div class="info">' . $section_info['description'] . '</div>';
|
|
|
|
print '<table class="noborder centpercent">';
|
|
print '<tr class="liste_titre">';
|
|
print '<th>' . $langs->trans("CA3Line") . '</th>';
|
|
print '<th>' . $langs->trans("LineLabel") . '</th>';
|
|
print '<th>' . $langs->trans("AccountCode") . '</th>';
|
|
print '<th>' . $langs->trans("AccountLabel") . '</th>';
|
|
print '<th>' . $langs->trans("VATRate") . '</th>';
|
|
print '<th>' . $langs->trans("Type") . '</th>';
|
|
print '</tr>';
|
|
|
|
foreach ($lines as $line => $definition) {
|
|
$mapping = isset($account_mappings[$line]) ? $account_mappings[$line] : array();
|
|
|
|
print '<tr>';
|
|
print '<td><strong>' . $line . '</strong></td>';
|
|
print '<td>' . $definition['label'] . '</td>';
|
|
print '<td>';
|
|
print '<select name="account_code_' . $line . '" class="flat">';
|
|
print '<option value="">' . $langs->trans("SelectAccount") . '</option>';
|
|
foreach ($accounts as $account) {
|
|
$selected = (isset($mapping['account_code']) && $mapping['account_code'] == $account['account_number']) ? 'selected' : '';
|
|
print '<option value="' . $account['account_number'] . '" ' . $selected . '>' . $account['account_number'] . ' - ' . $account['label'] . '</option>';
|
|
}
|
|
print '</select>';
|
|
print '</td>';
|
|
print '<td><input type="text" name="account_label_' . $line . '" value="' . (isset($mapping['account_label']) ? $mapping['account_label'] : '') . '" class="flat" size="30"></td>';
|
|
print '<td>';
|
|
print '<select name="vat_rate_' . $line . '" class="flat">';
|
|
foreach ($vat_rates as $rate => $label) {
|
|
$selected = (isset($mapping['vat_rate']) && $mapping['vat_rate'] == $rate) ? 'selected' : '';
|
|
print '<option value="' . $rate . '" ' . $selected . '>' . $label . '</option>';
|
|
}
|
|
print '</select>';
|
|
print '</td>';
|
|
print '<td><span class="badge badge-' . ($definition['type'] == 'base' ? 'info' : 'success') . '">' . ucfirst($definition['type']) . '</span></td>';
|
|
print '</tr>';
|
|
}
|
|
|
|
print '</table>';
|
|
print '<br>';
|
|
}
|
|
|
|
print '<div class="titre">' . $langs->trans("Actions") . '</div>';
|
|
print '<input type="submit" class="button" value="' . $langs->trans("UpdateConfiguration") . '">';
|
|
print '</div>';
|
|
|
|
print '</form>';
|
|
|
|
// Print current configuration summary
|
|
print '<div class="fiche">';
|
|
print '<div class="titre">' . $langs->trans("CurrentConfiguration") . '</div>';
|
|
|
|
if (empty($mappings)) {
|
|
print '<div class="info">' . $langs->trans("NoConfigurationFound") . '</div>';
|
|
} else {
|
|
// Group by section for display
|
|
$mappings_by_section = array();
|
|
foreach ($mappings as $mapping) {
|
|
$line = $mapping['ca3_line'];
|
|
if (isset($ca3_definitions[$line])) {
|
|
$section = $ca3_definitions[$line]['section'];
|
|
if (!isset($mappings_by_section[$section])) {
|
|
$mappings_by_section[$section] = array();
|
|
}
|
|
$mappings_by_section[$section][] = $mapping;
|
|
}
|
|
}
|
|
|
|
foreach ($mappings_by_section as $section_code => $section_mappings) {
|
|
$section_info = $section_headers[$section_code];
|
|
|
|
print '<div class="titre">' . $section_info['title'] . '</div>';
|
|
|
|
print '<table class="noborder centpercent">';
|
|
print '<tr class="liste_titre">';
|
|
print '<th>' . $langs->trans("CA3Line") . '</th>';
|
|
print '<th>' . $langs->trans("AccountCode") . '</th>';
|
|
print '<th>' . $langs->trans("AccountLabel") . '</th>';
|
|
print '<th>' . $langs->trans("VATRate") . '</th>';
|
|
print '<th>' . $langs->trans("Status") . '</th>';
|
|
print '</tr>';
|
|
|
|
foreach ($section_mappings as $mapping) {
|
|
print '<tr>';
|
|
print '<td><strong>' . $mapping['ca3_line'] . '</strong></td>';
|
|
print '<td>' . $mapping['account_code'] . '</td>';
|
|
print '<td>' . $mapping['account_label'] . '</td>';
|
|
print '<td>' . $mapping['vat_rate'] . '%</td>';
|
|
print '<td>' . ($mapping['is_active'] ? $langs->trans("Active") : $langs->trans("Inactive")) . '</td>';
|
|
print '</tr>';
|
|
}
|
|
print '</table>';
|
|
print '<br>';
|
|
}
|
|
}
|
|
|
|
print '</div>';
|
|
|
|
// Print footer
|
|
llxFooter();
|
|
?>
|