Update result.php
fix error for display detail of account 6xxx. this account is < 0, but is not null
This commit is contained in:
parent
e38069e41b
commit
d224c711cf
@ -505,7 +505,7 @@ elseif ($modecompta=="BOOKKEEPING")
|
|||||||
$resultNP = $totPerAccount[$cpt['account_number']]['NP'];
|
$resultNP = $totPerAccount[$cpt['account_number']]['NP'];
|
||||||
$resultN = $totPerAccount[$cpt['account_number']]['N'];
|
$resultN = $totPerAccount[$cpt['account_number']]['N'];
|
||||||
|
|
||||||
if ($showaccountdetail == 'all' || $resultN > 0) {
|
if ($showaccountdetail == 'all' || $resultN != 0) {
|
||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td></td>';
|
print '<td></td>';
|
||||||
print '<td class="tdoverflowmax200">';
|
print '<td class="tdoverflowmax200">';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user