From 68d34c5863b827759395dd738198e641d96babd6 Mon Sep 17 00:00:00 2001 From: thkim Date: Tue, 10 Feb 2026 16:50:09 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EA=B8=B0=EC=97=85=20=EC=82=AC=EC=9A=A9?= =?UTF-8?q?=EC=9E=90=20=ED=94=84=EB=A1=9C=EC=A0=9D=ED=8A=B8=EB=AA=A9?= =?UTF-8?q?=EB=A1=9D=20=EB=8F=84=EC=9B=80=EB=A7=90=20=EC=97=85=EB=8D=B0?= =?UTF-8?q?=EC=9D=B4=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/WEB-INF/views/web/index.jsp | 30 ++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/WEB-INF/views/web/index.jsp b/src/main/webapp/WEB-INF/views/web/index.jsp index 4df06ad2..f47590fc 100644 --- a/src/main/webapp/WEB-INF/views/web/index.jsp +++ b/src/main/webapp/WEB-INF/views/web/index.jsp @@ -166,10 +166,26 @@ function kendoGrid() { dataSource : gridData, columns: [ { field: "rowNumber", width: 50, title: "순번", template: "" }, - {field: "reqCompany", width: 180, title: "배정 발주기관", template: function (data) { return data.lastDistrict || data.gsDistrict || data.gmDistrict || data.glDistrict || ""; }, attributes: { style: "text-align: left" }}, + { + field: "reqCompany", + width: 180, + title: "배정 발주기관", + headerAttributes: { + "data-target": "reqCompany" + }, + template: function (data) { + return data.lastDistrict || data.gsDistrict || data.gmDistrict || data.glDistrict || ""; + }, + attributes: { + style: "text-align: left" + } + }, { field: "projectName", title: "프로젝트명", + headerAttributes: { + "data-target": "projectName" + }, template: function(data){ var param = "'"+data.reportType+"','"+data.projectCode+"','"+data.state+"'"; let myStyle = ""; @@ -258,6 +274,18 @@ function fn_help_tour(){ title:'Step 2', content: '프로젝트 목록이 조회 되며, 프로젝트명을 클릭하시면 해당 프로젝트를 조회 또는 입력하실 수 있습니다. ', target:'grid' + },{ + title:'Step 3', + content: '프로젝트는 두가지로 구분됩니다.

일반 프로젝트: 기업사용자가 생성한 일반 프로젝트
발주기관과 연결된 프로젝트: 발주기관에서 생성한 프로젝트', + target:'reqCompany' + },{ + title:'Step 4', + content: '공란이면 일반 프로젝트이며, 발주기관과 연결된 프로젝트인 경우 발주기관 명이 표시됩니다. 이 경우, 프로젝트명 수정 없이 입력바랍니다.', + target:'reqCompany' + },{ + title:'Step 5', + content: '프로젝트명 검정색: 일반 프로젝트

프로젝트명 파란색: 기업사용자가 프로젝트 생성 시, 발주기관 프로젝트를 선택한 경우.
기업사용자☞발주기관

프로젝트명 하늘색: 발주기관사용자가 기업사용자에게 할당한 프로젝트.
발주기관 사용자☞기업 사용자', + target:'projectName' }], }); return false;