[2133][1508] #484
@ -1369,7 +1369,8 @@ public class EstimateService {
|
||||
|
||||
// file Name 명이 없는경우
|
||||
if (estimateRequest.getFileName() == null || "".equals(estimateRequest.getFileName())) {
|
||||
estimateRequest.setFileName(estimateResponse.getObjectNo() + "_"
|
||||
estimateRequest.setFileName(StringUtils.defaultString(estimateResponse.getObjectNo()) + "_"
|
||||
+ StringUtils.defaultString(estimateResponse.getPlanNo()) + "_"
|
||||
+ new SimpleDateFormat("yyyyMMdd").format(new Date()));
|
||||
}
|
||||
|
||||
|
||||
@ -2503,7 +2503,9 @@ public class PwrGnrSimService {
|
||||
// file Name 명이 없는경우
|
||||
if (estimateRequest.getFileName() == null || "".equals(estimateRequest.getFileName())) {
|
||||
estimateRequest.setFileName(
|
||||
estimateResponse.getObjectNo()
|
||||
StringUtils.defaultString(estimateResponse.getObjectNo())
|
||||
+ "_"
|
||||
+ StringUtils.defaultString(estimateResponse.getPlanNo())
|
||||
+ "_"
|
||||
+ new SimpleDateFormat("yyyyMMdd").format(new Date()));
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user