截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Shop.php 8.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\controller\finance;
  20. use app\admin\logic\finance\ShopSettlementLogic;
  21. use app\admin\logic\finance\ShopWithdrawalLogic;
  22. use app\common\basics\AdminBase;
  23. use app\common\server\JsonServer;
  24. use think\facade\View;
  25. /**
  26. * 财务-商家相关
  27. * Class Shop
  28. * @package app\admin\controller\finance
  29. */
  30. class Shop extends AdminBase
  31. {
  32. /**
  33. * @Notes: 商家提现列表
  34. * @Author: 张无忌
  35. */
  36. public function withdrawal()
  37. {
  38. if($this->request->isAjax()){
  39. $get= $this->request->get();
  40. $lists = ShopWithdrawalLogic::lists($get);
  41. return JsonServer::success('获取成功', $lists);
  42. }
  43. View::assign('summary', ShopWithdrawalLogic::summary());
  44. View::assign('statistics', ShopWithdrawalLogic::statistics());
  45. return view();
  46. }
  47. /**
  48. * @Notes: 商家提现详细
  49. * @Author: 张无忌
  50. * @return \think\response\View
  51. */
  52. public function withdrawalDetail()
  53. {
  54. $id = $this->request->get('id');
  55. View::assign('detail', ShopWithdrawalLogic::detail($id));
  56. return view();
  57. }
  58. /**
  59. * @Notes: 商家提现统计
  60. * @Author: 张无忌
  61. */
  62. public function withdrawalStatistics()
  63. {
  64. if ($this->request->isAjax()) {
  65. $statistics = ShopWithdrawalLogic::statistics();
  66. return JsonServer::success('获取成功', $statistics);
  67. }
  68. return JsonServer::error('请求异常');
  69. }
  70. /**
  71. * @Notes: 审核商家提现
  72. * @Author: 张无忌
  73. */
  74. public function withdrawalExamine()
  75. {
  76. if ($this->request->isAjax()) {
  77. $post = $this->request->post();
  78. $res = ShopWithdrawalLogic::examine($post);
  79. if ($res === false) {
  80. $error = ShopWithdrawalLogic::getError() ?: '审核失败';
  81. return JsonServer::error($error);
  82. }
  83. return JsonServer::success('审核成功');
  84. }
  85. return view();
  86. }
  87. /**
  88. * @Notes: 商家提现转账
  89. * @Author: 张无忌
  90. */
  91. public function withdrawalTransfer()
  92. {
  93. if ($this->request->isAjax()) {
  94. $post = $this->request->post();
  95. $res = ShopWithdrawalLogic::transfer($post);
  96. if ($res === false) {
  97. $error = ShopWithdrawalLogic::getError() ?: '审核失败';
  98. return JsonServer::error($error);
  99. }
  100. return JsonServer::success('审核成功');
  101. }
  102. $id = $this->request->get('id');
  103. View::assign('detail', ShopWithdrawalLogic::detail($id));
  104. return view();
  105. }
  106. /**
  107. * @notes 在线转账
  108. * @return \think\response\Json|void
  109. * @author lbzy
  110. * @datetime 2023-06-07 09:48:22
  111. */
  112. function WithdrawalTransferOnline()
  113. {
  114. if ($this->request->isAjax()) {
  115. $post = $this->request->post();
  116. $res = ShopWithdrawalLogic::transfer_online($post);
  117. if ($res === false) {
  118. $error = ShopWithdrawalLogic::getError() ? : '在线转账失败';
  119. return JsonServer::error($error);
  120. }
  121. return JsonServer::success(ShopWithdrawalLogic::getError() ? : '在线转账成功');
  122. }
  123. }
  124. /**
  125. * @Notes: 商家结算列表
  126. * @Author: 张无忌
  127. */
  128. public function settlement()
  129. {
  130. if($this->request->isAjax()){
  131. $get= $this->request->get();
  132. $lists = ShopSettlementLogic::lists($get);
  133. return JsonServer::success('获取成功', $lists);
  134. }
  135. $statistics = ShopSettlementLogic::statistics();
  136. View::assign('statistics', $statistics);
  137. return view();
  138. }
  139. /**
  140. * @Notes: 商家结算记录
  141. * @Author: 张无忌
  142. */
  143. public function settlementRecord()
  144. {
  145. if ($this->request->isAjax()) {
  146. $get = $this->request->get();
  147. $lists = ShopSettlementLogic::record($get);
  148. return JsonServer::success('获取成功', $lists);
  149. }
  150. $shop_id = $this->request->get('shop_id');
  151. $statistics = ShopSettlementLogic::statistics($shop_id);
  152. View::assign('shop_id', $shop_id);
  153. View::assign('statistics', $statistics);
  154. return view();
  155. }
  156. /**
  157. * @Notes: 商家结算详细记录
  158. * @Author: 张无忌
  159. */
  160. public function settlementDetail()
  161. {
  162. if ($this->request->isAjax()) {
  163. $get = $this->request->get();
  164. $lists = ShopSettlementLogic::detail($get);
  165. return JsonServer::success('获取成功', $lists);
  166. }
  167. $settle_id = $this->request->get('settle_id');
  168. View::assign('settle_id', $settle_id);
  169. return view();
  170. }
  171. /**
  172. * @Notes: 账户明细列表
  173. * @Author: 张无忌
  174. */
  175. public function account()
  176. {
  177. if($this->request->isAjax()){
  178. $get= $this->request->get();
  179. $lists = ShopWithdrawalLogic::account($get);
  180. return JsonServer::success('获取成功', $lists);
  181. }
  182. return view();
  183. }
  184. /**
  185. * @notes 导出商家提现Excel
  186. * @return \think\response\Json
  187. * @throws \think\db\exception\DataNotFoundException
  188. * @throws \think\db\exception\DbException
  189. * @throws \think\db\exception\ModelNotFoundException
  190. * @author 段誉
  191. * @date 2022/4/24 10:20
  192. */
  193. public function withdrawalExport()
  194. {
  195. $params = $this->request->get();
  196. $result = ShopWithdrawalLogic::lists($params, true);
  197. if(false === $result) {
  198. return JsonServer::error(ShopWithdrawalLogic::getError() ?: '导出失败');
  199. }
  200. return JsonServer::success('', $result);
  201. }
  202. /**
  203. * @notes 导出商家结算Excel
  204. * @return \think\response\Json
  205. * @throws \think\db\exception\DataNotFoundException
  206. * @throws \think\db\exception\DbException
  207. * @throws \think\db\exception\ModelNotFoundException
  208. * @author 段誉
  209. * @date 2022/4/24 10:20
  210. */
  211. public function settlementExport()
  212. {
  213. $params = $this->request->get();
  214. $result = ShopSettlementLogic::lists($params, true);
  215. if(false === $result) {
  216. return JsonServer::error(ShopSettlementLogic::getError() ?: '导出失败');
  217. }
  218. return JsonServer::success('', $result);
  219. }
  220. /**
  221. * @notes 导出商家账户明细Excel
  222. * @return \think\response\Json
  223. * @throws \think\db\exception\DataNotFoundException
  224. * @throws \think\db\exception\DbException
  225. * @throws \think\db\exception\ModelNotFoundException
  226. * @author 段誉
  227. * @date 2022/4/24 10:20
  228. */
  229. public function accountExport()
  230. {
  231. $params = $this->request->get();
  232. $result = ShopWithdrawalLogic::account($params, true);
  233. if(false === $result) {
  234. return JsonServer::error(ShopWithdrawalLogic::getError() ?: '导出失败');
  235. }
  236. return JsonServer::success('', $result);
  237. }
  238. }