Skip to content

Commit

Permalink
Fixed o2view_fetch() function to evaluate formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
tvannini committed Dec 13, 2018
1 parent 7dc9c25 commit bbfeb8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/jxfnx.inc
Original file line number Diff line number Diff line change
Expand Up @@ -6229,7 +6229,9 @@ function o2view_fetch($view_name) {
throw new o2_exception($err[2], o2error_DBDATAQUERY);
return false;
}
return $row;
// ___________________ Set row as current record in view and evaluate formulas ___
$view_obj->imposta_corrente($row);
return $view_obj->corrente;
}
// __________________________________________________ First call: create statement ___
elseif ($view_obj) {
Expand Down

0 comments on commit bbfeb8e

Please sign in to comment.