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

WechatMiniExpressSendSync.php 2.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. namespace app\common\command;
  3. use app\common\enum\OrderEnum;
  4. use app\common\enum\PayEnum;
  5. use app\common\model\order\Order;
  6. use app\common\model\RechargeOrder;
  7. use app\common\server\ConfigServer;
  8. use app\common\server\WechatMiniExpressSendSyncServer;
  9. use think\console\Command;
  10. use think\console\Input;
  11. use think\console\Output;
  12. class WechatMiniExpressSendSync extends Command
  13. {
  14. protected function configure()
  15. {
  16. $this->setName('wechat_mini_express_send_sync')->setDescription('微信小程序发货同步');
  17. }
  18. protected function execute(Input $input, Output $output)
  19. {
  20. // 未开启发货同步
  21. if (! ConfigServer::get('mnp', 'express_send_sync', 1)) {
  22. return ;
  23. }
  24. // 订单
  25. static::order();
  26. // 用户充值
  27. static::user_recharge();
  28. }
  29. private static function order()
  30. {
  31. // 快递
  32. $list = Order::where('delivery_type', OrderEnum::DELIVERY_TYPE_EXPRESS)
  33. ->where('shipping_status', 1)
  34. ->where('pay_status', 1)
  35. ->where('pay_way', PayEnum::WECHAT_PAY)
  36. ->where('wechat_mini_express_sync', 0)
  37. ->where('order_status', 'in', [ OrderEnum::ORDER_STATUS_GOODS, OrderEnum::ORDER_STATUS_COMPLETE ])
  38. ->limit(60)
  39. ->order('id desc')
  40. ->select()->toArray();
  41. // 自提
  42. $list2 = Order::where('delivery_type', OrderEnum::DELIVERY_TYPE_SELF)
  43. ->where('pay_status', 1)
  44. ->where('pay_way', PayEnum::WECHAT_PAY)
  45. ->where('wechat_mini_express_sync', 0)
  46. ->where('order_status', 'in', [ OrderEnum::ORDER_STATUS_DELIVERY, OrderEnum::ORDER_STATUS_GOODS, OrderEnum::ORDER_STATUS_COMPLETE ])
  47. ->limit(20)
  48. ->order('id desc')
  49. ->select()->toArray();
  50. // 虚拟发货
  51. $list3 = Order::where('delivery_type', OrderEnum::DELIVERY_TYPE_VIRTUAL)
  52. ->where('pay_status', 1)
  53. ->where('pay_way', PayEnum::WECHAT_PAY)
  54. ->where('wechat_mini_express_sync', 0)
  55. ->where('order_status', 'in', [ OrderEnum::ORDER_STATUS_GOODS, OrderEnum::ORDER_STATUS_COMPLETE ])
  56. ->limit(20)
  57. ->order('id desc')
  58. ->select()->toArray();
  59. // dump([ $list, $list2, $list3 ]);
  60. foreach ([ $list, $list2, $list3 ] as $items) {
  61. foreach ($items as $item) {
  62. WechatMiniExpressSendSyncServer::_sync_order($item);
  63. }
  64. }
  65. }
  66. private static function user_recharge()
  67. {
  68. $list = RechargeOrder::where('pay_status', 1)
  69. ->where('pay_way', PayEnum::WECHAT_PAY)
  70. ->where('wechat_mini_express_sync', 0)
  71. ->limit(60)
  72. ->order('id desc')
  73. ->select()->toArray();
  74. // dump($list);
  75. foreach ($list as $item) {
  76. WechatMiniExpressSendSyncServer::_sync_recharge($item);
  77. }
  78. }
  79. }