From b5a3a6666fa8de48d410bc5a8e59cfbc6715a11d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BD=AD=E6=A1=83?= <1098598843@qq.com> Date: Tue, 28 Mar 2023 17:55:50 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E7=A7=8D=E6=A4=8D=E5=88=86=E7=B1=BB?= =?UTF-8?q?=E7=AD=89=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/api/controller/Maintainentry.php | 243 ++++++++++++++++++++------- 1 file changed, 184 insertions(+), 59 deletions(-) diff --git a/app/api/controller/Maintainentry.php b/app/api/controller/Maintainentry.php index d210ee9..28bb592 100644 --- a/app/api/controller/Maintainentry.php +++ b/app/api/controller/Maintainentry.php @@ -696,61 +696,64 @@ class Maintainentry extends BaseController $map[] = ['user_id','=',$user_id]; $find=Db::table('fa_szxc_information_planting')->where($map)->find(); // 新增写入种植表 - Db::table('fa_szxc_planting')->where('user_id',$user_id)->delete(); - $mianji = 0; - if($post['crops_msg']){ - $crops_msg_arr = json_decode($post['crops_msg'],1); - foreach ($crops_msg_arr as $k=>$v){ - // 根据名字查询分类 - if($v['name']){ - $type = Db::table('fa_szxc_planting_type')->where('name',$v['name'])->find(); - if($type){ - $planting_data['type_id'] = $type['id']; - }else{ - $type_data['name'] = $v['name']; - $type_data['createtime'] = $time; - $type_id = Db::table('fa_szxc_planting_type')->strict(false)->insertGetId($type_data); - $planting_data['type_id'] = $type_id; - } - $planting_data['user_id'] = $user_id; - $planting_data['num'] = $v['num']??0; - $planting_data['measure'] = $v['mianji']??0; - $planting_data['createtime'] = $time; - Db::table('fa_szxc_planting')->strict(false)->insertGetId($planting_data); - } - // 计算面积 - if($v['mianji']){ - $mianji += $v['mianji']; - } - } - } +// Db::table('fa_szxc_planting')->where('user_id',$user_id)->delete(); +// $mianji = 0; +// if($post['crops_msg']){ +// $crops_msg_arr = json_decode($post['crops_msg'],1); +// foreach ($crops_msg_arr as $k=>$v){ +// // 根据名字查询分类 +// if($v['name']){ +// $type = Db::table('fa_szxc_planting_type')->where('name',$v['name'])->find(); +// if($type){ +// $planting_data['type_id'] = $type['id']; +// }else{ +// $type_data['name'] = $v['name']; +// $type_data['createtime'] = $time; +// $type_id = Db::table('fa_szxc_planting_type')->strict(false)->insertGetId($type_data); +// $planting_data['type_id'] = $type_id; +// } +// $planting_data['user_id'] = $user_id; +// $planting_data['num'] = $v['num']??0; +// $planting_data['measure'] = $v['mianji']??0; +// $planting_data['createtime'] = $time; +// Db::table('fa_szxc_planting')->strict(false)->insertGetId($planting_data); +// } +// // 计算面积 +// if($v['mianji']){ +// $mianji += $v['mianji']; +// } +// } +// } // 新增写入养殖表 - Db::table('fa_szxc_breed')->where('user_id',$user_id)->delete(); -// $mianji = 0; - if(isset($post['breed_msg']) && !empty($post['breed_msg'])){ - $breed_msg_arr = json_decode($post['breed_msg'],1); - foreach ($breed_msg_arr as $k=>$v){ -// 根据名字查询分类 - if($v['name']){ - $type = Db::table('fa_szxc_breed_type')->where('name',$v['name'])->find(); - if($type){ - $breed_data['type_id'] = $type['id']; - }else{ - $type_data['name'] = $v['name']; - $type_data['createtime'] = $time; - $type_id = Db::table('fa_szxc_breed_type')->strict(false)->insertGetId($type_data); - $breed_data['type_id'] = $type_id; - } - $breed_data['user_id'] = $user_id; - $breed_data['num'] = $v['num']??0; - $breed_data['measure'] = $v['mianji']??0; - $breed_data['createtime'] = $time; - Db::table('fa_szxc_breed')->strict(false)->insertGetId($breed_data); - } - } - } +// Db::table('fa_szxc_breed')->where('user_id',$user_id)->delete(); +//// $mianji = 0; +// if(isset($post['breed_msg']) && !empty($post['breed_msg'])){ +// $breed_msg_arr = json_decode($post['breed_msg'],1); +// foreach ($breed_msg_arr as $k=>$v){ +//// 根据名字查询分类 +// if($v['name']){ +// $type = Db::table('fa_szxc_breed_type')->where('name',$v['name'])->find(); +// if($type){ +// $breed_data['type_id'] = $type['id']; +// }else{ +// $type_data['name'] = $v['name']; +// $type_data['createtime'] = $time; +// $type_id = Db::table('fa_szxc_breed_type')->strict(false)->insertGetId($type_data); +// $breed_data['type_id'] = $type_id; +// } +// $breed_data['user_id'] = $user_id; +// $breed_data['num'] = $v['num']??0; +// $breed_data['measure'] = $v['mianji']??0; +// $breed_data['createtime'] = $time; +// Db::table('fa_szxc_breed')->strict(false)->insertGetId($breed_data); +// } +// } +// } $waste_land_area = 0; + $www5['user_id'] = $user_id; + $www5['type_id'] = 1; + $mianji = Db::table('cms_planting_information')->where($www5)->sum('measure'); if (!empty($post['land_area']) && !empty($post['breed_area'])) { @@ -760,13 +763,12 @@ class Maintainentry extends BaseController } } - if ($find) { // 修改人员信息 - $data['tools_msg'] = $post['tools_msg']; - $data['breed_msg'] = $post['breed_msg']??''; +// $data['tools_msg'] = $post['tools_msg']; +// $data['breed_msg'] = $post['breed_msg']??''; $data['breed_area'] = $post['breed_area']??''; - $data['crops_msg'] = $post['crops_msg']; +// $data['crops_msg'] = $post['crops_msg']; $data['land_area'] = $post['land_area']; $data['nature_of_land'] = $post['nature_of_land_id']; $data['is_wz'] = $post['is_wz']; @@ -781,10 +783,10 @@ class Maintainentry extends BaseController } }else{ // 修改人员信息 - $data['tools_msg'] = $post['tools_msg']; - $data['breed_msg'] = $post['breed_msg']??''; +// $data['tools_msg'] = $post['tools_msg']; +// $data['breed_msg'] = $post['breed_msg']??''; $data['breed_area'] = $post['breed_area']??''; - $data['crops_msg'] = $post['crops_msg']; +// $data['crops_msg'] = $post['crops_msg']; $data['land_area'] = $post['land_area']; $data['nature_of_land'] = $post['nature_of_land_id']; $data['is_wz'] = $post['is_wz']; @@ -1905,5 +1907,128 @@ class Maintainentry extends BaseController } } + /** + * 获取分类(农作物、农机农具、养殖) + * + */ + public function get_category() + { +// 分类标识 + $type = get_params('type_id'); + if (empty($type)) { + $this->apiError('缺少参数'); + } else { + + $where[] = ['pid','<>',0]; + $where[] = ['pid','=',$type]; + $where[] = ['status','=','1']; + $result = Db::table('cms_planting_type')->where($where)->field('id,name')->order('id desc')->select()->toArray(); + if ($result) { + $this->apiSuccess('获取成功', $result); + } else { + $this->apiError('暂无数据'); + } + } + } + + /** + * 新增分类(农作物、农机农具、养殖) + * + */ + public function add_category() + { +// 分类标识 + $type = get_params('type_id'); + $name = get_params('name'); + if (empty($type) || empty($name)) { + $this->apiError('缺少参数'); + } else { + + $data['name'] = $name; + $data['pid'] = $type; + $data['createtime'] = time(); + $result = Db::table('cms_planting_type')->strict(false)->insert($data); + if ($result) { + $this->apiSuccess('添加成功', $result); + } else { + $this->apiError('添加失败'); + } + } + } + + + /** + * 添加(农作物、农机农具、养殖) + * + */ + public function add_information() + { +// 分类标识 + $type = get_params('type_id'); + if (empty($type)) { + $this->apiError('缺少参数'); + } else { + $data = get_params(); + $data['user_id'] = $this->request->uid; + $data['createtime'] = time(); + $result = Db::table('cms_planting_information')->strict(false)->insert($data); + if ($result) { + $this->apiSuccess('添加成功', $result); + } else { + $this->apiError('添加失败'); + } + } + } + + /** + * 获取列表(农作物、农机农具、养殖) + * + */ + public function get_information() + { +// 分类标识 + $type = get_params('type_id'); //1农作物,2农机农具,3养殖物 + if (empty($type)) { + $this->apiError('缺少参数'); + } else { + $where['user_id'] = $this->request->uid; + $where['type_id'] = $type; + $page = get_params('page')??1; + $limit = get_params('limit')??10; + $order = get_params('order')??'id'; + + $result = Db::table('cms_planting_information')->where($where)->page($page,$limit)->order($order. ' desc')->select()->toArray(); + if ($result) { + $this->apiSuccess('获取成功', $result); + } else { + $this->apiError('获取失败'); + } + } + } + + /** + * 删除(农作物、农机农具、养殖) + * + */ + public function del_information() + { +// 分类标识 + $id = get_params('id'); + if (empty($id)) { + $this->apiError('缺少参数'); + } else { + $where['user_id'] = $this->request->uid; + $where['id'] = $id; + $result = Db::table('cms_planting_information')->where($where)->delete(); + if ($result) { + $this->apiSuccess('删除成功', $result); + } else { + $this->apiError('删除失败'); + } + } + } + + + }