123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <?php
- namespace app\common\model;
- use think\facade\Db;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 数据层模型
- */
- class Storemoneylog extends BaseModel
- {
- const TYPE_BILL = 1;
- const TYPE_WITHDRAW = 2;
- const TYPE_ADMIN = 3;
- const TYPE_VERIFY = 4;
- const TYPE_DEPOSIT_OUT = 5;
- const TYPE_DEPOSIT_IN = 6;
- const TYPE_MEMBER_IN = 7;
- const TYPE_MEMBER_OUT = 8;
- const STATE_VALID = 1;
- const STATE_WAIT = 2;
- const STATE_AGREE = 3;
- const STATE_REJECT = 4;
- public $page_info;
- /**
- * 取提现单信息总数
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @return int
- */
- public function getStoremoneylogWithdrawCount($condition = array())
- {
- return Db::name('storemoneylog')->where(array('storemoneylog_type' => self::TYPE_WITHDRAW))->where($condition)->count();
- }
- /**
- * 取得资金变更日志信息
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @param type $fields 字段
- * @return array
- */
- public function getStoremoneylogInfo($condition = array(), $fields = '')
- {
- $pdlog_list_paginate = Db::name('storemoneylog')->where($condition)->field($fields)->find();
- return $pdlog_list_paginate;
- }
- /**
- * 取得资金变更日志信息
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @param type $data 字段
- * @return array
- */
- public function editStoremoneylog($condition = array(), $data = array())
- {
- $pdlog_list_paginate = Db::name('storemoneylog')->where($condition)->update($data);
- return $pdlog_list_paginate;
- }
- /**
- * 取得资金变更日志列表
- * @access public
- * @author csdeshang
- * @param type $condition 条件
- * @param type $pagesize 页面信息
- * @param type $fields 字段
- * @param type $order 排序
- * @param type $limit 限制
- * @return array
- */
- public function getStoremoneylogList($condition = array(), $pagesize = '', $fields = '*', $order = '', $limit = 0)
- {
- if ($pagesize) {
- $pdlog_list_paginate = Db::name('storemoneylog')->where($condition)->field($fields)->order($order)->paginate(['list_rows' => $pagesize, 'query' => request()->param()], false);
- $this->page_info = $pdlog_list_paginate;
- return $pdlog_list_paginate->items();
- } else {
- $pdlog_list_paginate = Db::name('storemoneylog')->where($condition)->field($fields)->order($order)->limit($limit)->select()->toArray();
- return $pdlog_list_paginate;
- }
- }
- /**
- * 变更资金
- * @access public
- * @author csdeshang
- * @param type $data
- * @return type
- */
- public function changeStoremoney($data = array())
- {
- if (!isset($data['store_id'])) {
- throw new \think\Exception(lang('param_error'), 10006);
- }
- $store_info = Db::name('store')->where('store_id', $data['store_id'])->field('store_avaliable_money,store_freeze_money,store_name')->lock(true)->find();
- if (!$store_info) {
- throw new \think\Exception(lang('ds_store_is_not_exist'), 10006);
- }
- $data['store_name'] = $store_info['store_name'];
- $store_data = array();
- if (isset($data['store_avaliable_money']) && $data['store_avaliable_money'] != 0) {
- if ($data['store_avaliable_money'] < 0 && $store_info['store_avaliable_money'] < abs($data['store_avaliable_money'])) { //检查资金是否充足
- throw new \think\Exception(lang('ds_store_avaliable_money_is_not_enough'), 10006);
- }
- $store_data['store_avaliable_money'] = bcadd($store_info['store_avaliable_money'], $data['store_avaliable_money'], 2);
- }
- if (isset($data['store_freeze_money']) && $data['store_freeze_money'] != 0) {
- if ($data['store_freeze_money'] < 0 && $store_info['store_freeze_money'] < abs($data['store_freeze_money'])) { //检查资金是否充足
- throw new \think\Exception(lang('ds_store_freeze_money_is_not_enough'), 10006);
- }
- $store_data['store_freeze_money'] = bcadd($store_info['store_freeze_money'], $data['store_freeze_money'], 2);
- }
- if (!empty($store_data)) {
- if (!Db::name('store')->where('store_id', $data['store_id'])->update($store_data)) {
- throw new \think\Exception(lang('ds_store_money_adjust_fail'), 10006);
- }
- }
- $insert = Db::name('storemoneylog')->insertGetId($data);
- if (!$insert) {
- throw new \think\Exception(lang('ds_store_money_log_insert_fail'), 10006);
- }
- return $insert;
- }
- }
|