寄售实际入库单补单问题

dev
anthonywj 2 years ago
parent f06f280f39
commit 52e7c14328

@ -231,7 +231,7 @@ public class IoOrderResponse {
private Integer deliveryStatus;
private Integer processStatus;
private int inCodeStatus;
private Integer inCodeStatus;
private Integer allCout;

@ -41,8 +41,10 @@ import com.glxp.api.service.inout.*;
import com.glxp.api.service.inv.*;
import com.glxp.api.service.system.SyncUploadDataBustypeService;
import com.glxp.api.util.DateUtil;
import com.glxp.api.util.IntUtil;
import com.glxp.api.util.udi.UdiCalCountUtil;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.springframework.beans.BeanUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
@ -588,7 +590,7 @@ public class IoOrderServiceImpl implements IoOrderService {
&& StrUtil.isEmpty(orderEntity.getSupplementNo())
) {
if (orderEntity.getFromType() == ConstantStatus.FROM_UDISP) {
if (orderEntity.getOutChangeEnable()) {
if (IntUtil.value(orderEntity.getOutChangeEnable())) {
response.setEnableSupplementOrder(true);
}
} else
@ -597,6 +599,7 @@ public class IoOrderServiceImpl implements IoOrderService {
result.add(response);
} catch (Exception e) {
e.printStackTrace();
log.error(ExceptionUtils.getStackTrace(e));
log.error(orderEntity.getBillNo() + "平衡补单出错\n");
}

@ -3,9 +3,9 @@ server:
spring:
datasource:
driver-class-name: com.p6spy.engine.spy.P6SpyDriver
jdbc-url: jdbc:p6spy:mysql://192.168.0.66:3364/udi_spms_zzzyy?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
jdbc-url: jdbc:p6spy:mysql://127.0.0.1:3306/udi_spms_zyy?allowMultiQueries=true&serverTimezone=Asia/Shanghai&useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&allowPublicKeyRetrieval=true
username: root
password: Glxp@6066
password: 123456
hikari:
connection-timeout: 60000
maximum-pool-size: 60

Loading…
Cancel
Save