正在显示
1 个修改的文件
包含
7 行增加
和
0 行删除
@@ -28,6 +28,9 @@ class PayController extends HomeBaseController | @@ -28,6 +28,9 @@ class PayController extends HomeBaseController | ||
28 | 28 | ||
29 | public function text(){ | 29 | public function text(){ |
30 | dump(cache('a')); | 30 | dump(cache('a')); |
31 | + dump(cache('b')); | ||
32 | + dump(cache('c')); | ||
33 | + dump(cache('d')); | ||
31 | } | 34 | } |
32 | 35 | ||
33 | /** | 36 | /** |
@@ -215,6 +218,10 @@ class PayController extends HomeBaseController | @@ -215,6 +218,10 @@ class PayController extends HomeBaseController | ||
215 | Db::name('my_user') -> where('uid',$teacher['uid']) -> setInc('balance',$money); | 218 | Db::name('my_user') -> where('uid',$teacher['uid']) -> setInc('balance',$money); |
216 | //计算业务员这条订单的收入 | 219 | //计算业务员这条订单的收入 |
217 | $balance_salesman = $order['money'] - $order['money']*$money_ratio['platform_ratio'] - $money; | 220 | $balance_salesman = $order['money'] - $order['money']*$money_ratio['platform_ratio'] - $money; |
221 | + cache('a',$balance_salesman); | ||
222 | + cache('b',$order['money']); | ||
223 | + cache('c',$money_ratio['platform_ratio']); | ||
224 | + cache('d',$money); | ||
218 | //增加业务员的余额 | 225 | //增加业务员的余额 |
219 | Db::name('my_user') -> where('uid',$order['salesman_uid']) -> setInc('balance',$balance_salesman); | 226 | Db::name('my_user') -> where('uid',$order['salesman_uid']) -> setInc('balance',$balance_salesman); |
220 | //添加业务员的收入记录 | 227 | //添加业务员的收入记录 |
-
请 注册 或 登录 后发表评论