截流自动化的商城平台
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

FaceSheetOrder.php 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller\express_assistant;
  20. use app\common\basics\ShopBase;
  21. use app\common\server\JsonServer;
  22. use app\shop\logic\express_assistant\FaceSheetOrderLogic;
  23. use app\shop\logic\express_assistant\FaceSheetSenderLogic;
  24. use app\shop\logic\express_assistant\FaceSheetTplLogic;
  25. use app\shop\validate\express_assistant\FaceSheetOrderValidate;
  26. /**
  27. * 打印订单
  28. * Class FaceSheetOrder
  29. * @package app\shop\controller\express_assistant
  30. */
  31. class FaceSheetOrder extends ShopBase
  32. {
  33. /**
  34. * @notes 获取待发货订单列表
  35. * @return \think\response\Json|\think\response\View
  36. * @author 段誉
  37. * @date 2023/2/13 16:56
  38. */
  39. public function lists()
  40. {
  41. if ($this->request->isAjax()) {
  42. $get = $this->request->get();
  43. $lists = FaceSheetOrderLogic::lists($get, $this->shop_id);
  44. return JsonServer::success("", $lists);
  45. }
  46. return view();
  47. }
  48. /**
  49. * @notes 选择打印模板
  50. * @return \think\response\View
  51. * @throws \think\db\exception\DataNotFoundException
  52. * @throws \think\db\exception\DbException
  53. * @throws \think\db\exception\ModelNotFoundException
  54. * @author 段誉
  55. * @date 2023/2/13 16:55
  56. */
  57. public function select()
  58. {
  59. return view("", [
  60. 'template' => FaceSheetTplLogic::allTpl($this->shop_id),
  61. 'sender' => FaceSheetSenderLogic::allSender($this->shop_id),
  62. ]);
  63. }
  64. /**
  65. * @notes 打印
  66. * @return \think\response\Json
  67. * @author 段誉
  68. * @date 2023/2/13 16:56
  69. */
  70. public function print()
  71. {
  72. if (!$this->request->isAjax()) {
  73. return JsonServer::error('请求异常');
  74. }
  75. $params = (new FaceSheetOrderValidate())->goCheck(null, [
  76. 'shop_id' => $this->shop_id,
  77. 'admin_id' => $this->admin_id
  78. ]);
  79. $result = FaceSheetOrderLogic::print($params);
  80. if ($result !== true) {
  81. return JsonServer::error(FaceSheetOrderLogic::getError());
  82. }
  83. return JsonServer::success('操作成功');
  84. }
  85. }