ERP物料批次记录日志

master
zpl 3 years ago
parent 0a954ac786
commit a0447d45bc

@ -9,6 +9,8 @@ import com.foreverwin.mesnac.integration.service.ERPAPIWebService;
import com.foreverwin.mesnac.integration.service.IntegrationLogService; import com.foreverwin.mesnac.integration.service.IntegrationLogService;
import com.foreverwin.mesnac.integration.service.InterfaceService; import com.foreverwin.mesnac.integration.service.InterfaceService;
import com.foreverwin.modular.core.exception.BusinessException; import com.foreverwin.modular.core.exception.BusinessException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
@ -23,6 +25,8 @@ import java.util.UUID;
endpointInterface = "com.foreverwin.mesnac.integration.service.ERPAPIWebService") endpointInterface = "com.foreverwin.mesnac.integration.service.ERPAPIWebService")
public class ERPAPIWebServiceImpl implements ERPAPIWebService { public class ERPAPIWebServiceImpl implements ERPAPIWebService {
private static Logger logger = LoggerFactory.getLogger(ERPAPIWebServiceImpl.class);
@Autowired @Autowired
private InterfaceService interfaceService; private InterfaceService interfaceService;
@Autowired @Autowired
@ -194,6 +198,7 @@ public class ERPAPIWebServiceImpl implements ERPAPIWebService {
@Override @Override
public WebServiceResponse itemBatchReceive(ItemBatchReceiveRequest itemBatchReceiveRequest) { public WebServiceResponse itemBatchReceive(ItemBatchReceiveRequest itemBatchReceiveRequest) {
logger.error("ERP物料接受接口" + itemBatchReceiveRequest);
WebServiceResponse response = new WebServiceResponse(); WebServiceResponse response = new WebServiceResponse();
String site = null; String site = null;

Loading…
Cancel
Save