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

修改会员订单接口

@@ -136,7 +136,9 @@ class Iphoneorder extends Backend @@ -136,7 +136,9 @@ class Iphoneorder extends Backend
136 if ($this->request->isPost()) { 136 if ($this->request->isPost()) {
137 $params = $this->request->post("row/a"); 137 $params = $this->request->post("row/a");
138 $user = Db::name('user')->where('id',$params['user_id'])->find(); 138 $user = Db::name('user')->where('id',$params['user_id'])->find();
139 - //已经支付 139 + //先查询一遍数据是否已经是支付状态
  140 + $data = Db::name('iphoneorder')->where('id',$ids)->find();
  141 + if($data['status'] == 1){
140 if($params['status'] == 2){ 142 if($params['status'] == 2){
141 //判断金额 143 //判断金额
142 if($params['money'] >= 8000){ 144 if($params['money'] >= 8000){
@@ -147,6 +149,9 @@ class Iphoneorder extends Backend @@ -147,6 +149,9 @@ class Iphoneorder extends Backend
147 } 149 }
148 Db::name('user')->where('id',$user['id'])->update($update); 150 Db::name('user')->where('id',$user['id'])->update($update);
149 } 151 }
  152 + }
  153 +
  154 +
150 if ($params) { 155 if ($params) {
151 $params = $this->preExcludeFields($params); 156 $params = $this->preExcludeFields($params);
152 $result = false; 157 $result = false;