This commit is contained in:
Laurent Destailleur
2025-11-19 11:16:24 +01:00
parent 37dca42aee
commit 75d1f27730
3 changed files with 4 additions and 3 deletions

View File

@@ -160,7 +160,7 @@ class FormFile
* @param int $sectionid If upload must be done inside a particular ECM section (is sectionid defined, sectiondir must not be)
* @param int $perm Value of permission to allow upload
* @param int $size Length of input file area. Deprecated.
* @param ?CommonObject $object Object to use (when attachment is done on an element)
* @param ?CommonObject|BlockedLog $object Object to use (when attachment is done on an element)
* @param string $options Add an option column
* @param int<0,1> $useajax Use fileupload ajax (0=never, 1=if enabled, 2=always whatever is option).
* Deprecated 2 should never be used and if 1 is used, option should not be enabled.

View File

@@ -8488,7 +8488,7 @@ function get_default_tva(Societe $thirdparty_seller, Societe $thirdparty_buyer,
// Allow an external module to bypass the calculation of prices
$parameters = array('vatvalue' => $vatvalue, 'vatrule' => $vatrule);
$tmpobject = null; $tmpaction = '';
// @phan-ignore-next-line PhanPluginConstantVariableNull
// @phan-ignore-next-line
$reshook = $hookmanager->executeHooks('get_default_tva', $parameters, $tmpobject, $tmpaction);
if ($reshook > 0 && !empty($hookmanager->resArray['vatvalue'])) {
$vatvalue = $hookmanager->resArray['vatvalue'];

View File

@@ -458,7 +458,8 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocalt
// Allow an external module to bypass the calculation of prices
$parameters = array('result' => $result);
$tmpobject = null; $tmpaction = null;
$tmpobject = null; $tmpaction = '';
// @phan-ignore-next-line
$reshook = $hookmanager->executeHooks('calcul_price_total', $parameters, $tmpobject, $tmpaction);
if ($reshook > 0 && !empty($hookmanager->resArray['result'])) {
$result = $hookmanager->resArray['result'];