Bill.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?php
  2. namespace app\common\model;
  3. use think\facade\Db;
  4. //以下是定义结算单状态
  5. //默认
  6. define('BILL_STATE_CREATE', 1);
  7. //店铺已确认
  8. define('BILL_STATE_STORE_COFIRM', 2);
  9. //平台已审核
  10. define('BILL_STATE_SYSTEM_CHECK', 3);
  11. //结算完成
  12. define('BILL_STATE_SUCCESS', 4);
  13. /**
  14. * ============================================================================
  15. * DSMall多用户商城
  16. * ============================================================================
  17. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  18. * 网站地址: http://www.csdeshang.com
  19. * ----------------------------------------------------------------------------
  20. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  21. * 不允许对程序代码以任何形式任何目的的再发布。
  22. * ============================================================================
  23. * 数据层模型
  24. */
  25. class Bill extends BaseModel {
  26. public $page_info;
  27. /**
  28. * 取得平台月结算单
  29. * @access public
  30. * @author csdeshang
  31. * @param array $condition 检索条件
  32. * @param str $fields 字段
  33. * @param int $pagesize 分页信息
  34. * @param str $order 排序
  35. * @param int $limit 数量限制
  36. * @return array
  37. */
  38. public function getOrderstatisList($condition = array(), $fields = '*', $pagesize = null, $order = '', $limit = 0) {
  39. if($pagesize){
  40. $result = Db::name('orderstatis')->where($condition)->field($fields)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  41. $this->page_info = $result;
  42. return $result->items();
  43. }else{
  44. return Db::name('orderstatis')->where($condition)->field($fields)->order($order)->limit($limit)->select()->toArray();
  45. }
  46. }
  47. /**
  48. * 取得平台月结算单条信息
  49. * @access public
  50. * @author csdeshang
  51. * @param array $condition 检索条件
  52. * @param string $fields 字段
  53. * @param string $order 排序
  54. * @return array
  55. */
  56. public function getOrderstatisInfo($condition = array(), $fields = '*', $order = null) {
  57. return Db::name('orderstatis')->where($condition)->field($fields)->order($order)->find();
  58. }
  59. /**
  60. * 取得店铺月结算单列表
  61. * @access public
  62. * @author csdeshang
  63. * @param array $condition 检索条件
  64. * @param str $fields 字段
  65. * @param int $pagesize 分页信息
  66. * @param str $order 排序
  67. * @param int $limit 数量限制
  68. * @return array
  69. */
  70. public function getOrderbillList($condition = array(), $fields = '*', $pagesize = null, $order = '', $limit = 0) {
  71. if($pagesize){
  72. $result = Db::name('orderbill')->where($condition)->field($fields)->order($order)->paginate(['list_rows'=>$pagesize,'query' => request()->param()],false);
  73. $this->page_info = $result;
  74. return $result->items();
  75. }else{
  76. return Db::name('orderbill')->where($condition)->field($fields)->order($order)->limit($limit)->select()->toArray();
  77. }
  78. }
  79. /**
  80. * 取得店铺月结算单单条
  81. * @access public
  82. * @author csdeshang
  83. * @param array $condition 检索条件
  84. * @param string $fields 字段
  85. * @return array
  86. */
  87. public function getOrderbillInfo($condition = array(), $fields = '*') {
  88. return Db::name('orderbill')->where($condition)->field($fields)->find();
  89. }
  90. /**
  91. * 取得订单数量
  92. * @access public
  93. * @author csdeshang
  94. * @param array $condition 检索条件
  95. * @return int
  96. */
  97. public function getOrderbillCount($condition) {
  98. return Db::name('orderbill')->where($condition)->count();
  99. }
  100. /**
  101. * 取得平台月结算单数量
  102. * @access public
  103. * @author csdeshang
  104. * @param array $condition 检索条件
  105. * @return int
  106. */
  107. public function getOrderstatisCount($condition) {
  108. return Db::name('orderstatis')->where($condition)->count();
  109. }
  110. /**
  111. * 添加订单统计
  112. * @access public
  113. * @author csdeshang
  114. * @param type $data 参数内容
  115. * @return type
  116. */
  117. public function addOrderstatis($data) {
  118. return Db::name('orderstatis')->insert($data);
  119. }
  120. /**
  121. * 添加订单账单
  122. * @access public
  123. * @author csdeshang
  124. * @param array $data 参数数据
  125. * @return type
  126. */
  127. public function addOrderbill($data) {
  128. return Db::name('orderbill')->insertGetId($data);
  129. }
  130. /**
  131. * 编辑订单账单
  132. * @access public
  133. * @author csdeshang
  134. * @param array $data 更新数据
  135. * @param array $condition 条件
  136. * @return bool
  137. */
  138. public function editOrderbill($data, $condition = array()) {
  139. return Db::name('orderbill')->where($condition)->update($data);
  140. }
  141. }
  142. ?>