作者 Cool
1 个管道 的构建 通过 耗费 1 秒

金额调整

... ... @@ -844,8 +844,8 @@ class Goods extends Api
'body' => $this->model['order_no'],
'detail' => 'OrderID:'.$this->model['id'],
'out_trade_no' => $this->model['order_no'],
//'total_fee' => $this->model['pay_price'] * 100, // 单位:分
'total_fee' => 1, // 单位:分
'total_fee' => $this->model['pay_price'] * 100, // 单位:分
// 'total_fee' => 1, // 单位:分
'openid' => $third['openid'],
];
$order = new WXPAY_ORDER($attributes);
... ...
... ... @@ -277,7 +277,7 @@ class Store extends Api
'trade_type' => 'JSAPI', // 请对应换成你的支付方式对应的值类型
'body' => '发布招募合伙人',
'out_trade_no' => $order_sn,
'total_fee' => 1, // $param['money'] * 100
'total_fee' => $param['money'] * 100, // $param['money'] * 100
'spbill_create_ip' => request()->ip(), // 可选,如不传该参数,SDK 将会自动获取相应 IP 地址
'notify_url' => url('index/ajax/store_notify',[],true,true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
'openid' => Db::name('third')->where('user_id',$this->auth->id)->value('openid'),
... ... @@ -1068,7 +1068,7 @@ class Store extends Api
'trade_type' => 'JSAPI', // 请对应换成你的支付方式对应的值类型
'body' => '发布招募合伙人',
'out_trade_no' => $order_sn,
'total_fee' => 1, // $param['money'] * 100
'total_fee' => $param['money'] * 100, // $param['money'] * 100
'spbill_create_ip' => request()->ip(), // 可选,如不传该参数,SDK 将会自动获取相应 IP 地址
'notify_url' => url('index/ajax/store_order_notify', [], true, true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
'openid' => Db::name('third')->where('user_id', $this->auth->id)->value('openid'),
... ... @@ -1474,7 +1474,7 @@ class Store extends Api
'trade_type' => 'JSAPI', // 请对应换成你的支付方式对应的值类型
'body' => '板币充值',
'out_trade_no' => $order_sn,
'total_fee' => 1, // $param['money'] * 100
'total_fee' => $deposit['money'] * 100, // $param['money'] * 100
'spbill_create_ip' => request()->ip(), // 可选,如不传该参数,SDK 将会自动获取相应 IP 地址
'notify_url' => url('index/ajax/notify',[],true,true), // 支付结果通知网址,如果不设置则会使用配置里的默认地址
'openid' => Db::name('third')->where('user_id',$this->auth->id)->value('openid'),
... ...