123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- <?php
- namespace app\admin\controller;
- use app\common\controller\Backend;
- use think\Db;
- class CompanyTakeCash extends Backend
- {
-
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\CompanyTakeCash;
- $this->view->assign("statusList", $this->model->getStatusList());
- }
-
-
- public function index()
- {
-
- $this->relationSearch = true;
-
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
-
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
-
- $where_op = [];
- if($this->auth->company_id){
- $where_op['company_take_cash.user_id'] = $this->auth->company_id;
- }
- $list = $this->model
- ->with(['company'])
- ->where($where)
- ->where($where_op)
- ->order($sort, $order)
- ->paginate($limit);
- foreach ($list as $row) {
-
- $row->getRelation('company')->visible(['name']);
- }
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
-
- public function audit(){
- $id = input('id');
- $info = Db::name('company_take_cash')
- ->where('id',$id)
- ->find();
- if ($this->request->isPost()) {
- $status = input('status',0);
- $data = [
- 'status' => $status,
- 'auditremark' => input('auditremark',''),
- 'audittime' => time(),
- 'updatetime' => time(),
- ];
- $rs = Db::name('company_take_cash')->where('id',$id)->update($data);
- $this->success('审核完成');
- }
- $this->assign('row',$info);
- return $this->view->fetch();
- }
- }
|