Commit d35cd658 authored by Liu lu's avatar Liu lu

通过最小订单号批量获取原始订单号

parents 83099d3c 7d10a05d
...@@ -127,4 +127,11 @@ interface FactoryServiceInterface ...@@ -127,4 +127,11 @@ interface FactoryServiceInterface
* @return array * @return array
*/ */
public function getProductionListByOrderNo($orderNoArr, $columns =['*'],$with=[]); public function getProductionListByOrderNo($orderNoArr, $columns =['*'],$with=[]);
/**
* Notes: 少货处理
* User: carlos
* DateTime: 2022/11/21 19:03
*/
public function shortageProcess($delivery_no, $shortageProduct);
} }
\ No newline at end of file
...@@ -169,4 +169,27 @@ interface ProductionServiceInterface ...@@ -169,4 +169,27 @@ interface ProductionServiceInterface
*/ */
public function confirmDelivery($params); public function confirmDelivery($params);
/**
* Notes: 取消发货订单
* User: carlos
* DateTime: 2022/11/22 9:20
* @param $delivery_no
*/
public function cancelDelivery($delivery_no);
/**
* Notes: 创建生产异常单
* User: carlos
* DateTime: 2022/11/21 16:36
*/
public function createProductionException($params);
/**
* Notes: 返修退回
* User: carlos
* DateTime: 2022/11/22 13:58
*/
public function repairReturn($params);
} }
...@@ -330,4 +330,20 @@ interface StoreServiceInterface ...@@ -330,4 +330,20 @@ interface StoreServiceInterface
* @return array * @return array
*/ */
public function stockUpDeliveryDispatched(array $params): array; public function stockUpDeliveryDispatched(array $params): array;
/**
* 取消备货发货记录
* @param array $params
* @return array
*/
public function cancelStockUpDelivery(array $params): array;
/**
* 备货相关异常接收对应的指令
* @param $commandType
* @param $payload
* @return mixed
*/
public function receiveCommand4StockUp($commandType, $payload);
} }
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