diff --git a/WebContent/cm/common/main.xml b/WebContent/cm/common/main.xml
index 77d2de3..47ec825 100644
--- a/WebContent/cm/common/main.xml
+++ b/WebContent/cm/common/main.xml
@@ -118,6 +118,7 @@
var rsCode = com.getResultCode(e);
if (rsCode == "S") {
+
scwin.setReleaseInfo(e.responseJSON.dlt_release);
}
};
@@ -131,24 +132,29 @@
* @since 2016.08.26
*/
scwin.setReleaseInfo = function(rsArr) {
- if (typeof rsArr[0] !== "undefined") {
- var title = rsArr[0].TITLE;
- txt_releaseTitle1.setValue(txt_releaseTitle1.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
- txt_createdDate1.setValue(rsArr[0].CREATED_DATE);
- txt_title1.setValue(title.substr(1, title.indexOf("]")-1));
- txt_content1.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
- }
-
- if (typeof rsArr[1] !== "undefined") {
- var title = rsArr[1].TITLE;
- txt_releaseTitle2.setValue(txt_releaseTitle2.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
- txt_createdDate2.setValue(rsArr[1].CREATED_DATE);
- txt_title2.setValue(title.substr(1, title.indexOf("]")-1));
- txt_content2.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
+ if(rsArr != null && rsArr.length > 0){
+ if (typeof rsArr[0] !== "undefined") {
+ var title = rsArr[0].TITLE;
+ txt_releaseTitle1.setValue(txt_releaseTitle1.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
+ txt_createdDate1.setValue(rsArr[0].CREATED_DATE);
+ txt_title1.setValue(title.substr(1, title.indexOf("]")-1));
+ txt_content1.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
+ }
+
+ if (typeof rsArr[1] !== "undefined") {
+ var title = rsArr[1].TITLE;
+ txt_releaseTitle2.setValue(txt_releaseTitle2.getValue() + "[" + title.substr(1, title.indexOf("]")-1) + "]");
+ txt_createdDate2.setValue(rsArr[1].CREATED_DATE);
+ txt_title2.setValue(title.substr(1, title.indexOf("]")-1));
+ txt_content2.setValue(title.substr(title.indexOf("]")+1, 36) + "..");
+ }
}
txt_engineVersion.setValue(WebSquare.text.BASE64Decode(WebSquare.ver));
- txt_templateVersion.setValue(rsArr[0].TITLE.substr(1, rsArr[0].TITLE.indexOf("]")-1));
+
+ if(rsArr != null && rsArr.length > 0){
+ txt_templateVersion.setValue(rsArr[0].TITLE.substr(1, rsArr[0].TITLE.indexOf("]")-1));
+ }
};
]]>
diff --git a/WebContent/ui/cfs/standard/SD017M01.xml b/WebContent/ui/cfs/standard/SD017M01.xml
new file mode 100644
index 0000000..4038339
--- /dev/null
+++ b/WebContent/ui/cfs/standard/SD017M01.xml
@@ -0,0 +1,192 @@
+
+
+
+
+ DEFAULT
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/cfs/standard/dao/StandarFreePlDao.java b/src/cfs/standard/dao/StandarFreePlDao.java
index 17866ce..e7cec69 100644
--- a/src/cfs/standard/dao/StandarFreePlDao.java
+++ b/src/cfs/standard/dao/StandarFreePlDao.java
@@ -20,6 +20,8 @@ public interface StandarFreePlDao {
public void insertStandardFreeCarNo(StandardFreePlVO StandarFreePlVO);
- public void updateStandardFreeCarNo(StandardFreePlVO StandarFreePlVO);
+ public void updateStandardFreeCarNo(StandardFreePlVO StandarFreePlVO);
+
+ public List findMstChgFlagList(String str);
}
diff --git a/src/cfs/standard/dao/mapper/StandardFreePl_mapper.xml b/src/cfs/standard/dao/mapper/StandardFreePl_mapper.xml
index 9355816..15768b9 100644
--- a/src/cfs/standard/dao/mapper/StandardFreePl_mapper.xml
+++ b/src/cfs/standard/dao/mapper/StandardFreePl_mapper.xml
@@ -53,6 +53,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+