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

OrderInvoice.php 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. namespace app\api\controller;
  3. use app\api\logic\OrderInvoiceLogic;
  4. use app\api\validate\OrderInvoiceValidate;
  5. use app\common\basics\Api;
  6. use app\common\server\JsonServer;
  7. /**
  8. * 发票
  9. * Class OrderInvoice
  10. * @package app\api\controller
  11. */
  12. class OrderInvoice extends Api
  13. {
  14. /**
  15. * @notes 提交发票
  16. * @return \think\response\Json
  17. * @author 段誉
  18. * @date 2022/4/12 10:15
  19. */
  20. public function add()
  21. {
  22. $post = $this->request->post();
  23. $params = (new OrderInvoiceValidate())->goCheck('add', $post);
  24. $result = OrderInvoiceLogic::add($params);
  25. if (false === $result) {
  26. $error = OrderInvoiceLogic::getError() ?: '提交失败';
  27. return JsonServer::error($error);
  28. }
  29. return JsonServer::success('提交成功', [], 1, 1);
  30. }
  31. /**
  32. * @notes 编辑发票
  33. * @return \think\response\Json
  34. * @author 段誉
  35. * @date 2022/4/12 10:35
  36. */
  37. public function edit()
  38. {
  39. $post = $this->request->post();
  40. $params = (new OrderInvoiceValidate())->goCheck('edit', $post);
  41. $result = OrderInvoiceLogic::edit($params);
  42. if (false === $result) {
  43. $error = OrderInvoiceLogic::getError() ?: '编辑失败';
  44. return JsonServer::error($error);
  45. }
  46. return JsonServer::success('操作成功', [], 1, 1);
  47. }
  48. /**
  49. * @notes 发票详情
  50. * @return \think\response\Json
  51. * @author 段誉
  52. * @date 2022/4/12 12:16
  53. */
  54. public function detail()
  55. {
  56. $params = (new OrderInvoiceValidate())->goCheck('detail');
  57. $result = OrderInvoiceLogic::detail($params);
  58. return JsonServer::success('获取成功', $result);
  59. }
  60. /**
  61. * @notes 获取商家发票设置
  62. * @return \think\response\Json
  63. * @author 段誉
  64. * @date 2022/4/12 15:33
  65. */
  66. public function setting()
  67. {
  68. $params = (new OrderInvoiceValidate())->goCheck('setting');
  69. $result = OrderInvoiceLogic::getInvoiceSetting($params);
  70. return JsonServer::success('获取成功', $result);
  71. }
  72. }