Commit fbbe2050 authored by 王源's avatar 王源 🎧

Merge branch 'rpc/shopify' into develop

parents 25cfa57d ed6e5fc7
......@@ -8,6 +8,8 @@
namespace Meibuyu\Micro\Service\Interfaces\Product;
use Meibuyu\Micro\Exceptions\HttpResponseException;
interface ShopifyServiceInterface
{
......@@ -53,9 +55,12 @@ interface ShopifyServiceInterface
/**
* 为shopify订单创建发货记录
* @param int $orderId
* @param array $params https://shopify.dev/docs/admin-api/rest/reference/shipping-and-fulfillment/fulfillment#create-2020-07
* @param array $params
* 参数示例: https://shopify.dev/docs/admin-api/rest/reference/shipping-and-fulfillment/fulfillment#create-2020-07
* location_id不传会默认拿取系统有的数据,拿不到报错
* @param int $shopifySiteId
* @return mixed
* @throws HttpResponseException
* @throws \Exception
* @author Zero
*/
......
......@@ -227,5 +227,16 @@ interface StoreServiceInterface
* @throws
* Date: 2020/11/25
*/
public function autoSkuStock($data) :array;
public function autoSkuStock($data): array;
/**
* description:删除拣货中出库单
* author: fuyunnan
* @param array $sourceNo 来源单号
* @return int
* @throws
* Date: 2020/12/7
*/
public function delExOrderList($sourceNo): int;
}
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