Commit 96881bd5 authored by 王源's avatar 王源 🎧

Merge branch 'develop' into test

parents 2e8ad0d8 cac38355
......@@ -140,4 +140,12 @@ interface ProductServiceInterface
*/
public function reportPoints(array $columns = ['*']): array;
/**
* 通过产品id获取维护的所有尺码
* @param $id
* @return array
* @author Zero
*/
public function getSizesById($id): array;
}
......@@ -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
*/
......
......@@ -231,7 +231,7 @@ interface StoreServiceInterface
/**
* description:删除出库单或者出库单
* description:删除拣货中出库单
* author: fuyunnan
* @param array $sourceNo 来源单号
* @return 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