Commit 06fde7e0 authored by 秦俊坤's avatar 秦俊坤

新采购:仓库新增继续入库接口

parent afe57c02
......@@ -30,4 +30,21 @@ interface StorePurchaseServiceInterface
* @throws
*/
public function createReturns(array $params): array;
/**
* 继续入库
* [
* 'purchase_no' => '', //采购单号(必填)
* 'batch_no' => '', //批次号(必填)
* 'extra' => [], //后续扩展使用可以,非必填
* ]
* @param array $params
* @return array
* [
'msg' => '退货成功',
'code'=> 200, //响应码
'data' => [] //返回的数据
];
*/
public function continueWarehousing(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