正在显示
4 个修改的文件
包含
18 行增加
和
6 行删除
@@ -207,6 +207,10 @@ class GoodsdetailsController extends WeChatBaseController{ | @@ -207,6 +207,10 @@ class GoodsdetailsController extends WeChatBaseController{ | ||
207 | $ret['type'] = 20; | 207 | $ret['type'] = 20; |
208 | return json_encode($ret); | 208 | return json_encode($ret); |
209 | } | 209 | } |
210 | + if(in_array(intval($my_user['status']),[1,5,6])){ | ||
211 | + $ret['type'] = 21; | ||
212 | + return json_encode($ret); | ||
213 | + } | ||
210 | $goods_id = $_POST['id']; | 214 | $goods_id = $_POST['id']; |
211 | $data[] = Db::name('goods') -> where('id',$goods_id) -> find(); | 215 | $data[] = Db::name('goods') -> where('id',$goods_id) -> find(); |
212 | $data[0]['book_num'] = 1; | 216 | $data[0]['book_num'] = 1; |
@@ -201,10 +201,12 @@ class ShopcartController extends WeChatBaseController{ | @@ -201,10 +201,12 @@ class ShopcartController extends WeChatBaseController{ | ||
201 | 201 | ||
202 | $uid = cmf_get_current_user_id(); | 202 | $uid = cmf_get_current_user_id(); |
203 | $my_user = Db::name('my_user') -> where('uid',$uid) -> find(); | 203 | $my_user = Db::name('my_user') -> where('uid',$uid) -> find(); |
204 | - if($my_user['status'] == 2){ | ||
205 | - return false; | 204 | + if(in_array(intval($my_user['status']),[1,5,6])){ |
205 | + return 2; | ||
206 | + }else if($my_user['status'] == 2){ | ||
207 | + return 0; | ||
206 | }else{ | 208 | }else{ |
207 | - return true; | 209 | + return 1; |
208 | } | 210 | } |
209 | 211 | ||
210 | } | 212 | } |
@@ -238,7 +238,11 @@ | @@ -238,7 +238,11 @@ | ||
238 | obj = JSON.parse(data); | 238 | obj = JSON.parse(data); |
239 | if(obj.type == 20){ | 239 | if(obj.type == 20){ |
240 | alert('业务员不能购买'); | 240 | alert('业务员不能购买'); |
241 | - }if(obj.type == 3){ | 241 | + } |
242 | + if(obj.type == 21){ | ||
243 | + alert('业务员申请中'); | ||
244 | + } | ||
245 | + if(obj.type == 3){ | ||
242 | alert('业务员商品和平台商品不能同时购买!'); | 246 | alert('业务员商品和平台商品不能同时购买!'); |
243 | }else if(obj.type == 1){ | 247 | }else if(obj.type == 1){ |
244 | window.location.href = "{:url('Orderpage/order_page')}?indet_id="+obj.indet_id; | 248 | window.location.href = "{:url('Orderpage/order_page')}?indet_id="+obj.indet_id; |
@@ -144,7 +144,7 @@ | @@ -144,7 +144,7 @@ | ||
144 | alert('请选择商品'); | 144 | alert('请选择商品'); |
145 | }else{ | 145 | }else{ |
146 | $.post("{:url('Shopcart/is_to_pay')}",{},function(data){ | 146 | $.post("{:url('Shopcart/is_to_pay')}",{},function(data){ |
147 | - if(data){ | 147 | + if(data == 1){ |
148 | goods_id = goods_id.join(','); | 148 | goods_id = goods_id.join(','); |
149 | myprice = $('#myprice').text(); | 149 | myprice = $('#myprice').text(); |
150 | $.post("{:url('Shopcart/shop_cart_pay')}",{id:goods_id,myprice:myprice},function(data){ | 150 | $.post("{:url('Shopcart/shop_cart_pay')}",{id:goods_id,myprice:myprice},function(data){ |
@@ -158,8 +158,10 @@ | @@ -158,8 +158,10 @@ | ||
158 | } | 158 | } |
159 | 159 | ||
160 | }); | 160 | }); |
161 | - }else{ | 161 | + }else if(data == 0){ |
162 | alert('业务员不能购买书籍'); | 162 | alert('业务员不能购买书籍'); |
163 | + }else{ | ||
164 | + alert('业务员审核中,不能购买书籍') | ||
163 | } | 165 | } |
164 | }); | 166 | }); |
165 | 167 |
-
请 注册 或 登录 后发表评论