CostEdit.php 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php
  2. namespace app\admin\controller\cost;
  3. use app\common\controller\Backend;
  4. use think\Db;
  5. use think\exception\PDOException;
  6. use think\exception\ValidateException;
  7. use app\admin\model\cost\CostBill;
  8. /**
  9. * 物业账单修改记录
  10. *
  11. * @icon fa fa-circle-o
  12. */
  13. class CostEdit extends Backend
  14. {
  15. /**
  16. * CostEdit模型对象
  17. * @var \app\admin\model\cost\CostEdit
  18. */
  19. protected $model = null;
  20. public function _initialize()
  21. {
  22. parent::_initialize();
  23. $this->model = new \app\admin\model\cost\CostEdit;
  24. }
  25. /**
  26. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  27. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  28. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  29. */
  30. /**
  31. * 查看
  32. */
  33. public function index()
  34. {
  35. //设置过滤方法
  36. $this->request->filter(['strip_tags']);
  37. if ($this->request->isAjax()) {
  38. //如果发送的来源是Selectpage,则转发到Selectpage
  39. if ($this->request->request('keyField')) {
  40. return $this->selectpage();
  41. }
  42. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  43. $where_and=['is_delete'=>'0'];
  44. $total = $this->model
  45. ->where($where)
  46. ->where($where_and)
  47. ->order($sort, $order)
  48. ->count();
  49. $list = $this->model
  50. ->where($where)
  51. ->where($where_and)
  52. //->with(['bill'])
  53. ->order($sort, $order)
  54. ->limit($offset, $limit)
  55. ->select();
  56. $list = collection($list)->toArray();
  57. foreach ($list as $k=>$v){
  58. $get_house=CostBill::where('id',$v['bill_id'])
  59. ->with(['village','dong','danyuan','hu','item','village.property'])
  60. ->find();
  61. $list[$k]['start_time_text']=$get_house['start_time_text'];
  62. $list[$k]['end_time_text']=$get_house['end_time_text'];
  63. $list[$k]['house']=$get_house['village']['property']['p_name']." ".$get_house['village']['name']." ".$get_house['dong']['name']." ".$get_house['danyuan']['name']." ".$get_house['hu']['name'];
  64. if ($get_house['item_id']=='1'){
  65. $list[$k]['item_name']='水费';
  66. }elseif($get_house['item_id']=='2'){
  67. $list[$k]['item_name']='电费';
  68. }elseif($get_house['item_id']=='999999999'){
  69. $list[$k]['item_name']='车位服务费';
  70. }else{
  71. // $get_itme=CostItem::where('id',$row['item_id'])->field('item')->find();
  72. if ($get_house['item']['item']=='1'){
  73. $list[$k]['item_name']='物业费';
  74. }elseif ($get_house['item']['item']=='2'){
  75. $list[$k]['item_name']='垃圾处理费';
  76. }elseif ($get_house['item']['item']=='3'){
  77. $list[$k]['item_name']='车位服务费';
  78. }else{
  79. $list[$k]['item_name']='未知';
  80. }
  81. }
  82. }
  83. // dump($list);
  84. $result = array("total" => $total, "rows" => $list);
  85. return json($result);
  86. }
  87. return $this->view->fetch();
  88. }
  89. /**
  90. * 编辑
  91. */
  92. public function edit($ids = null)
  93. {
  94. $row = $this->model->get($ids);
  95. if (!$row) {
  96. $this->error(__('No Results were found'));
  97. }
  98. $adminIds = $this->getDataLimitAdminIds();
  99. if (is_array($adminIds)) {
  100. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  101. $this->error(__('You have no permission'));
  102. }
  103. }
  104. if ($this->request->isPost()) {
  105. $params = $this->request->post("row/a");
  106. if ($params) {
  107. $params = $this->preExcludeFields($params);
  108. $result = false;
  109. if ($row['status']=='2'){
  110. $this->error(__('已经同意的账单,不可以修改', ''));
  111. }
  112. Db::startTrans();
  113. try {
  114. //是否采用模型验证
  115. if ($this->modelValidate) {
  116. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  117. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  118. $row->validateFailException(true)->validate($validate);
  119. }
  120. if ($params['status']=='2' && $params['status'] !=$row['status']){
  121. CostBill::where('id',$row['bill_id'])->update(['true_price'=>$params['true_price_new']]);
  122. }
  123. $result = $row->allowField(true)->save($params);
  124. Db::commit();
  125. } catch (ValidateException $e) {
  126. Db::rollback();
  127. $this->error($e->getMessage());
  128. } catch (PDOException $e) {
  129. Db::rollback();
  130. $this->error($e->getMessage());
  131. } catch (Exception $e) {
  132. Db::rollback();
  133. $this->error($e->getMessage());
  134. }
  135. if ($result !== false) {
  136. $this->success();
  137. } else {
  138. $this->error(__('No rows were updated'));
  139. }
  140. }
  141. $this->error(__('Parameter %s can not be empty', ''));
  142. }
  143. $get_house=CostBill::where('id',$row['bill_id'])
  144. ->with(['village','dong','danyuan','hu','item','village.property'])
  145. ->find();
  146. $row['start_time_text']=$get_house['start_time_text'];
  147. $row['end_time_text']=$get_house['end_time_text'];
  148. $row['house']=$get_house['village']['property']['p_name']." ".$get_house['village']['name']." ".$get_house['dong']['name']." ".$get_house['danyuan']['name']." ".$get_house['hu']['name'];
  149. if ($get_house['item_id']=='1'){
  150. $row['item_name']='水费';
  151. }elseif($get_house['item_id']=='2'){
  152. $row['item_name']='电费';
  153. }elseif($get_house['item_id']=='999999999'){
  154. $row['item_name']='车位服务费';
  155. }else{
  156. // $get_itme=CostItem::where('id',$row['item_id'])->field('item')->find();
  157. if ($get_house['item']['item']=='1'){
  158. $row['item_name']='物业费';
  159. }elseif ($get_house['item']['item']=='2'){
  160. $row['item_name']='垃圾处理费';
  161. }elseif ($get_house['item']['item']=='3'){
  162. $row['item_name']='车位服务费';
  163. }else{
  164. $row['item_name']='未知';
  165. }
  166. }
  167. $this->view->assign("row", $row);
  168. return $this->view->fetch();
  169. }
  170. /**
  171. * 删除
  172. */
  173. public function del($ids = "")
  174. {
  175. if ($ids) {
  176. $pk = $this->model->getPk();
  177. $adminIds = $this->getDataLimitAdminIds();
  178. if (is_array($adminIds)) {
  179. $this->model->where($this->dataLimitField, 'in', $adminIds);
  180. }
  181. $list = $this->model->where($pk, 'in', $ids)->select();
  182. $count = 0;
  183. Db::startTrans();
  184. try {
  185. foreach ($list as $k => $v) {
  186. $count += $v->save(['is_delete'=>1]);
  187. }
  188. Db::commit();
  189. } catch (PDOException $e) {
  190. Db::rollback();
  191. $this->error($e->getMessage());
  192. } catch (Exception $e) {
  193. Db::rollback();
  194. $this->error($e->getMessage());
  195. }
  196. if ($count) {
  197. $this->success();
  198. } else {
  199. $this->error(__('No rows were deleted'));
  200. }
  201. }
  202. $this->error(__('Parameter %s can not be empty', 'ids'));
  203. }
  204. }