|
|
|
@ -111,12 +111,12 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(basicCorpEntity.getName());
|
|
|
|
|
} else {
|
|
|
|
|
String msg = "查询单据对应的第三方往来单位信息异常";
|
|
|
|
|
log.error(msg);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg);
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
//内部科室
|
|
|
|
|
AuthWarehouseEntity warehouseEntity = authWarehouseDao.selectOne(new LambdaQueryWrapper<AuthWarehouseEntity>().eq(AuthWarehouseEntity::getCode, udiwmsOrderRequest.getCorpId()));
|
|
|
|
|
AuthWarehouseEntity warehouseEntity = authWarehouseDao.selectOne(new LambdaQueryWrapper<AuthWarehouseEntity>().eq(AuthWarehouseEntity::getCode, orderEntity.getFromInvCode()));
|
|
|
|
|
try {
|
|
|
|
|
//根据第三方系统标识,获取对应字段的值
|
|
|
|
|
ThrInvWarehouseEntity thrInvWarehouseEntity = thrInvWarehouseDao.selectOne(new LambdaQueryWrapper<ThrInvWarehouseEntity>()
|
|
|
|
@ -126,7 +126,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(thrInvWarehouseEntity.getName());
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
String msg = "查询单据对应往来单位的第三方仓库信息异常";
|
|
|
|
|
log.error(msg, e);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg + ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -139,7 +139,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
udiwmsOrderRequest.setCorpName(basicCorpEntity.getName());
|
|
|
|
|
} else {
|
|
|
|
|
String msg = "查询单据对应的第三方往来单位信息异常";
|
|
|
|
|
log.error(msg);
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + msg);
|
|
|
|
|
return ResultVOUtils.error(500, msg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -192,7 +192,7 @@ public class PtxhyyClient extends CommonHttpClient {
|
|
|
|
|
return ResultVOUtils.error(500, "该单据无创建人!");
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
log.info("查询操作人异常", ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
log.error("----单据提交-----" + orderEntity.getBillNo() + "查询操作人异常", ExceptionUtil.stacktraceToString(e));
|
|
|
|
|
userName = getUserName(orderEntity);
|
|
|
|
|
}
|
|
|
|
|
PtxhyyOrderRequest ptxhyyOrderRequest = PtxhyyOrderRequest
|
|
|
|
|