Update result.php

fix error for display detail of account 6xxx. this account is < 0, but is not null
This commit is contained in:
oscim 2020-01-29 08:08:15 +01:00 committed by GitHub
parent a88e1ac605
commit 862da5b646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -505,7 +505,7 @@ elseif ($modecompta=="BOOKKEEPING")
$resultNP = $totPerAccount[$cpt['account_number']]['NP'];
$resultN = $totPerAccount[$cpt['account_number']]['N'];
if ($showaccountdetail == 'all' || $resultN > 0) {
if ($showaccountdetail == 'all' || $resultN != 0) {
print '<tr>';
print '<td></td>';
print '<td class="tdoverflowmax200">';