|
@@ -591,10 +591,8 @@ class Order extends Base
|
|
|
$express_name = $this->request->post('express_name', '');
|
|
|
$express_code = $this->request->post('express_code', '');
|
|
|
$express_no = $this->request->post('express_no', '');
|
|
|
- return $this->success('发货成功');
|
|
|
list($orderExpress, $needSubscribe) = $this->handleDeliveryAfter($order, $item_lists, $orderExpress, $express_name, $express_code, $express_no);
|
|
|
-
|
|
|
- if ($needSubscribe) {
|
|
|
+ if ($needSubscribe) {
|
|
|
$this->subscribeExpressInfo($express_code, $express_no, $orderExpress, $order);
|
|
|
}
|
|
|
|