CostBillShouyin.php 11 KB

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