CostBillAuto.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418
  1. <?php
  2. namespace app\admin\controller\cost;
  3. use app\admin\model\cost\CostEdit;
  4. use app\admin\model\Cost\CostItem;
  5. use app\admin\model\house\HuList;
  6. use app\admin\model\village\VillageHu;
  7. use app\admin\model\cost\CostBill;
  8. use app\common\controller\Backend;
  9. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  10. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  11. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  12. use think\Db;
  13. use think\exception\PDOException;
  14. use think\exception\ValidateException;
  15. /**
  16. * 物业账单
  17. *
  18. * @icon fa fa-circle-o
  19. */
  20. class CostBillAuto extends Backend
  21. {
  22. /**
  23. * CostBillAuto模型对象
  24. * @var \app\admin\model\cost\CostBillAuto
  25. */
  26. protected $model = null;
  27. public function _initialize()
  28. {
  29. parent::_initialize();
  30. $this->model = new \app\admin\model\cost\CostBillAuto;
  31. }
  32. /**
  33. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  34. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  35. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  36. */
  37. /**
  38. * 查看
  39. */
  40. public function index()
  41. {
  42. // printer_open
  43. //设置过滤方法
  44. $this->request->filter(['strip_tags']);
  45. if ($this->request->isAjax()) {
  46. //如果发送的来源是Selectpage,则转发到Selectpage
  47. if ($this->request->request('keyField')) {
  48. return $this->selectpage();
  49. }
  50. $get=$this->request->get('filter');
  51. $where_and=['is_delete'=>'0'];
  52. $where_and['item_id']=['in',['1','2']];
  53. if (!empty($this->auth->village)){
  54. $where_and['village_id']=['in',$this->auth->village];
  55. // dump($where_and);
  56. }
  57. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  58. if (!empty($get)){
  59. // echo $get;exit;
  60. $get=json_decode($get,true);
  61. if (isset($get['village_id'])){
  62. $where_and['village_id']=['eq',$get['village_id']];
  63. }
  64. if (isset($get['hu.usesr_name'])){
  65. $get_huid=\app\admin\model\village\VillageHu::where('usesr_name','like','%'.$get['hu.usesr_name'].'%')->field('id')->select();
  66. $hu_id=array_column($get_huid,'id');
  67. $where_and['hu_id']=['in',$hu_id];
  68. }
  69. $total = $this->model
  70. ->where($where_and)
  71. ->order($sort, $order)
  72. ->count();
  73. $list = $this->model
  74. ->where($where_and)
  75. ->with(['village','dong','danyuan','hu'])
  76. ->order($sort, $order)
  77. ->limit($offset, $limit)
  78. ->select();
  79. }else{
  80. $total = $this->model
  81. ->where($where)
  82. ->where($where_and)
  83. ->order($sort, $order)
  84. ->count();
  85. $list = $this->model
  86. ->where($where)
  87. ->where($where_and)
  88. ->with(['village','dong','danyuan','hu'])
  89. ->order($sort, $order)
  90. ->limit($offset, $limit)
  91. ->select();
  92. }
  93. $list = collection($list)->toArray();
  94. $result = array("total" => $total, "rows" => $list);
  95. return json($result);
  96. }
  97. return $this->view->fetch();
  98. }
  99. /**
  100. * 编辑
  101. */
  102. public function edit($ids = null)
  103. {
  104. $row = $this->model->get($ids,['village','dong','danyuan','hu','item']);
  105. if (!$row) {
  106. $this->error(__('No Results were found'));
  107. }
  108. $adminIds = $this->getDataLimitAdminIds();
  109. if (is_array($adminIds)) {
  110. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  111. $this->error(__('You have no permission'));
  112. }
  113. }
  114. if ($this->request->isPost()) {
  115. $params = $this->request->post("row/a");
  116. if ($params) {
  117. $params = $this->preExcludeFields($params);
  118. $result = false;
  119. Db::startTrans();
  120. try {
  121. //是否采用模型验证
  122. if ($this->modelValidate) {
  123. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  124. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  125. $row->validateFailException(true)->validate($validate);
  126. }
  127. if ($row['pay_status']=='0'){//未付款的情况
  128. if ($params['true_price'] !=$row['true_price']){//修改价格
  129. if ($params['pay_status']=='1'){
  130. $this->error(__('您好,修改物业费,需要上级同意之后方可付款', ''));
  131. }else{
  132. $insert['true_price_old']=$row['true_price'];
  133. $insert['true_price_new']=$params['true_price'];
  134. $insert['property_id']=$this->auth->property_id;
  135. $insert['bill_id']=$row['id'];
  136. $insert['status']='1';
  137. $insert['mark']=$params['mark'];
  138. $insert['createtime']=$insert['updatetime']=time();
  139. CostEdit::insert($insert);
  140. $params['true_price'] = $row['true_price'];
  141. }
  142. }elseif ($params['pay_status'] !=$row['pay_status']){//修改成已付款
  143. if ($params['pay_status']=='1'){
  144. $params['pay_time']=time();
  145. $order_number=time().rand('1000','9999');
  146. $params['order_number']=$order_number;
  147. HuList::where('id',$row['hu_id'])->update(['last_date'=>date('Y-m-d')]);
  148. }
  149. }
  150. }else{
  151. if ($params['true_price'] !=$row['true_price'] || $params['pay_status'] != $row['pay_status']){
  152. $this->error(__('您好,已付款的账单,不可以修改', ''));
  153. }
  154. }
  155. $result = $row->allowField(true)->save($params);
  156. Db::commit();
  157. } catch (ValidateException $e) {
  158. Db::rollback();
  159. $this->error($e->getMessage());
  160. } catch (PDOException $e) {
  161. Db::rollback();
  162. $this->error($e->getMessage());
  163. } catch (Exception $e) {
  164. Db::rollback();
  165. $this->error($e->getMessage());
  166. }
  167. if ($result !== false) {
  168. $this->success();
  169. } else {
  170. $this->error(__('No rows were updated'));
  171. }
  172. }
  173. $this->error(__('Parameter %s can not be empty', ''));
  174. }
  175. if ($row['item_id']=='1'){
  176. $row['item_name']='水费';
  177. }elseif($row['item_id']=='2'){
  178. $row['item_name']='电费';
  179. }elseif($row['item_id']=='999999999'){
  180. $row['item_name']='车位服务费';
  181. }else{
  182. // $get_itme=CostItem::where('id',$row['item_id'])->field('item')->find();
  183. if ($row['item']['item']=='1'){
  184. $row['item_name']='物业费';
  185. }elseif ($row['item']['item']=='2'){
  186. $row['item_name']='生活垃圾处理费';
  187. }elseif ($row['item']['item']=='3'){
  188. $row['item_name']='车位服务费';
  189. }else{
  190. $row['item_name']='未知';
  191. }
  192. }
  193. $row['house']=$row['village']['name']." ".$row['dong']['name']." ".$row['danyuan']['name']." ".$row['hu']['name'];
  194. // $get_edit=CostEdit::where('bill_id',$row['id'])->where('is_delete','0')->select();
  195. // $this->view->assign("get_edit", $get_edit);
  196. $this->view->assign("row", $row);
  197. return $this->view->fetch();
  198. }
  199. /**
  200. * 删除
  201. */
  202. public function del($ids = "")
  203. {
  204. if ($ids) {
  205. $pk = $this->model->getPk();
  206. $adminIds = $this->getDataLimitAdminIds();
  207. if (is_array($adminIds)) {
  208. $this->model->where($this->dataLimitField, 'in', $adminIds);
  209. }
  210. $list = $this->model->where($pk, 'in', $ids)->select();
  211. $count = 0;
  212. Db::startTrans();
  213. try {
  214. foreach ($list as $k => $v) {
  215. $count += $v->save(['is_delete'=>1]);
  216. }
  217. Db::commit();
  218. } catch (PDOException $e) {
  219. Db::rollback();
  220. $this->error($e->getMessage());
  221. } catch (Exception $e) {
  222. Db::rollback();
  223. $this->error($e->getMessage());
  224. }
  225. if ($count) {
  226. $this->success();
  227. } else {
  228. $this->error(__('No rows were deleted'));
  229. }
  230. }
  231. $this->error(__('Parameter %s can not be empty', 'ids'));
  232. }
  233. /**
  234. * 导入
  235. */
  236. public function import()
  237. {
  238. $file = $this->request->request('file');
  239. if (!$file) {
  240. $this->error(__('Parameter %s can not be empty', 'file'));
  241. }
  242. $file=str_replace(config('site.cdnurl'),"",$file);
  243. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  244. if (!is_file($filePath)) {
  245. $this->error(__('No results were found'));
  246. }
  247. //实例化reader
  248. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  249. if (!in_array($ext, [ 'xls', 'xlsx'])) {
  250. $this->error(__('Unknown data format'));
  251. }
  252. if ($ext === 'xls') {
  253. $reader = new Xls();
  254. } else {
  255. $reader = new Xlsx();
  256. }
  257. //加载文件
  258. $insert = [];
  259. $insert_2 = [];
  260. $insert_3= [];
  261. $insert_4= [];
  262. $insert_5= [];
  263. try {
  264. if (!$PHPExcel = $reader->load($filePath)) {
  265. $this->error(__('Unknown data format'));
  266. }
  267. $count_exl= count($PHPExcel->getAllSheets());
  268. if ($count_exl<1){
  269. $this->error(__('您导入的excel有误'));
  270. }
  271. //单选
  272. $currentSheet = $PHPExcel->getSheetByName('Table'); //读取文件中的第一个工作表
  273. if (empty($currentSheet) ){
  274. $this->error(__('您导入的是空文件'));
  275. }
  276. $allRow=2;
  277. if (!empty($currentSheet)){
  278. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  279. }
  280. if ($allRow<=1 ){
  281. $this->error(__('您导入的是空文件'));
  282. }
  283. if (!empty($currentSheet)){
  284. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  285. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  286. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  287. $fields = [];
  288. //第一行是备注,从A2第二行开始导入
  289. $insert=[];
  290. for($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  291. $values = [];
  292. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  293. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  294. $values[] = is_null($val) ? '' : $val;
  295. }
  296. if (!empty(trim($values['0']))){
  297. $get_house=VillageHu::where('id',$values['0'])->find();
  298. if (!empty($get_house)){
  299. $insert_a=[];
  300. if (!empty($values['7']) && !empty($values['8']) && !empty($values['9'])){//如果写了水电费金额
  301. if (trim($values['7'])=='水费'){
  302. $insert_a['item_id']=1;
  303. }elseif (trim($values['7'])=='电费'){
  304. $insert_a['item_id']=2;
  305. }
  306. $data_arr=explode('~',$values['8']);
  307. $start=strtotime(trim($data_arr['0']));
  308. $end=strtotime(trim($data_arr['1']));
  309. $insert_a['order_number']=time().rand('1000','9999');
  310. $insert_a['village_id']=$get_house['village_id'];
  311. $insert_a['dong_id']=$get_house['dong_id'];
  312. $insert_a['danyuan_id']=$get_house['danyuan_id'];
  313. $insert_a['hu_id']=$values['0'];
  314. $insert_a['price']=trim($values['9']);
  315. $insert_a['true_price']=trim($values['9']);
  316. $insert_a['yongliang']=trim($values['10']);
  317. $insert_a['danwei']=trim($values['11']);
  318. $insert_a['danjia']=trim($values['12']);
  319. $insert_a['start_time']=$start;
  320. $insert_a['end_time']=$end;
  321. $insert_a['createtime']=$insert_a['updatetime']=time();
  322. $insert[]=$insert_a;
  323. }
  324. }else{
  325. $this->error(__('文件错误'));
  326. }
  327. // VillageHu::where('id',$values['0'])->update(['usesr_name'=>$values['5'],'user_phone'=>$values['6'],'big_area'=>$values['7'],'use_area'=>$values['8'],'add_area'=>$values['9']]);
  328. }else{
  329. $this->error(__('文件错误,请不要修改id'));
  330. }
  331. }
  332. if (empty($insert)){
  333. $this->error(__('没有生成账单信息'));
  334. }
  335. $a=0;
  336. foreach ($insert as $k=>$v){
  337. $a++;
  338. // dump($v);
  339. CostBill::insert($v);
  340. }
  341. $this->success('生成了'.$a.'条记录');
  342. }
  343. } catch (Exception $exception) {
  344. $this->error($exception->getMessage());
  345. }
  346. $this->success();
  347. }
  348. }