- 결과내재검색
+ 동적 조회조건
@@ -461,7 +461,7 @@ const gridColumns = [
sortable: false,
align: 'center',
formatter({value}) {
- return (new CodeFormat(ComboCodeData.crdnRegSeCd)).format(value);
+ return (new CommonCodes(ComboCodeData.crdnRegSeCd)).value(value);
}
},
{
diff --git a/src/main/webapp/WEB-INF/jsp/include/tail.jsp b/src/main/webapp/WEB-INF/jsp/include/tail.jsp
index 8152247e..91fbb202 100644
--- a/src/main/webapp/WEB-INF/jsp/include/tail.jsp
+++ b/src/main/webapp/WEB-INF/jsp/include/tail.jsp
@@ -32,7 +32,6 @@
">
">
">
-">
?${ver}">
">
?${ver}">
diff --git a/src/main/webapp/resources/js/base/base-fims.js b/src/main/webapp/resources/js/base/base-fims.js
index f70e6f24..60b5d346 100644
--- a/src/main/webapp/resources/js/base/base-fims.js
+++ b/src/main/webapp/resources/js/base/base-fims.js
@@ -48,7 +48,7 @@ class FimsFormFields extends FormFields {
value = dateFormat.format(value);
break;
case 'time' :
- value = StrTimeFormat.format(value);
+ value = timeFormat.format(value);
break;
case 'number' :
value = numberFormat.format(value);
diff --git a/src/main/webapp/resources/js/base/dataset-fims.js b/src/main/webapp/resources/js/base/dataset-fims.js
deleted file mode 100644
index 6d091956..00000000
--- a/src/main/webapp/resources/js/base/dataset-fims.js
+++ /dev/null
@@ -1,30 +0,0 @@
-
-const StrTimeFormat= {
- format(value){
- if(value == null || value.isBlank()) return value;
-
- let srcDate = value.replace(/\-|\s|\:|\./g,'');
- if(srcDate.length >= 6) {
- return srcDate.substring(0, 2)+":"+srcDate.substring(2, 4)+":"+srcDate.substring(4, 6);
- }else{
- return srcDate;
- }
- }
-}
-
-class CodeFormat {
- _codeList;
- constructor(codeList) {
- this._codeList = codeList;
- }
-
- format(value) {
- let txt = "";
- for (let i=0; i