dev #33

Merged
ysCha merged 5 commits from dev into dev-deploy 2025-05-29 16:11:39 +09:00
2 changed files with 11 additions and 8 deletions

View File

@ -336,16 +336,19 @@ BoardResponse boardResponse = null;
/* [1]. QSP API (url + fileNo) Setting */ /* [1]. QSP API (url + fileNo) Setting */
String url = null; String url = null;
if("NO".equals(zipYn)) { if("NO".equals(zipYn)) {
url = QSP_API_URL + "/api/file/downloadFile2"; url = QSP_API_URL + "/api/file/downloadFile2?encodeFileNo=" + keyNo;
}else{ }else{
url = QSP_API_URL + "/api/file/downloadFile"; url = QSP_API_URL + "/api/file/downloadFile";
}
if ("Y".equals(zipYn)) { if ("Y".equals(zipYn)) {
url += "?noticeNo=" + keyNo; url += "?noticeNo=" + keyNo;
} else { } else {
url += "?fileNo=" + keyNo; url += "?fileNo=" + keyNo;
} }
}
/* [2]. QSP API CALL -> Response */ /* [2]. QSP API CALL -> Response */
Map<String, String> result = new HashMap<String, String>(); Map<String, String> result = new HashMap<String, String>();

View File

@ -10,7 +10,7 @@ spring:
jdbc-url: jdbc:log4jdbc:sqlserver://1.248.227.176:1433;databaseName=NEWPVCAD;encrypt=true;trustServerCertificate=true jdbc-url: jdbc:log4jdbc:sqlserver://1.248.227.176:1433;databaseName=NEWPVCAD;encrypt=true;trustServerCertificate=true
password: ENC(W7owprYnvf7vqwO6Piw4dHfVBCSxE4Ck) password: ENC(W7owprYnvf7vqwO6Piw4dHfVBCSxE4Ck)
#한화 개발계 DB #한화 개발계 DB
#jdbc-url: jdbc:log4jdbc:sqlserver://192.168.200.220:1433;databaseName=NEWPVCAD;encrypt=false;trustServerCertificate=false #jdbc-url: jdbc:log4jdbc:sqlserver://124.35.22.21:1433;databaseName=NEWPVCAD;encrypt=false;trustServerCertificate=false
#password: ENC(Zc3J45rtPR/uQDeDOcrnF/iGLlU6U3y6) #password: ENC(Zc3J45rtPR/uQDeDOcrnF/iGLlU6U3y6)
username: pvDBuser username: pvDBuser
maximum-pool-size: 4 maximum-pool-size: 4
@ -64,7 +64,7 @@ file:
root.path: /home/development/public/files root.path: /home/development/public/files
ini.root.path: /home/development/public/files/NewEstimate ini.root.path: /home/development/public/files/NewEstimate
ini.base.filename: 料金シミュレーション.ini ini.base.filename: 料金シミュレーション.ini
ini.drawing.img.path: https://files.hanasys.jp/Drawing ini.drawing.img.path: /home/development/public/files/NewEstimate/Drawing
front: front:
url: http://1.248.227.176:3000 url: http://1.248.227.176:3000