|
|
@@ -66,7 +66,8 @@ class CashController extends BaseController
|
|
|
$getCashAmount = $cashAmount;
|
|
|
//零售店提现需要扣除千分之六的手续费
|
|
|
if ($ptStyle == dict::getDict('ptStyle', 'hd')) {
|
|
|
- $getCashAmount = bcmul($cashAmount, 0.006, 2);
|
|
|
+ $tip = bcmul($cashAmount, 0.006, 2);
|
|
|
+ $getCashAmount = bcsub($cashAmount, $tip, 2);
|
|
|
}
|
|
|
|
|
|
if ($status != CashClass::STATUS_CHECK_YES) {
|