diff options
| author | ivan <ivan> | 2008-06-02 17:58:48 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2008-06-02 17:58:48 +0000 |
| commit | f00a18b9f7d4d7a4cd2e352555640d8d8422d3c1 (patch) | |
| tree | 053877bba61c94e3d78122e38a5d535bc1fe8681 | |
| parent | 4776afec802191dac6dcaffe04c8295b57f01c57 (diff) | |
fix error apply fractional seconds
| -rw-r--r-- | httemplate/misc/process/timeworked.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/timeworked.html b/httemplate/misc/process/timeworked.html index c589d768f..860118e0c 100644 --- a/httemplate/misc/process/timeworked.html +++ b/httemplate/misc/process/timeworked.html @@ -45,7 +45,7 @@ foreach my $transaction ( 'custnum' => $customer, 'transaction_id' => $transaction, 'seconds' => $seconds{$customer}, - 'support' => $seconds{$customer} * $msum, + 'support' => int( $seconds{$customer} * $msum ), }; } |
