Update web view with blocked accounts
This commit is contained in:
@@ -97,14 +97,24 @@ $total_incomes = $total_outcomes = $cur_incomes = $cur_outcomes = 0;
|
||||
|
||||
while($operation = $operations->fetchArray())
|
||||
{
|
||||
if ($operation["transfert"] != "" || $operation["meta"] == "1") continue;
|
||||
if ($operation["meta"] == "1" ||
|
||||
($operation["transfert"] != "" && ($operation["amount"] < 0
|
||||
|| $_SESSION["user"]->IsAccountBlocked($operation["account"]))))
|
||||
continue;
|
||||
|
||||
$date = mktime(0, 0, 0, $operation["month"]+1, $operation["day"]+1, $operation["year"]);
|
||||
if ($operation["transfert"] == "")
|
||||
{
|
||||
$date = mktime(0, 0, 0, $operation["month"]+1, $operation["day"]+1, $operation["year"]);
|
||||
|
||||
$accounts[$operation["account"]]["total"] += $operation["amount"];
|
||||
$accounts[$operation["account"]]["total"] += $operation["amount"];
|
||||
|
||||
if ($date <= $cur_date)
|
||||
$accounts[$operation["account"]]["cur"] += $operation["amount"];
|
||||
if ($date <= $cur_date)
|
||||
$accounts[$operation["account"]]["cur"] += $operation["amount"];
|
||||
}
|
||||
else
|
||||
{
|
||||
$operation["amount"] = -$operation["amount"];
|
||||
}
|
||||
|
||||
if ($operation["amount"] < 0)
|
||||
{
|
||||
|
Reference in New Issue
Block a user