setDescription('上报处方平台商品订单'); } /** * @throws ContainerExceptionInterface * @throws NotFoundExceptionInterface */ public function handle() { $this->line("上报处方平台商品订单开始"); try { // 获取可上报商品订单 $order_product_ids = $this->getExecProductOrder(); if (empty($order_product_ids)){ $this->line("上报处方平台商品订单结束,无可上报的商品订单"); return; } // 获取缓存 $redis = $this->container->get(Redis::class); } catch (\Exception $e) { $this->line("上报处方平台商品订单失败:" . $e->getMessage()); return; } foreach ($order_product_ids as $item){ Db::beginTransaction(); $redis_key = "ReportPreProductOrder" . $item['order_product_id']; try { $redis_value = $redis->get($redis_key); if(!empty($redis_value)){ // 超出最大执行次数 if ($redis_value > 2){ // 存储上报失败 $this->savaReportFail($item['order_product_id']); // 退款 $OrderProductService = new OrderProductService(); $OrderProductService->OrderProductRefund($item['order_product_id'],"药品订单退款"); } } // 上报处方平台 $orderPrescriptionService = new OrderPrescriptionService(); $orderPrescriptionService->reportPrescription($item['order_product_id']); // 存储上报成功 $this->savaReportSuccess($item['order_product_id']); // 清空缓存 $redis->del($redis_key); Db::commit(); } catch (\Exception $e) { Db::rollBack(); // 记录失败次数 $redis->incr($redis_key); $this->line("商品订单上报处方平台失败:商品单号" . $item['order_product_id'] . " 失败原因:" . $e->getMessage()); $this->savaReportFail($item['order_product_id'],$e->getMessage()); } $this->line("商品订单上报处方平台成功:商品单号" . $item['order_product_id']); } } /** * 获取可上报商品订单 * @return array */ protected function getExecProductOrder(): array { $params = array(); $params['order_product_status'] = 2; // 订单状态(1:待支付 2:待发货 3:已发货 4:已签收 5:已取消) $params['pay_status'] = 2; // 支付状态(1:未支付 2:已支付 3:支付中 4:支付失败 5:支付超时 6:支付关闭 7:已撤销 8:转入退款) $params['refund_status'] = 0; // 商品订单退款状态(0:无退款 1:申请退款 2:退款中 3:退款成功 4:拒绝退款 5:退款关闭 6:退款异常) $params['report_pre_status'] = 0; // 上报处方平台状态(0:未上报 1:已上报 2:上报失败)) $fields = [ 'order_product_id', ]; $order_product = OrderProduct::getList($params,$fields); if (empty($order_product)){ return []; } return $order_product->toArray(); } /** * 存储上报失败 * @param string $order_product_id 商品订单id * @param string $report_pre_fail_reason 上报失败原因 * @return void */ protected function savaReportFail(string $order_product_id,string $report_pre_fail_reason = ""): void { $params = array(); $params['order_product_id'] = $order_product_id; $data = array(); $data['report_pre_status'] = 2; // 上报处方平台状态(0:未上报 1:已上报 2:上报失败)) if (!empty($report_pre_fail_reason)){ $data['report_pre_fail_reason'] = $report_pre_fail_reason; } OrderProduct::edit($params,$data); } /** * 存储上报成功 * @param string $order_product_id 商品订单id * @return void */ protected function savaReportSuccess(string $order_product_id): void { $params = array(); $params['order_product_id'] = $order_product_id; $data = array(); $data['report_pre_status'] = 1; // 上报处方平台状态(0:未上报 1:已上报 2:上报失败)) $data['report_pre_time'] = date('Y-m-d H:i:s',time()); // 上报处方平台时间 $data['report_pre_fail_reason'] = ""; // 上报失败原因 置为空 OrderProduct::edit($params,$data); } }