21 lines
572 B
Java
21 lines
572 B
Java
package com.cim.idm.service;
|
|
|
|
import com.cim.idm.framework.data.EventInfo;
|
|
import com.cim.idm.wmsextend.generic.errorHandler.CustomException;
|
|
|
|
import java.text.ParseException;
|
|
|
|
/**
|
|
* 成品入库接口类
|
|
* @author ZXYGY17
|
|
*
|
|
*/
|
|
public interface FGStockInService {
|
|
|
|
public void CreateMaterialReceiveRequestAct(EventInfo eventInfo,
|
|
String siteName, String receiveRequestName,
|
|
String ReceiveRequestDetailName, String makeDate,
|
|
String receiveActNo, String actType, String receiveQuantity,
|
|
String subMaterialSpecName) throws CustomException, ParseException;
|
|
}
|