截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <?php
  2. namespace app\shop\logic\finance;
  3. use app\common\basics\Logic;
  4. use app\common\enum\ShopEnum;
  5. use app\common\model\shop\ShopAccountLog;
  6. use app\common\server\ExportExcelServer;
  7. use app\common\server\UrlServer;
  8. class ShopLogic extends Logic
  9. {
  10. /**
  11. * @Notes: 账户明细
  12. * @param $get
  13. * @param $shop_id (商家ID)
  14. * @return array
  15. */
  16. public static function account($get, $shop_id, $is_export = false)
  17. {
  18. $where[] = ['shop_id', '=', (int)$shop_id];
  19. if (isset($get['search_key']) && $get['search_key']) {
  20. switch($get['search_key']){
  21. case 'settle':
  22. $where[] = ['SAL.source_type', '=', ShopAccountLog::settlement_add_money];
  23. break;
  24. case 'withdrawal':
  25. $where[] = ['SAL.source_type', '=', ShopAccountLog::withdrawal_dec_money];
  26. break;
  27. case 'withdrawal_stay':
  28. $where[] = ['SAL.source_type', '=', ShopAccountLog::withdrawal_stay_money];
  29. break;
  30. case 'withdrawal_error':
  31. $where[] = ['SAL.source_type', '=', ShopAccountLog::withdrawal_fail_money];
  32. break;
  33. }
  34. }
  35. if (!empty($get['start_time']) and $get['start_time']) {
  36. $where[] = ['SAL.create_time', '>=', strtotime($get['start_time'])];
  37. }
  38. if (!empty($get['end_time']) and $get['end_time']) {
  39. $where[] = ['SAL.create_time', '<=', strtotime($get['end_time'])];
  40. }
  41. if (true === $is_export) {
  42. return self::export($where);
  43. }
  44. $model = new ShopAccountLog();
  45. $lists = $model->alias('SAL')
  46. ->field(['SAL.*', 'S.name,S.logo,S.type'])
  47. ->join('shop S', 'S.id = SAL.shop_id')
  48. ->where($where)
  49. ->order('create_time','desc')
  50. ->paginate([
  51. 'page' => $get['page'],
  52. 'list_rows' => $get['limit'],
  53. 'var_page' => 'page'
  54. ])->toArray();
  55. foreach ($lists['data'] as &$item) {
  56. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  57. $item['source_type'] = ShopAccountLog::getSourceType($item['source_type']);
  58. $symbol = $item['change_type'] === 1 ? '+' : '-';
  59. $item['change_amount'] = $symbol.$item['change_amount'];
  60. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  61. }
  62. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  63. }
  64. /**
  65. * @notes 导出
  66. * @param $where
  67. * @return array|false
  68. * @author 段誉
  69. * @date 2022/4/24 11:59
  70. */
  71. public static function export($where)
  72. {
  73. try {
  74. $lists = (new ShopAccountLog())->alias('SAL')
  75. ->field(['SAL.*', 'S.name,S.logo,S.type'])
  76. ->join('shop S', 'S.id = SAL.shop_id')
  77. ->where($where)
  78. ->order('create_time','desc')
  79. ->select()->toArray();
  80. foreach ($lists as &$item) {
  81. $item['type'] = ShopEnum::getShopTypeDesc($item['type']);
  82. $item['source_type'] = ShopAccountLog::getSourceType($item['source_type']);
  83. $symbol = $item['change_type'] === 1 ? '+' : '-';
  84. $item['change_amount'] = $symbol.$item['change_amount'];
  85. }
  86. $excelFields = [
  87. 'name' => '商家名称',
  88. 'type' => '商家类型',
  89. 'log_sn' => '明细流水号',
  90. 'source_sn' => '来源单号',
  91. 'source_type' => '明细类型',
  92. 'change_amount' => '变动金额',
  93. 'left_amount' => '剩余金额',
  94. 'create_time' => '记录时间',
  95. ];
  96. $export = new ExportExcelServer();
  97. $export->setFileName('账户明细');
  98. $export->setExportNumber(['log_sn', 'source_sn']);
  99. $result = $export->createExcel($excelFields, $lists);
  100. return ['url' => $result];
  101. } catch (\Exception $e) {
  102. self::$error = $e->getMessage();
  103. return false;
  104. }
  105. }
  106. }