ZopOrderMsgCommand.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Produce;
  4. use app\common\service\ZopOrderService;
  5. use app\service\EsMobileService;
  6. use Exception;
  7. use think\console\Command;
  8. use think\console\Input;
  9. use think\console\Output;
  10. class ZopOrderMsgCommand extends Command
  11. {
  12. protected function configure()
  13. {
  14. $this->setName('order:msg')->setDescription('获取zop联通订单消息');
  15. }
  16. protected function execute(Input $input, Output $output)
  17. {
  18. $this->output->info("开始获取联通订单消息");
  19. // 获取所有商品信息中的消息渠道编码
  20. // $messageChannelCodes = Produce::where('message_channel_code', 'not null')->column('message_channel_code');
  21. // foreach ($messageChannelCodes as $messageChannelCode) {
  22. try {
  23. $result = ZopOrderService::orderMsg();
  24. if ($result['code'] == 0) {
  25. $this->output->info("获取联通订单消息成功");
  26. } else {
  27. $this->output->info("获取联通订单消息失败: " . $result['message'] ?? '');
  28. }
  29. } catch (Exception $e) {
  30. $this->output->info("获取联通订单消息失败: " . $e->getMessage());
  31. }
  32. // }
  33. $this->output->info("获取联通订单消息完成");
  34. }
  35. }