Commit c429018f authored by fuyunnan's avatar fuyunnan

给生产提交rpc 接口总共7个

parent 7198546e
...@@ -36,4 +36,80 @@ interface StoreMaterialServiceInterface ...@@ -36,4 +36,80 @@ interface StoreMaterialServiceInterface
* Date: 2020/7/6 * Date: 2020/7/6
*/ */
public function createMaterialWarehousing(array $attributes): array; public function createMaterialWarehousing(array $attributes): array;
/**
* description:批量创建入库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public function createBatchMaterialWarehousing($attributes): array;
/**
* description:批量创建出库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public function createBatchExMaterialWarehouse($attributes): array;
/**
* description:批量修改入库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public function updateBatchMaterialWarehousing($attributes): array;
/**
* description:批量修改出库单
* author: fuyunnan
* @param
* @return array
* @throws
* Date: 2020/10/31
*/
public function updateBatchExMaterialWarehouse($attributes): array;
/**
* description:通过原料id数组获取库存列表 给订单系统查询的接口 返回当前原料分组后的库存
* author: fuyunnan
* @param array $ids 原料ids 数组
* @param int $wareId 仓库id
* @return array
* @throws
* Date: 2020/7/27
*/
public function getGroupMaterialStock($ids, $wareId = 0): array;
/**
* description:批量查看入库单信息
* author: fuyunnan
* @param array $ids 入库单ids数组
* @param array $relations 关联关系 ['material_warehousing_order_materials']
* @return array
* @throws
* Date: 2020/10/31
*/
public function showBatchWarehousing($ids, $relations = []): array;
/**
* description:批量查看出库单信息
* author: fuyunnan
* @param array $ids 出库单ids数组
* @param array $relations 关联关系 ['material_ex_warehouse_order_materials']
* @return array
* @throws
* Date: 2020/10/31
*/
public function showBatchExeWarehouse($ids, $relations = []): 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