|
@@ -84,9 +84,9 @@ class Log
|
|
|
|
|
|
$type = Dever::db('account/config_type')->one($info['type_id']);
|
|
|
if ($type['type'] == 2) {
|
|
|
- $info['ycash'] = -1*$info['ycash'];
|
|
|
- $info['cash'] = -1*$info['cash'];
|
|
|
- $info['fee'] = -1*$info['fee'];
|
|
|
+ $info['ycash'] = Dever::number(-1*$info['ycash']);
|
|
|
+ $info['cash'] = Dever::number(-1*$info['cash']);
|
|
|
+ $info['fee'] = Dever::number(-1*$info['fee']);
|
|
|
}
|
|
|
return $info;
|
|
|
}
|