You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Nel file Module/ModelObserver.php viene generato un errore quando si apre la pagina delle fatture:
$invoicesid = $paramsarray["invoice_id"];
per indice 'invoice_id' non definito.
Per ovviare basta effettuare l'assegnamento solo se il parametro è presente: if (isset($paramsarray["invoice_id"])) { $invoicesid = $paramsarray["invoice_id"]; } else { $invoicesid = NULL; }
The text was updated successfully, but these errors were encountered:
Nel file Module/ModelObserver.php viene generato un errore quando si apre la pagina delle fatture:
$invoicesid = $paramsarray["invoice_id"];
per indice 'invoice_id' non definito.
Per ovviare basta effettuare l'assegnamento solo se il parametro è presente:
if (isset($paramsarray["invoice_id"])) { $invoicesid = $paramsarray["invoice_id"]; } else { $invoicesid = NULL; }
The text was updated successfully, but these errors were encountered: