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

Invoice.php 3.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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\shop\controller\order;
  20. use app\common\basics\ShopBase;
  21. use app\common\model\order\Order;
  22. use app\common\server\JsonServer;
  23. use app\shop\logic\order\InvoiceLogic;
  24. use app\shop\validate\order\OrderInvoiceValidate;
  25. /**
  26. * 发票管理
  27. * Class Invoice
  28. * @package app\shop\controller\order
  29. */
  30. class Invoice extends ShopBase
  31. {
  32. /**
  33. * @notes 发票列表
  34. * @return \think\response\Json|\think\response\View
  35. * @author 段誉
  36. * @date 2022/4/12 17:34
  37. */
  38. public function lists()
  39. {
  40. if ($this->request->isAjax()) {
  41. $get = $this->request->get();
  42. return JsonServer::success('', InvoiceLogic::getInvoiceLists($get, $this->shop_id));
  43. }
  44. return view('', [
  45. 'order_status' => order::getOrderStatus(true)
  46. ]);
  47. }
  48. /**
  49. * @notes 开票
  50. * @return \think\response\Json|\think\response\View
  51. * @author 段誉
  52. * @date 2022/4/12 19:00
  53. */
  54. public function setInvoice()
  55. {
  56. if ($this->request->isAjax()) {
  57. $params = (new OrderInvoiceValidate())->goCheck();
  58. InvoiceLogic::setInvoice($params);
  59. return JsonServer::success('操作成功');
  60. }
  61. $id = $this->request->get('id/d');
  62. return view('detail', [
  63. 'detail' => InvoiceLogic::detail($id)
  64. ]);
  65. }
  66. /**
  67. * @notes 导出Excel
  68. * @return \think\response\Json
  69. * @throws \think\db\exception\DataNotFoundException
  70. * @throws \think\db\exception\DbException
  71. * @throws \think\db\exception\ModelNotFoundException
  72. * @author 段誉
  73. * @date 2022/4/24 10:20
  74. */
  75. public function export()
  76. {
  77. $params = $this->request->get();
  78. $result = InvoiceLogic::export($params, $this->shop_id);
  79. if(false === $result) {
  80. return JsonServer::error(InvoiceLogic::getError() ?: '导出失败');
  81. }
  82. return JsonServer::success('', $result);
  83. }
  84. }