Commit 783c5ecc authored by DESKTOP-PVAUUNL\Administrator's avatar DESKTOP-PVAUUNL\Administrator

Merge remote-tracking branch 'origin/fuyunnan'

parents 9040d1a5 9212a7a3
...@@ -22,4 +22,36 @@ interface DispatchPlanServiceInterface ...@@ -22,4 +22,36 @@ interface DispatchPlanServiceInterface
* @return array * @return array
*/ */
public function listDispatchPlans(array $conditions, bool $isPage = true): array; public function listDispatchPlans(array $conditions, bool $isPage = true): array;
/**
* description:获取退税任务列表
* author: fuyunnan
* @param array $conditions
* Date: 2020/6/13
* @return array
*/
public function listRefundTasks(array $conditions) : array;
/**
* description:新建退税单 获取底部产品列表
* author: fuyunnan
* @param array $request 请求参数
* Date: 2020/6/13
* @return array
*/
public function listRefundProducts(array $request) :array;
/**
* description:删除退税任务
* author: fuyunnan
* @param int $id 主键
* Date: 2020/6/13
* @return int
*/
public function delete($id) :int;
} }
...@@ -10,5 +10,13 @@ namespace Meibuyu\Micro\Service\Interfaces; ...@@ -10,5 +10,13 @@ namespace Meibuyu\Micro\Service\Interfaces;
interface StoreServiceInterface interface StoreServiceInterface
{ {
// /**
* description:检查仓库是否存在库存
* author: fuyunnan
* @param int $warehouseId 仓库id
* @param array $productIds 子产品id数组
* Date: 2020/6/12
* @return array
*/
public function checkStock($warehouseId, $productIds): 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