截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ShopSettlementLogic.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?php
  2. namespace app\admin\logic\finance;
  3. use app\common\basics\Logic;
  4. use app\common\enum\ShopEnum;
  5. use app\common\enum\PayEnum;
  6. use app\common\enum\OrderEnum;
  7. use app\common\model\order\Order;
  8. use app\common\model\shop\ShopSettlement;
  9. use app\common\model\shop\ShopSettlementRecord;
  10. use app\common\server\ExportExcelServer;
  11. use app\common\server\UrlServer;
  12. class ShopSettlementLogic extends Logic
  13. {
  14. /**
  15. * @Notes: 商家结算列表
  16. * @Author: 张无忌
  17. * @param $get
  18. * @return array
  19. */
  20. public static function lists($get, $is_export = false)
  21. {
  22. try {
  23. $where = [];
  24. if (!empty($get['name'])) {
  25. $where[] = ['S.name', 'like', '%'.$get['name'].'%'];
  26. }
  27. if (!empty($get['start_time'])) {
  28. $where[] = ['SL.create_time', '>=', strtotime($get['start_time'])];
  29. }
  30. if (!empty($get['end_time'])) {
  31. $where[] = ['SL.create_time', '<=', strtotime($get['end_time'])];
  32. }
  33. // 导出
  34. if (true === $is_export) {
  35. return self::settlementExport($where);
  36. }
  37. $model = new ShopSettlement();
  38. $lists = $model->field([
  39. 'SL.id,SL.shop_id,S.name,S.type,S.logo',
  40. 'sum(SL.deal_order_count) AS deal_order_count',
  41. 'sum(SL.business_money) AS business_money',
  42. ])->alias('SL')
  43. ->join('shop S', 'S.id = SL.shop_id')
  44. ->group('shop_id')
  45. ->where($where)
  46. ->paginate([
  47. 'page' => $get['page'],
  48. 'list_rows' => $get['limit'],
  49. 'var_page' => 'page'
  50. ])->toArray();
  51. foreach ($lists['data'] as &$item) {
  52. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  53. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  54. }
  55. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  56. } catch (\Exception $e) {
  57. return ['error'=>$e->getMessage()];
  58. }
  59. }
  60. /**
  61. * @Notes: 商家结算记录
  62. * @Author: 张无忌
  63. * @param $get
  64. * @return array
  65. */
  66. public static function record($get)
  67. {
  68. try {
  69. $model = new ShopSettlement();
  70. $lists = $model->field(true)
  71. ->where(['shop_id'=>$get['shop_id']])
  72. ->order('id', 'desc')
  73. ->paginate([
  74. 'page' => $get['page'],
  75. 'list_rows' => $get['limit'],
  76. 'var_page' => 'page'
  77. ])
  78. ->toArray();
  79. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  80. } catch (\Exception $e) {
  81. return ['error'=>$e->getMessage()];
  82. }
  83. }
  84. /**
  85. * @Notes: 结算详细
  86. * @Author: 张无忌
  87. * @param $get
  88. * @return array
  89. */
  90. public static function detail($get)
  91. {
  92. try {
  93. $where[] = ['settle_id', '=', (int)$get['settle_id']];
  94. if (!empty($get['order_sn']) and $get['order_sn'])
  95. $where[] = ['order_sn', 'like', '%'.$get['order_sn'].'%'];
  96. $model = new ShopSettlementRecord();
  97. $lists = $model->field(true)
  98. ->where($where)
  99. ->order('id', 'asc')
  100. ->paginate([
  101. 'page' => $get['page'],
  102. 'list_rows' => $get['limit'],
  103. 'var_page' => 'page'
  104. ])
  105. ->toArray();
  106. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  107. } catch (\Exception $e) {
  108. return ['error'=>$e->getMessage()];
  109. }
  110. }
  111. /**
  112. * @Notes: 结算统计
  113. * @return array
  114. */
  115. public static function statistics($shop_id = 0)
  116. {
  117. $where = [];
  118. if($shop_id){
  119. $where[] = ['shop_id', '=' , $shop_id];
  120. }
  121. //营业额
  122. $modelOrder = new Order();
  123. //已结算成交订单数
  124. $modelShopSettlement = new ShopSettlement();
  125. $settleOrederNum = $modelShopSettlement
  126. ->where($where)
  127. ->sum('deal_order_count');
  128. //已结算营业额
  129. $settleOrederAmount = $modelShopSettlement
  130. ->where($where)
  131. ->sum('business_money');
  132. //待结算营业额
  133. $settleOrederAmountWait = $modelOrder
  134. ->where([
  135. ['pay_status', '>', PayEnum::UNPAID],
  136. ['settle_id', '=', OrderEnum::SETTLE_WAIT]
  137. ])
  138. ->sum('order_amount');
  139. //已结算分销佣金金额
  140. $settleDistributionAmount = $modelShopSettlement
  141. ->where($where)
  142. ->sum('distribution_money');
  143. //已结算入账金额
  144. $settleWithdrawalAmount = $modelShopSettlement
  145. ->where($where)
  146. ->sum('entry_account_money');
  147. //已结算交易服务费
  148. $settlePoundageAmount = $modelShopSettlement
  149. ->where($where)
  150. ->sum('trade_service_fee');
  151. return [
  152. 'settleOrederNum' => $settleOrederNum, //已结算成交订单数
  153. 'settleOrederAmount' => $settleOrederAmount, //已结算营业额
  154. 'settleOrederAmountWait' => $settleOrederAmountWait, //待结算营业额
  155. 'settleDistributionAmount' => $settleDistributionAmount, //已结算分销佣金金额
  156. 'settleWithdrawalAmount' => $settleWithdrawalAmount, //已结算入账金额
  157. 'settlePoundageAmount' => $settlePoundageAmount, //已结算交易服务费
  158. ];
  159. }
  160. /**
  161. * @notes 导出商家结算Excel
  162. * @param array $where
  163. * @return array|false
  164. * @author 段誉
  165. * @date 2022/4/24 10:10
  166. */
  167. public static function settlementExport($where)
  168. {
  169. try {
  170. $model = new ShopSettlement();
  171. $lists = $model->field([
  172. 'SL.id,SL.shop_id,S.name,S.type,S.logo',
  173. 'sum(SL.deal_order_count) AS deal_order_count',
  174. 'sum(SL.business_money) AS business_money',
  175. ])->alias('SL')
  176. ->join('shop S', 'S.id = SL.shop_id')
  177. ->group('shop_id')
  178. ->where($where)
  179. ->select()
  180. ->toArray();
  181. foreach ($lists as &$item) {
  182. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  183. }
  184. $excelFields = [
  185. 'name' => '商家名称',
  186. 'type' => '商家类型',
  187. 'deal_order_count' => '已结算成交订单数',
  188. 'business_money' => '已结算营业额',
  189. ];
  190. $export = new ExportExcelServer();
  191. $export->setFileName('商家结算');
  192. $result = $export->createExcel($excelFields, $lists);
  193. return ['url' => $result];
  194. } catch (\Exception $e) {
  195. self::$error = $e->getMessage();
  196. return false;
  197. }
  198. }
  199. }