Commit 3bf5001d authored by 秦俊坤's avatar 秦俊坤

新采购系统:删除了多余的 createReturns 接口

parent 06fde7e0
...@@ -10,26 +10,6 @@ namespace Meibuyu\Rpc\Service\Interfaces\Store; ...@@ -10,26 +10,6 @@ namespace Meibuyu\Rpc\Service\Interfaces\Store;
interface StorePurchaseServiceInterface interface StorePurchaseServiceInterface
{ {
/**
* 创建对应的退货单, $params 数组结构如下:
* [
'source_type' => '', //来源类型,默认为采购
'source_no' => '', //来源单号,比如来源是采购就是采购单号
'batch_no' => '', //对应的批次号
'sku' => '', //sku
'purchased_cnt' => 0, //购买量
'returns_cnt' => 0, //退货数量
];
* @param array $params
* @return array
* [
'msg' => '退货成功',
'code'=> 200, //响应码
'data' => ['id' => 退货 ID] //返回的数据,id 为对应的退货 ID
];
* @throws
*/
public function createReturns(array $params): 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