N°1161 - Dashlet Group By supports sum, average, min and max.

SVN:trunk[5623]
This commit is contained in:
Eric Espié
2018-04-06 08:53:30 +00:00
parent d641ff3ab7
commit f4b8b4cae3
6 changed files with 286 additions and 34 deletions

View File

@@ -965,7 +965,7 @@ try
foreach($aUpdatedProperties as $sProp)
{
$sDecodedProp = str_replace('attr_', '', $sProp); // Remove the attr_ prefix
$aCurrentValues[$sDecodedProp] = $aPreviousValues[$sProp]; // Set the previous value
$aCurrentValues[$sDecodedProp] = (isset($aPreviousValues[$sProp]) ? $aPreviousValues[$sProp] : ''); // Set the previous value
$aUpdatedDecoded[] = $sDecodedProp;
}