截流自动化的商城平台
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.

Settlement.php 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. namespace app\shop\controller\finance;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\finance\SettlementLogic;
  6. use think\facade\View;
  7. /**
  8. * 商家结算
  9. * Class Settlement
  10. * @package app\shop\controller\finance
  11. */
  12. class Settlement extends ShopBase
  13. {
  14. /**
  15. * @Notes: 结算列表
  16. * @Author: 张无忌
  17. */
  18. public function lists()
  19. {
  20. if ($this->request->isAjax()) {
  21. $get = $this->request->get();
  22. $lists = SettlementLogic::lists($get, $this->shop_id);
  23. return JsonServer::success('获取成功', $lists);
  24. }
  25. $statistics = SettlementLogic::statistics($this->shop_id);
  26. View::assign('statistics', $statistics);
  27. return view();
  28. }
  29. /**
  30. * @Notes: 提交结算
  31. * @Author: 张无忌
  32. */
  33. public function add()
  34. {
  35. $res = SettlementLogic::add($this->shop_id);
  36. if ($res === false) {
  37. $message = SettlementLogic::getError() ?: '结算失败';
  38. return JsonServer::error($message);
  39. }
  40. return JsonServer::success('结算成功');
  41. }
  42. /**
  43. * @Notes: 结算详细
  44. * @Author: 张无忌
  45. */
  46. public function detail()
  47. {
  48. if ($this->request->isAjax()) {
  49. $get = $this->request->get();
  50. $lists = SettlementLogic::detail($get);
  51. return JsonServer::success('获取成功', $lists);
  52. }
  53. $settle_id = $this->request->get('settle_id');
  54. View::assign('settle_id', $settle_id);
  55. return view();
  56. }
  57. /**
  58. * @notes 导出Excel
  59. * @return \think\response\Json
  60. * @author 段誉
  61. * @date 2022/4/24 11:57
  62. */
  63. public function export()
  64. {
  65. $params = $this->request->get();
  66. $result = SettlementLogic::lists($params, $this->shop_id, true);
  67. if(false === $result) {
  68. return JsonServer::error(SettlementLogic::getError() ?: '导出失败');
  69. }
  70. return JsonServer::success('', $result);
  71. }
  72. }