Add debugging to journal entries generation
- Added debug logging to see how many balancing entries are found - Added logging to show each balancing entry being added - Added total count of entries after balancing - Should help identify if entries are being added to the PDF
This commit is contained in:
parent
aa56cf4640
commit
26345aee03
@ -1871,11 +1871,14 @@ class DeclarationTVA_PDF
|
|||||||
|
|
||||||
// Add balancing entry to ensure debits equal credits
|
// Add balancing entry to ensure debits equal credits
|
||||||
$balancing_entries = $this->getBalancingEntries($declaration, $entries);
|
$balancing_entries = $this->getBalancingEntries($declaration, $entries);
|
||||||
|
error_log("DeclarationTVA: Found " . count($balancing_entries) . " balancing entries");
|
||||||
foreach ($balancing_entries as $entry) {
|
foreach ($balancing_entries as $entry) {
|
||||||
if ($entry) {
|
if ($entry) {
|
||||||
|
error_log("DeclarationTVA: Adding balancing entry: " . $entry['account_code'] . " " . $entry['debit'] . " " . $entry['credit']);
|
||||||
$entries[] = $entry;
|
$entries[] = $entry;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
error_log("DeclarationTVA: Total entries after balancing: " . count($entries));
|
||||||
|
|
||||||
return $entries;
|
return $entries;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user