|
|
|
@ -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");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|