正在显示
1 个修改的文件
包含
4 行增加
和
1 行删除
@@ -176,8 +176,11 @@ class House extends Backend | @@ -176,8 +176,11 @@ class House extends Backend | ||
176 | } | 176 | } |
177 | $result = $row->allowField(true)->save($params); | 177 | $result = $row->allowField(true)->save($params); |
178 | $data = Db::name('house')->where('id',$ids)->find(); | 178 | $data = Db::name('house')->where('id',$ids)->find(); |
179 | + $house_admin = Db::name('house_admin')->where('house_id',$ids)->find(); | ||
179 | Db::name('house_admin')->where('id',$data['admin_user_id'])->update(['house_id'=>$ids]); | 180 | Db::name('house_admin')->where('id',$data['admin_user_id'])->update(['house_id'=>$ids]); |
180 | - Db::name('house_admin')->where('user_id',$row->user_id)->where('house_id',$ids)->update(['user_id'=>$data['admin_user_id']]); | 181 | + if($house_admin) { |
182 | + Db::name('house_admin')->where('id',$house_admin['id'])->update(['house_id'=>'']); | ||
183 | + } | ||
181 | 184 | ||
182 | Db::commit(); | 185 | Db::commit(); |
183 | } catch (ValidateException $e) { | 186 | } catch (ValidateException $e) { |
-
请 注册 或 登录 后发表评论