| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace WY\app\controller\derpay;
- use WY\app\libs\Controller;
- if (!defined('WY_ROOT')) {
- exit;
- }
- class agentpay extends CheckAdmin
- {
- public function index()
- {
- $kw = $this->req->get('kw');
- $fdate = $this->req->get('fdate');
- $tdate = $this->req->get('tdate');
- $is_state = $this->req->get('is_state');
- $is_state = isset($_GET['is_state']) ? $is_state : -1;
- $cons = 'is_agent=?';
- $consOR = '';
- $consArr = array(1);
- if ($kw) {
- $users = $this->model()->select('id')->from('users')->where(array('fields' => 'username like ?', 'values' => array('%' . $kw . '%')))->fetchRow();
- if ($users) {
- $consOR .= $consOR ? ' or ' : '';
- $consOR .= 'userid = ?';
- $consArr[] = $users['id'];
- }
- }
- if ($is_state >= 0) {
- $cons .= $cons ? ' and ' : '';
- $cons .= 'is_state=?';
- $consArr[] = $is_state;
- }
- if ($kw) {
- $consOR .= $consOR ? ' or ' : '';
- $consOR .= 'userid = ?';
- $consArr[] = $kw;
- }
- if ($kw) {
- $consOR .= $consOR ? ' or ' : '';
- $consOR .= 'sn = ?';
- $consArr[] = $kw;
- }
- if ($fdate) {
- $cons .= $cons ? ' and ' : '';
- $cons .= 'addtime>=?';
- $consArr[] = strtotime($fdate);
- }
- if ($tdate) {
- $cons .= $cons ? ' and ' : '';
- $cons .= 'addtime<=?';
- $consArr[] = strtotime($tdate . ' 23:59:59');
- }
- if ($consOR) {
- $cons .= $cons ? ' and ' : '';
- $cons .= '(' . $consOR . ')';
- }
- $orderby = 'id desc';
- $sort = $this->req->get('sort');
- $sort = isset($_GET['sort']) ? $sort : 0;
- $by = $this->req->get('by');
- if ($by) {
- $sort2 = $sort ? ' desc' : ' asc';
- $orderby = $by . $sort2;
- }
- $page = $this->req->get('p');
- $page = $page ? $page : 1;
- $pagesize = 20;
- $totalsize = $this->model()->select()->from('payments')->where(array('fields' => $cons, 'values' => $consArr))->count();
- $lists = array();
- if ($totalsize) {
- $totalpage = ceil($totalsize / $pagesize);
- $page = $page > $totalpage ? $totalpage : $page;
- $offset = ($page - 1) * $pagesize;
- $lists = $this->model()->select()->from('payments')->offset($offset)->limit($pagesize)->orderby($orderby)->where(array('fields' => $cons, 'values' => $consArr))->fetchAll();
- }
- $pagelist = $this->page->put(array('page' => $page, 'pagesize' => $pagesize, 'totalsize' => $totalsize, 'url' => '?is_state=' . $is_state . '&kw=' . $kw . '&fdate=' . $fdate . '&tdate=' . $tdate . '&sort=' . $sort . '&by=' . $by . '&p='));
- $data = array('title' => '付款记录', 'lists' => $lists, 'pagelist' => $pagelist, 'search' => array('kw' => $kw, 'fdate' => $fdate, 'tdate' => $fdate, 'is_state' => $is_state), 'sort' => $sort, 'by' => $by);
- $this->put('payments2.php', $data);
- }
- public function pay()
- {
- $id = isset($this->action[3]) ? intval($this->action[3]) : 0;
- $data = $this->model()->select()->from('payments')->where(array('fields' => 'id=?', 'values' => array($id)))->fetchRow();
- $this->put('paymentsinfo.php', $data);
- }
- public function savepay()
- {
- $id = isset($this->action[3]) ? intval($this->action[3]) : 0;
- $data = isset($_POST) ? $_POST : false;
- if ($id && $data) {
- $data += array('lastime' => time());
- if ($this->model()->from('payments')->updateSet($data)->where(array('fields' => 'id=?', 'values' => array($id)))->update()) {
- $this->put('woodyapp.php', array('msg' => '账单信息已保存成功', 'url' => $this->dir . 'userpay'));
- }
- }
- $this->put('woodyapp.php', array('msg' => '账单信息已保存失败', 'url' => $this->dir . 'userpay'));
- }
- }
|