mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
allow to prefix alternative name with a minus to substract instead of adding its value
This commit is contained in:
parent
86df1da45b
commit
44d5801015
@ -106,13 +106,21 @@ class infolog_widget
|
||||
|
||||
switch($type)
|
||||
{
|
||||
case '': // Sum of the alternatives
|
||||
case '': // Sum of the alternatives, field-name can be prefixed with a minus to substract it's value
|
||||
$cell['type'] = 'float';
|
||||
$cell['size'] = ',,,%0.2lf';
|
||||
$value = 0.0;
|
||||
foreach(explode(':',$alternatives) as $name)
|
||||
{
|
||||
$value += str_replace(array(' ',','),array('','.'),$this->data[$name]);
|
||||
if ($name[0] === '-')
|
||||
{
|
||||
$val = '-'.$this->data[substr($name, 1)];
|
||||
}
|
||||
else
|
||||
{
|
||||
$val = $this->data[$name];
|
||||
}
|
||||
$value += str_replace(array(' ',','), array('','.'), $val);
|
||||
}
|
||||
$alternatives = '';
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user