Commit 7513987b authored by  林继鑫's avatar 林继鑫

Merge branch 'develop' of https://git.huaperfect.com/without_auth/meibuyu-rpc into develop

parents d9cf13ae a3bb2266
...@@ -41,4 +41,13 @@ interface FlowServiceInterface ...@@ -41,4 +41,13 @@ interface FlowServiceInterface
* @param $params * @param $params
*/ */
public function getApprovalDetail($params); public function getApprovalDetail($params);
/**
* Notes: 取消审批
* User: carlos
* DateTime: 2022/11/24 18:16
* @param $params
* @return mixed
*/
public function cancelApproval($params);
} }
\ No newline at end of file
...@@ -117,4 +117,30 @@ interface FactoryServiceInterface ...@@ -117,4 +117,30 @@ interface FactoryServiceInterface
* DateTime: 2022/11/21 14:14 * DateTime: 2022/11/21 14:14
*/ */
public function confirmDelivery($params); public function confirmDelivery($params);
/**
* Notes: 通过最小订单号批量获取原始订单号
* @param $orderNoArr
* @param string[] $columns
* @param $with[] $with
* @return array
*/
public function getProductionListByOrderNo($orderNoArr, $columns =['*'],$with=[]);
/**
* Notes: 少货处理
* User: carlos
* DateTime: 2022/11/21 19:03
*/
public function shortageProcess($delivery_no, $shortageProduct);
/**
* Notes: 退回返修
* User: carlos
* DateTime: 2022/11/23 11:43
* @param $params
*/
public function repairReturn($delivery_no, $repairProducts);
} }
\ 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