|
|
@@ -49,19 +49,19 @@ class StatKhCgController extends BaseController
|
|
|
if (isset($arr[$customId]['refundNum'])) {
|
|
|
$arr[$customId]['refundNum'] = bcadd($arr[$customId]['refundNum'], $refundNum, 2);
|
|
|
} else {
|
|
|
- $arr[$customId]['refundNum'] = $num;
|
|
|
+ $arr[$customId]['refundNum'] = $refundNum;
|
|
|
}
|
|
|
|
|
|
if (isset($arr[$customId]['amount'])) {
|
|
|
$arr[$customId]['amount'] = bcadd($arr[$customId]['amount'], $amount, 2);
|
|
|
} else {
|
|
|
- $arr[$customId]['amount'] = $num;
|
|
|
+ $arr[$customId]['amount'] = $amount;
|
|
|
}
|
|
|
|
|
|
if (isset($arr[$customId]['refundAmount'])) {
|
|
|
$arr[$customId]['refundAmount'] = bcadd($arr[$customId]['refundAmount'], $refundAmount, 2);
|
|
|
} else {
|
|
|
- $arr[$customId]['refundAmount'] = $num;
|
|
|
+ $arr[$customId]['refundAmount'] = $refundAmount;
|
|
|
}
|
|
|
|
|
|
}
|