Commit 74265fc8 authored by 王源's avatar 王源 🎧

Merge branch 'production-rpc' into test

parents e591c267 4724b2bc
......@@ -8,10 +8,19 @@ interface ProductionServiceInterface
/**
* 结束备货计划
* @param $production_no
* @return mixed
* @return mixed|void
* @deprecated
* @author Zero
*/
public function stockUpTask($production_no);
/**
* 生产单批次发货入库回调
* @param string $production_no 生产单号
* @author Zero
*/
public function warehousingCallback(string $production_no);
/**
* 通过入库单id获取相关数据
* @param array $warehousingOrderIds 默认去重
......@@ -19,6 +28,14 @@ interface ProductionServiceInterface
*/
public function getInfoForWarehousingOrder(array $warehousingOrderIds);
/**
* 通过生产单号获取生产单工厂信息
* @param array $productionNoList 生产单号数组,默认去重
* @return array 'production_no' => ['factory_id' => 1, 'factory_name' => 'AL']
* @author Zero
*/
public function getFactoryByProductionNoList(array $productionNoList): array;
/**
* 查询备货计划中是否用过仓库子产品
* @param array $ids 仓库子产品id数组,默认去重
......
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