Commit 6823953c authored by Bob Lee Swagger's avatar Bob Lee Swagger

Merge branch 'develop' of http://git.huaperfect.com/without_auth/meibuyu-rpc into develop

parents c0cb37f4 5d9f9b29
...@@ -18,4 +18,12 @@ interface LogisticsServiceInterface ...@@ -18,4 +18,12 @@ interface LogisticsServiceInterface
* @return mixed * @return mixed
*/ */
public function logisticsInfo($logisticsNo); public function logisticsInfo($logisticsNo);
/**
* 通过物流单号,快递公司编号实时获取物流信息
* @param $logisticsNo
* @param $logisticsCode
* @return mixed
*/
public function track($logisticsNo, $logisticsCode);
} }
...@@ -122,4 +122,11 @@ interface SubOrderServiceInterface ...@@ -122,4 +122,11 @@ interface SubOrderServiceInterface
*/ */
public function purchaseDelete($data): bool; public function purchaseDelete($data): bool;
/**
* 通过子订单获取出库信息
* @param array $subOrderNos
* @return array (返回满足出库条件的子订单号以及出库数量 keyBy sub_order_no)
*/
public function isOutStockInfo(array $subOrderNos = []):array;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment