CostBill.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <?php
  2. namespace app\admin\controller\cost;
  3. use app\admin\model\cost\CostPay;
  4. use app\admin\model\house\HuList;
  5. use app\common\controller\Backend;
  6. use think\Db;
  7. use think\exception\PDOException;
  8. use think\exception\ValidateException;
  9. use app\admin\model\Cost\CostItem;
  10. use app\admin\model\cost\CostEdit;
  11. /**
  12. * 物业账单
  13. *
  14. * @icon fa fa-circle-o
  15. */
  16. class CostBill extends Backend
  17. {
  18. /**
  19. * CostBill模型对象
  20. * @var \app\admin\model\Cost\CostBill
  21. */
  22. protected $model = null;
  23. public function _initialize()
  24. {
  25. parent::_initialize();
  26. $this->model = new \app\admin\model\cost\CostBill;
  27. }
  28. /**
  29. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  30. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  31. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  32. */
  33. /**
  34. * 查看
  35. */
  36. public function index()
  37. {
  38. // printer_open
  39. //设置过滤方法
  40. $this->request->filter(['strip_tags']);
  41. if ($this->request->isAjax()) {
  42. //如果发送的来源是Selectpage,则转发到Selectpage
  43. if ($this->request->request('keyField')) {
  44. return $this->selectpage();
  45. }
  46. $get=$this->request->get('filter');
  47. $where_and=['is_delete'=>'0'];
  48. $where_and['item_id']=['not in',['1','2']];
  49. if (!empty($this->auth->village)){
  50. $where_and['village_id']=['in',$this->auth->village];
  51. // dump($where_and);
  52. }
  53. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  54. if (!empty($get)){
  55. // echo $get;exit;
  56. $get=json_decode($get,true);
  57. if (isset($get['village_id'])){
  58. $where_and['village_id']=['eq',$get['village_id']];
  59. }
  60. if (isset($get['hu.usesr_name'])){
  61. $get_huid=\app\admin\model\village\VillageHu::where('usesr_name','like','%'.$get['hu.usesr_name'].'%')->field('id')->select();
  62. $hu_id=array_column($get_huid,'id');
  63. $where_and['hu_id']=['in',$hu_id];
  64. }
  65. $total = $this->model
  66. ->where($where_and)
  67. ->order($sort, $order)
  68. ->count();
  69. $list = $this->model
  70. ->where($where_and)
  71. ->with(['village','dong','danyuan','hu','item'])
  72. ->order($sort, $order)
  73. ->limit($offset, $limit)
  74. ->select();
  75. }else{
  76. $total = $this->model
  77. ->where($where)
  78. ->where($where_and)
  79. ->order($sort, $order)
  80. ->count();
  81. $list = $this->model
  82. ->where($where)
  83. ->where($where_and)
  84. ->with(['village','dong','danyuan','hu','item'])
  85. ->order($sort, $order)
  86. ->limit($offset, $limit)
  87. ->select();
  88. }
  89. $list = collection($list)->toArray();
  90. $result = array("total" => $total, "rows" => $list);
  91. return json($result);
  92. }
  93. return $this->view->fetch();
  94. }
  95. /**
  96. * 编辑
  97. */
  98. public function edit($ids = null)
  99. {
  100. $row = $this->model->get($ids,['village','dong','danyuan','hu','item']);
  101. if (!$row) {
  102. $this->error(__('No Results were found'));
  103. }
  104. $adminIds = $this->getDataLimitAdminIds();
  105. if (is_array($adminIds)) {
  106. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  107. $this->error(__('You have no permission'));
  108. }
  109. }
  110. if ($this->request->isPost()) {
  111. $params = $this->request->post("row/a");
  112. if ($params) {
  113. $params = $this->preExcludeFields($params);
  114. $result = false;
  115. Db::startTrans();
  116. try {
  117. //是否采用模型验证
  118. if ($this->modelValidate) {
  119. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  120. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  121. $row->validateFailException(true)->validate($validate);
  122. }
  123. if ($row['pay_status']=='0'){//未付款的情况
  124. if ($params['true_price'] !=$row['true_price']){//修改价格
  125. if ($params['pay_status']=='1'){
  126. $this->error(__('您好,修改物业费,需要上级同意之后方可付款', ''));
  127. }else{
  128. $insert['true_price_old']=$row['true_price'];
  129. $insert['true_price_new']=$params['true_price'];
  130. $insert['property_id']=$this->auth->property_id;
  131. $insert['bill_id']=$row['id'];
  132. $insert['status']='1';
  133. $insert['mark']=$params['mark'];
  134. $insert['createtime']=$insert['updatetime']=time();
  135. CostEdit::insert($insert);
  136. $params['true_price'] = $row['true_price'];
  137. }
  138. }elseif ($params['pay_status'] !=$row['pay_status']){//修改成已付款
  139. if ($params['pay_status']=='1'){
  140. $params['pay_time']=time();
  141. $order_number=time().rand('1000','9999');
  142. $params['order_number']=$order_number;
  143. HuList::where('id',$row['hu_id'])->update(['last_date'=>date('Y-m-d')]);
  144. }
  145. }
  146. }else{
  147. if ($params['true_price'] !=$row['true_price'] || $params['pay_status'] != $row['pay_status']){
  148. $this->error(__('您好,已付款的账单,不可以修改', ''));
  149. }
  150. }
  151. $result = $row->allowField(true)->save($params);
  152. Db::commit();
  153. } catch (ValidateException $e) {
  154. Db::rollback();
  155. $this->error($e->getMessage());
  156. } catch (PDOException $e) {
  157. Db::rollback();
  158. $this->error($e->getMessage());
  159. } catch (Exception $e) {
  160. Db::rollback();
  161. $this->error($e->getMessage());
  162. }
  163. if ($result !== false) {
  164. $this->success();
  165. } else {
  166. $this->error(__('No rows were updated'));
  167. }
  168. }
  169. $this->error(__('Parameter %s can not be empty', ''));
  170. }
  171. if ($row['item_id']=='1'){
  172. $row['item_name']='水费';
  173. }elseif($row['item_id']=='2'){
  174. $row['item_name']='电费';
  175. }elseif($row['item_id']=='999999999'){
  176. $row['item_name']='车位服务费';
  177. }else{
  178. // $get_itme=CostItem::where('id',$row['item_id'])->field('item')->find();
  179. if ($row['item']['item']=='1'){
  180. $row['item_name']='物业费';
  181. }elseif ($row['item']['item']=='2'){
  182. $row['item_name']='垃圾处理费';
  183. }elseif ($row['item']['item']=='3'){
  184. $row['item_name']='车位服务费';
  185. }else{
  186. $row['item_name']='未知';
  187. }
  188. }
  189. $row['house']=$row['village']['name']." ".$row['dong']['name']." ".$row['danyuan']['name']." ".$row['hu']['name'];
  190. // $get_edit=CostEdit::where('bill_id',$row['id'])->where('is_delete','0')->select();
  191. // $this->view->assign("get_edit", $get_edit);
  192. $this->view->assign("row", $row);
  193. return $this->view->fetch();
  194. }
  195. /**
  196. * 删除
  197. */
  198. public function del($ids = "")
  199. {
  200. if ($ids) {
  201. $pk = $this->model->getPk();
  202. $adminIds = $this->getDataLimitAdminIds();
  203. if (is_array($adminIds)) {
  204. $this->model->where($this->dataLimitField, 'in', $adminIds);
  205. }
  206. $list = $this->model->where($pk, 'in', $ids)->select();
  207. $count = 0;
  208. Db::startTrans();
  209. try {
  210. foreach ($list as $k => $v) {
  211. $count += $v->save(['is_delete'=>1]);
  212. }
  213. Db::commit();
  214. } catch (PDOException $e) {
  215. Db::rollback();
  216. $this->error($e->getMessage());
  217. } catch (Exception $e) {
  218. Db::rollback();
  219. $this->error($e->getMessage());
  220. }
  221. if ($count) {
  222. $this->success();
  223. } else {
  224. $this->error(__('No rows were deleted'));
  225. }
  226. }
  227. $this->error(__('Parameter %s can not be empty', 'ids'));
  228. }
  229. /**
  230. * 批量更新
  231. */
  232. public function multi($ids = "")
  233. {
  234. $ids = $ids ? $ids : $this->request->param("ids");
  235. if ($ids) {
  236. if ($this->request->has('params')) {
  237. parse_str($this->request->post("params"), $values);
  238. $values = $this->auth->isSuperAdmin() ? $values : array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields)));
  239. if ($values) {
  240. $adminIds = $this->getDataLimitAdminIds();
  241. if (is_array($adminIds)) {
  242. $this->model->where($this->dataLimitField, 'in', $adminIds);
  243. }
  244. $count = 0;
  245. Db::startTrans();
  246. try {
  247. $list = $this->model->where($this->model->getPk(), 'in', $ids)->select();
  248. foreach ($list as $index => $item) {
  249. if ($values['pay_status']=='1'){
  250. $values['pay_time']=time();
  251. }else{
  252. $values['pay_time']='';
  253. }
  254. $count += $item->allowField(true)->isUpdate(true)->save($values);
  255. }
  256. Db::commit();
  257. } catch (PDOException $e) {
  258. Db::rollback();
  259. $this->error($e->getMessage());
  260. } catch (Exception $e) {
  261. Db::rollback();
  262. $this->error($e->getMessage());
  263. }
  264. if ($count) {
  265. $this->success();
  266. } else {
  267. $this->error(__('No rows were updated'));
  268. }
  269. } else {
  270. $this->error(__('You have no permission'));
  271. }
  272. }
  273. }
  274. $this->error(__('Parameter %s can not be empty', 'ids'));
  275. }
  276. }