...
|
...
|
@@ -169,6 +169,10 @@ class PayController extends HomeBaseController |
|
|
//如果是业务员订单
|
|
|
//查询平台商品老师和业务员所占的佣金比例
|
|
|
$money_ratio = Db::name('money_ratio') -> where('id',1) -> find();
|
|
|
//判断这条订单是否为快递配送
|
|
|
if($order['is_courier'] == 2){
|
|
|
$order['money'] = $order['money']-$money_ratio['courier'];
|
|
|
}
|
|
|
//查询这条订单下的所有商品
|
|
|
$data_indent_goods = Db::name('indent_goods') -> where('indent_id',$order['id']) -> select();
|
|
|
//业务员商品学生购买
|
...
|
...
|
|