MainProject.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\controller;
  15. use library\Controller;
  16. use library\tools\Data;
  17. use think\Db;
  18. use think\Url;
  19. use think\facade\Filesystem;
  20. /**
  21. * 主项目管理
  22. * Class User
  23. * @package app\admin\controller
  24. */
  25. class MainProject extends Controller
  26. {
  27. /**
  28. * 指定当前数据表
  29. * @var string
  30. */
  31. public $table = 'system_main_project';
  32. public $table2 = 'system_child_project';
  33. /**
  34. * 主项目管理
  35. * @auth true
  36. * @menu true
  37. * @throws \think\Exception
  38. * @throws \think\db\exception\DataNotFoundException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @throws \think\exception\DbException
  41. * @throws \think\exception\PDOException
  42. */
  43. public function index()
  44. {
  45. $this->title = '主项目管理';
  46. $query = $this->_query($this->table)
  47. ->like('project_name,basis_for_listing,project_scope,grade,building_composition,case_description,function_parameters,defense,investment_subject,sources_funding,contract_mode,management_mode,owner,total_package,awards,other_instructions')
  48. ->equal('cost_categories,prepare_date,category_id,construction_site_province,construction_site_province,construction_site_city,construction_site_area')
  49. ->fieldBetween('total_land_area','total_land_area_start,total_land_area_end')
  50. ->fieldBetween('gross_floor_area','gross_floor_area_start,gross_floor_area_end')
  51. ->fieldBetween('floor_area','floor_area_start,floor_area_end')
  52. ->fieldBetween('underground_area','underground_area_start,underground_area_end')
  53. ->fieldBetween('building_density','building_density_start,building_density_end')
  54. ->fieldBetween('green_area','green_area_start,green_area_end')
  55. ->fieldBetween('road_area','road_area_start,road_area_end')
  56. ->fieldBetween('road_length','road_length_start,road_length_end')
  57. ->fieldBetween('project_time','project_time_start,project_time_end');
  58. $query->dateBetween('starting_time,ending_time')
  59. ->where(['is_deleted' => '0'])
  60. ->order('id desc')
  61. ->page();
  62. }
  63. /**
  64. * 列表数据处理
  65. * @param array $data
  66. */
  67. protected function _index_page_filter(&$data)
  68. {
  69. foreach ($data as &$vo) {
  70. $vo['category_name'] = Db::name('system_goods_cate')->where('id',$vo['category_id'])->value('title');
  71. }
  72. $menus = Db::name('system_goods_cate')->where(['status' => '1'])->where('is_deleted', 0)->order('id asc')->column('id,pid,title');
  73. $this->menus = Data::arr2table(array_merge([['id' => '', 'pid' => '-1', 'title' => '--全部--']],$menus ));
  74. //省
  75. $province = Db::name('system_area')->where('level',1)->select();
  76. $this->province = $province;
  77. if (isset($_GET['construction_site_province']) && $_GET['construction_site_province']!=''){
  78. //市
  79. $pid = Db::name('system_area')->where('name',$_GET['construction_site_province'])->value('id');
  80. $city = Db::name('system_area')->where('level',2)->where('pid',$pid)->select();
  81. $this->city = $city;
  82. }else{
  83. $this->city = [];
  84. }
  85. if (isset($_GET['construction_site_city']) && $_GET['construction_site_city']!=''){
  86. //区
  87. $pid2 = Db::name('system_area')->where('name',$_GET['construction_site_city'])->value('id');
  88. $area = Db::name('system_area')->where('level',3)->where('pid',$pid2)->select();
  89. $this->area = $area;
  90. }else{
  91. $this->area = [];
  92. }
  93. }
  94. /**
  95. * 子项目列表
  96. * @auth true
  97. * @menu true
  98. * @throws \think\Exception
  99. * @throws \think\db\exception\DataNotFoundException
  100. * @throws \think\db\exception\ModelNotFoundException
  101. * @throws \think\exception\DbException
  102. * @throws \think\exception\PDOException
  103. */
  104. public function index2()
  105. {
  106. $id = $this->app->request->get('id');
  107. $this->assign('id',$id);
  108. $this->title = '子项目列表';
  109. $query = $this->_query($this->table2)->where('main_project_id',$id)
  110. ->like('project_name,design_life,decorate_standard,other_parameters')
  111. ->equal('category_id,structure_type,building_fortification_intensity,seismic_grade,base_type')
  112. ->fieldBetween('construction_layer','construction_layer_start,construction_layer_end')
  113. ->fieldBetween('upper_number','upper_number_start,upper_number_end')
  114. ->fieldBetween('underground','underground_start,underground_end')
  115. ->fieldBetween('underground_layer','underground_layer_start,underground_layer_end')
  116. ->fieldBetween('first_layer_high','first_layer_high_start,first_layer_high_end')
  117. ->fieldBetween('standard_height','standard_height_start,standard_height_end')
  118. ->fieldBetween('construction_area','construction_area_start,construction_area_end')
  119. ->fieldBetween('ground_floor_area','ground_floor_area_start,ground_floor_area_end')
  120. ->fieldBetween('underground_floor_area','underground_floor_area_start,underground_floor_area_end')
  121. ->fieldBetween('building_floor_area','building_floor_area_start,building_floor_area_end')
  122. ->fieldBetween('steel_benefit_area','steel_benefit_area_start,steel_benefit_area_end')
  123. ->fieldBetween('wood_area','wood_area_start,wood_area_end')
  124. ->fieldBetween('available_area','available_area_start,available_area_end')
  125. ->fieldBetween('number','number_start,number_end')
  126. ->fieldBetween('basement_floor_area','basement_floor_area_start,basement_floor_area_end')
  127. ->fieldBetween('building_height','building_height_start,building_height_end');
  128. $query->dateBetween('login_at,create_at')
  129. ->where(['is_deleted' => '0'])
  130. ->order('id desc')->page();
  131. }
  132. /**
  133. * 列表数据处理
  134. * @param array $data
  135. */
  136. protected function _index2_page_filter(&$data)
  137. {
  138. foreach ($data as &$vo) {
  139. $vo['main_project_name'] = Db::name('system_main_project')->where('id',$vo['main_project_id'])->value('project_name');
  140. $vo['category_name'] = Db::name('system_goods_cate')->where('id',$vo['category_id'])->value('title');
  141. }
  142. $menus = Db::name('system_goods_cate')->where(['status' => '1'])->where('is_deleted', 0)->order('id asc')->column('id,pid,title');
  143. $this->menus = Data::arr2table(array_merge([['id' => '', 'pid' => '-1', 'title' => '--全部--']],$menus ));
  144. }
  145. /**
  146. * 项目详情
  147. * @auth true
  148. * @menu true
  149. * @throws \think\Exception
  150. * @throws \think\db\exception\DataNotFoundException
  151. * @throws \think\db\exception\ModelNotFoundException
  152. * @throws \think\exception\DbException
  153. * @throws \think\exception\PDOException
  154. */
  155. public function projectinfo()
  156. {
  157. $this->_form($this->table, 'info');
  158. }
  159. /**
  160. * 创建主项目
  161. * @auth true
  162. * @throws \think\Exception
  163. * @throws \think\db\exception\DataNotFoundException
  164. * @throws \think\db\exception\ModelNotFoundException
  165. * @throws \think\exception\DbException
  166. * @throws \think\exception\PDOException
  167. */
  168. public function add()
  169. {
  170. $this->title = '创建主项目';
  171. $this->_form($this->table, 'form');
  172. }
  173. /**
  174. * 编辑主项目
  175. * @auth true
  176. * @throws \think\Exception
  177. * @throws \think\db\exception\DataNotFoundException
  178. * @throws \think\db\exception\ModelNotFoundException
  179. * @throws \think\exception\DbException
  180. * @throws \think\exception\PDOException
  181. */
  182. public function edit()
  183. {
  184. $this->title = '编辑主项目';
  185. $this->_form($this->table, 'form');
  186. }
  187. /**
  188. * 表单数据处理
  189. * @param array $data
  190. * @throws \think\db\exception\DataNotFoundException
  191. * @throws \think\db\exception\ModelNotFoundException
  192. * @throws \think\exception\DbException
  193. */
  194. public function _form_filter(&$data)
  195. {
  196. if ($this->request->isPost()) {
  197. } else {
  198. $data['category_name'] = Db::name('system_goods_cate')->where('id',$data['category_id'])->value('title');
  199. if (!empty($data)){
  200. //省
  201. $province = Db::name('system_area')->where('level',1)->select();
  202. $this->province = $province;
  203. //市
  204. $pid = Db::name('system_area')->where('name',$data['construction_site_province'])->value('id');
  205. $city = Db::name('system_area')->where('level',2)->where('pid',$pid)->select();
  206. $this->city = $city;
  207. //区
  208. $pid2 = Db::name('system_area')->where('name',$data['construction_site_city'])->value('id');
  209. $area = Db::name('system_area')->where('level',3)->where('pid',$pid2)->select();
  210. $this->area = $area;
  211. }else{
  212. //省
  213. $province = Db::name('system_area')->where('level',1)->select();
  214. $this->province = $province;
  215. }
  216. $menus = Db::name('system_goods_cate')->where(['status' => '1'])->where('is_deleted', 0)->order('id asc')->column('id,pid,title');
  217. $this->menus = Data::arr2table($menus);
  218. }
  219. }
  220. /**
  221. * 处理成功回调
  222. */
  223. // public function _form_result($result,$data){
  224. // if ($result) {
  225. // $this->success('成功',url('@main_project/index'));
  226. // }
  227. // }
  228. /**
  229. * 删除主项目
  230. * @auth true
  231. * @throws \think\Exception
  232. * @throws \think\exception\PDOException
  233. */
  234. public function remove()
  235. {
  236. $this->_save($this->table, ['is_deleted' => '1']);
  237. //$this->_delete($this->table);
  238. }
  239. /**
  240. * 获取市
  241. */
  242. public function get_city(){
  243. $name = $this->app->request->get('id');
  244. $id = Db::name('system_area')->where('name',$name)->where('level',1)->value('id');
  245. $city_list = Db::name('system_area')->where('pid',$id)->where('level',2)->select();
  246. $this->success('成功',$city_list);
  247. }
  248. /**
  249. * 获取区
  250. */
  251. public function get_area(){
  252. $name = $this->app->request->get('id');
  253. $id = Db::name('system_area')->where('name',$name)->where('level',2)->value('id');
  254. $area_list = Db::name('system_area')->where('pid',$id)->where('level',3)->select();
  255. $this->success('成功',$area_list);
  256. }
  257. /**
  258. * 导入主项目
  259. * @auth true
  260. * @throws \think\Exception
  261. * @throws \think\exception\PDOException
  262. */
  263. public function import()
  264. {
  265. $file = request()->file('file');
  266. try {
  267. $savename = \think\facade\Filesystem::disk('public')->putFile( 'excel', $file);
  268. $import_path = root_path() . 'public/storage/' . $savename;
  269. $objReader =\PHPExcel_IOFactory::createReader('Excel2007');
  270. $objExcel = $objReader->load($import_path);
  271. $list = $objExcel->getActiveSheet()->toArray();
  272. } catch (\think\exception\ValidateException $e) {
  273. $this->error($e->getMessage());
  274. }
  275. }
  276. }