|
|
|
@ -16,24 +16,24 @@ import javax.jws.WebService;
|
|
|
|
|
@WebService(targetNamespace = "http://tempuri.org/")
|
|
|
|
|
public class DcsForEquipmentServer {
|
|
|
|
|
public static final Logger LOGGER = LoggerFactory.getLogger(DcsForEquipmentServer.class);
|
|
|
|
|
// @WebMethod(action = "GetConsoleItemCodeExt", operationName = "GetConsoleItemCodeExt")
|
|
|
|
|
// public String getConsoleItemCodeExt(@WebParam(name = "GetConsoleItemCodeExt") MesConsoleItemCodeExt mesConsoleItemCodeExt) {
|
|
|
|
|
// DcsForEquipmentServiceImpl bean = (DcsForEquipmentServiceImpl) SpringContextsUtil.getBean("DcsForEquipmentServiceImpl");
|
|
|
|
|
// String organizeCode = mesConsoleItemCodeExt.getOrganizeCode();
|
|
|
|
|
// String custCode = mesConsoleItemCodeExt.getCustCode();
|
|
|
|
|
// String assemblyLine = mesConsoleItemCodeExt.getAssemblyLine();
|
|
|
|
|
// String location = mesConsoleItemCodeExt.getLocation();
|
|
|
|
|
// String barcode = mesConsoleItemCodeExt.getBarcode();
|
|
|
|
|
// String custPlantCode = mesConsoleItemCodeExt.getCustPlantCode();
|
|
|
|
|
// return bean.doGetConsoleItemCode(organizeCode,barcode,custCode,custPlantCode,assemblyLine,location);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
@WebMethod(action = "GetConsoleItemCodeExt", operationName = "GetConsoleItemCodeExt")
|
|
|
|
|
public String getConsoleItemCodeExt(@WebParam(name = "organizeCode") String organizeCode, @WebParam(name = "custCode") String custCode,@WebParam(name = "assemblyLine")String assemblyLine,@WebParam(name = "location")String location,@WebParam(name = "barcode")String barcode,@WebParam(name = "custPlantCode")String custPlantCode) {
|
|
|
|
|
public String getConsoleItemCodeExt(@WebParam(name = "GetConsoleItemCodeExt") MesConsoleItemCodeExt mesConsoleItemCodeExt) {
|
|
|
|
|
DcsForEquipmentServiceImpl bean = (DcsForEquipmentServiceImpl) SpringContextsUtil.getBean("DcsForEquipmentServiceImpl");
|
|
|
|
|
String organizeCode = mesConsoleItemCodeExt.getOrganizeCode();
|
|
|
|
|
String custCode = mesConsoleItemCodeExt.getCustCode();
|
|
|
|
|
String assemblyLine = mesConsoleItemCodeExt.getAssemblyLine();
|
|
|
|
|
String location = mesConsoleItemCodeExt.getLocation();
|
|
|
|
|
String barcode = mesConsoleItemCodeExt.getBarcode();
|
|
|
|
|
String custPlantCode = mesConsoleItemCodeExt.getCustPlantCode();
|
|
|
|
|
return bean.doGetConsoleItemCode(organizeCode,barcode,custCode,custPlantCode,assemblyLine,location);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// @WebMethod(action = "GetConsoleItemCodeExt", operationName = "GetConsoleItemCodeExt")
|
|
|
|
|
// public String getConsoleItemCodeExt(@WebParam(name = "organizeCode") String organizeCode, @WebParam(name = "custCode") String custCode,@WebParam(name = "assemblyLine")String assemblyLine,@WebParam(name = "location")String location,@WebParam(name = "barcode")String barcode,@WebParam(name = "custPlantCode")String custPlantCode) {
|
|
|
|
|
// DcsForEquipmentServiceImpl bean = (DcsForEquipmentServiceImpl) SpringContextsUtil.getBean("DcsForEquipmentServiceImpl");
|
|
|
|
|
// return bean.doGetConsoleItemCode(organizeCode,barcode,custCode,custPlantCode,assemblyLine,location);
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@WebMethod(action = "FillConsoleResultExt", operationName = "FillConsoleResultExt")
|
|
|
|
|
public String getConsoleItemCodeExt(@WebParam(name = "FillConsoleResultExt") MesConsoleResultExt mesConsoleResultExt) {
|
|
|
|
|