Merge branch 'master' of http://hylee@vcs.iten.co.kr:9999/hylee/mjon_git into 4812-hylee

This commit is contained in:
hehihoho3@gmail.com 2025-01-06 16:11:47 +09:00
commit 20ae689859

View File

@ -222,9 +222,9 @@ function excelExportVarAjax(){
function excelAddVarAjax(){
var varList = $("#excelTemplateContent").val().match(/#\{([^}]+)\}/g);
var varListSize = new Set(varList);
var form = document.excelVarFileForm;
form.excelVarCnt.value = varList.length;
form.excelVarCnt.value = varListSize.size;
form.excelVarList.value = varList;
var data = new FormData(form);