37 lines
903 B
Java
Raw Normal View History

2025-03-10 13:46:51 +08:00
package com.cim.idm.service;
import com.alibaba.fastjson.JSONArray;
import com.cim.idm.utils.AjaxResult;
2025-03-24 08:41:44 +08:00
import org.springframework.transaction.annotation.Transactional;
2025-03-10 13:46:51 +08:00
public interface MESToWMSService {
/**
* 接收MES请求物料消耗请求
* @param in
* @return
*/
AjaxResult materialConsume_Request(JSONArray in) throws Exception;
/**
* 接收MES请求物料出库请求
* @param in
* @return
*/
AjaxResult materialOutByMES(JSONArray in) throws Exception;
/**
* 接收MES请求物料取消入库请求
* @param in
* @return
*/
AjaxResult cancelShipByMES(JSONArray in);
2025-03-24 08:41:44 +08:00
@Transactional
AjaxResult sapcprkUndo(String undoId, String user) throws Exception;
2025-03-10 13:46:51 +08:00
/**
* 接收MES请求物料入库请求
* @param in
* @return
*/
AjaxResult shipByMES(JSONArray in) throws Exception;
}