Commit 9173672e authored by 姜克保's avatar 姜克保

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

parents d5e318ab 926258ca
...@@ -49,7 +49,7 @@ interface PurchaseStockServiceInterface ...@@ -49,7 +49,7 @@ interface PurchaseStockServiceInterface
/** /**
* 已完成记录rpc * 已完成记录rpc 已弃用
* *
{ {
"batch_no": "batch_no", "batch_no": "batch_no",
...@@ -82,4 +82,10 @@ interface PurchaseStockServiceInterface ...@@ -82,4 +82,10 @@ interface PurchaseStockServiceInterface
public function refundOperation($post):array; public function refundOperation($post):array;
/**
* 获取采购在途的数量总和
* @return mixed
*/
public function getShippingCount();
} }
\ No newline at end of file
...@@ -12,10 +12,19 @@ interface SyncAliexpressServiceInterface ...@@ -12,10 +12,19 @@ interface SyncAliexpressServiceInterface
{ {
/** /**
* @param integer $siteId * @param integer $siteId
* @param integer $status
* @param array $orderIds * @param array $orderIds
* @return mixed * @return mixed
*/ */
public function syncOrders($siteId, $orderIds); public function syncOrders($siteId, $status, $orderIds);
/**
* @param integer $siteId
* @param array $orderIds
* @param integer $status
* @return mixed
*/
public function updateOrderStatus($siteId, $orderIds, $status);
/** /**
* @param integer $siteId * @param integer $siteId
...@@ -23,4 +32,12 @@ interface SyncAliexpressServiceInterface ...@@ -23,4 +32,12 @@ interface SyncAliexpressServiceInterface
* @return mixed * @return mixed
*/ */
public function syncProducts($siteId, $productIds); public function syncProducts($siteId, $productIds);
/**
* @param integer $siteId
* @param array $productIds
* @param integer $status
* @return mixed
*/
public function updateProductStatus($siteId, $productIds, $status);
} }
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