Browse Source

解决信息类导入,没有提供方处室问题

胡杰 1 year ago
parent
commit
7c92600991

+ 8 - 0
cn.com.taiji.system/src/main/java/cn/com/taiji/zhongxiao/web/TinfoClassController.java

@@ -3187,6 +3187,14 @@ public class TinfoClassController {
 
 		TinfoClassDto dto = tinfoClassService.getDefaultInfoByUserId(userInfo.getUserId());
 		model.addAttribute("dto", dto);
+
+		// thymeleaf 存在严重的lazy懒加载堆栈溢出bug,需要人工处理
+//		 Dept userdept = deptService.findById(userInfo.getDeptid());
+		String sql = "SELECT dept_id as id, creditno,dept_abbreviation,dept_desc,dept_index,dept_name as name,dept_property,dept_state,parent_id,pdeptids,xzqhcode,xzqhid,xzqhname,ywbmcode,ywbmid,ywbmname FROM deptinfo WHERE dept_id=?";
+		Map<String,Object> userdept = jdbcTemplate.queryForMap(sql, new Object[]{userInfo.getDeptid()});
+		Map<String,Object> parentDept = jdbcTemplate.queryForMap(sql, new Object[]{userdept.get("parent_id")});
+		model.addAttribute("userdept", userdept);
+		model.addAttribute("parentDept", parentDept);
 		return "thymeleaf/tinfoclass/tinfoclass_import";
 	}
 

+ 0 - 1
cn.com.taiji.system/src/main/resources/static/theme/tinfoclass/tinfoclass_add.js

@@ -638,7 +638,6 @@ function issharemode(sharetype){
 }
 
 function setDefaultInfoclassProvidebm(row) {
-	console.log(row);
 	// 此处逻辑复制自dept_choose.html 2024年01月31日09:28:03 hujie   移除识别parent
 	document.getElementById('providebmcode').value =row.id;
 	document.getElementById('providebmname').value =row.name;

+ 4 - 1
cn.com.taiji.system/src/main/resources/templates/thymeleaf/tinfoclass/dept_choose.html

@@ -62,7 +62,6 @@
     }
     function tijiaoInfo(rowindex){
     	var row=$("#deptlist").treegrid('find', rowindex);
-    	console.log(row);
     	if(type=='1'){
     		parent.document.getElementById('providecode').value =row.id;
     		parent.document.getElementById('providename').value =row.name;
@@ -70,6 +69,10 @@
     	else if(type=='2'){
     		 parent.document.getElementById('providebmcode').value =row.id;
         	  parent.document.getElementById('providebmname').value =row.name;
+            if(parent.document.getElementById('providename')!=undefined) {
+                parent.document.getElementById('providename').value =row.name;
+            }
+              parent.document.getElementById('providebmname').value =row.name;
         	  if(row.ywbmname!=""){
          		 parent.document.getElementById('ywbmname').value =row.ywbmname;
              	 parent.document.getElementById('ywbmcode').value =row.ywbmcode;

+ 96 - 53
cn.com.taiji.system/src/main/resources/templates/thymeleaf/tinfoclass/tinfoclass_import.html

@@ -40,13 +40,14 @@
                   <tr>
                      <th><font class="fontred">*</font>资源分类</th>
                      <td>
-                     <input type="text" name="infotypename" id="infotypename" class="input-normal input-wdl  " th:value="${dto.infotypename}" readonly="true"  placeholder="点击选择资源分类" /></td>
+                     <input type="text" name="infotypename" id="infotypename" class="input-normal input-wdl  " th:value="${dto.infotypename}" readonly="true"  placeholder="点击选择资源分类" />
+                     </td>
                           <input type="hidden" name="infotypeid" id="infotypeid" th:value="${dto.infotypeid}"/>
                           <input type="hidden" name="infotype" id="infotype" th:value="${dto.infotype}"/>
-                     <input type="hidden" name="creditno" id="creditno" th:value="${dto.creditno}" class="input-normal input-wdl"/>
                      <th><font class="fontred">*</font>提供方部门</th>
                      <td>
-                     	<input type="text" name="providebmname" th:value="${dto.providebmname}" placeholder="点击提供方部门" id="providebmname" readonly="true" class="input-normal input-wdl  " /><input th:value="${dto.providebmcode}" type="hidden" name="providebmcode" id="providebmcode" value=""/>
+                     	<input type="text" name="providebmname" th:value="${dto.providebmname}" placeholder="点击提供方部门" id="providebmname" readonly="true" class="input-normal input-wdl  " />
+                         <input th:value="${dto.providebmcode}" type="hidden" name="providebmcode" id="providebmcode" value=""/>
                      </td>
                      <input type="hidden" th:value="${dto.ywbmname}" name="ywbmname" id="ywbmname" class="input-normal input-wdl" />
                        <input type="hidden"  th:value="${dto.ywbmid}" name="ywbmid" id="ywbmid" value=""/>
@@ -57,11 +58,14 @@
                   </tr>
                    <tr>
                    <th><font class="fontred">*</font>社会信用代码</th>
-                       <td id="creditno_dis" th:text="${dto.creditno}"></td>
-                    <th><font class="fontred" >*</font>业务部门</th>
-                       <td id="ywbm_dis" th:text="${dto.ywbmname}"></td>
-                         
-                    </tr>
+                       <td>
+                           <input type="text" name="creditno" th:value="${dto.creditno}" id="creditno" readonly="true" class="input-normal input-wdl  " />
+                       </td>
+                    <th><font class="fontred" >*</font>提供方处室</th>
+                       <td>
+                           <input type="text" name="providename" th:value="${dto.providename}" id="providename" readonly="true" class="input-normal input-wdl  " />
+                       </td>
+                   </tr>
                     
                   </tbody>
            </table>
@@ -102,6 +106,7 @@
 	
 	<script th:inline="javascript">
 /*<![CDATA[*/
+    var userdept=/*[[${userdept}]]*/;
 	function guanbi(){
     	var index = parent.layer.getFrameIndex(window.name);  
         parent.layer.close(index);
@@ -145,6 +150,7 @@
 			obj.xzqhcode=$("#xzqhcode").val();
 			obj.providebmname=$("#providebmname").val();
 			obj.providebmcode=$("#providebmcode").val();
+            obj.providename=$("#providename").val();
 			chk_value.push(obj);
 			var flag=false;
 			var ids = scfileid;
@@ -211,42 +217,42 @@
 				});
 			
 		})
-		$("#ywbmname").bind("click",ywbmChoose);
-		function ywbmChoose(){
-			var dgurl="../code/ywbm_choose";
-			var index=layer.open({
-				  type: 2, 
-				  move: false,
-				  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
-				  offset: '50px',
-				  shadeClose: true ,
-				  title : '业务部门',
-				  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
-				});
-			
-		}
+		// $("#ywbmname").bind("click",ywbmChoose);
+		// function ywbmChoose(){
+		// 	var dgurl="../code/ywbm_choose";
+		// 	var index=layer.open({
+		// 		  type: 2,
+		// 		  move: false,
+		// 		  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
+		// 		  offset: '50px',
+		// 		  shadeClose: true ,
+		// 		  title : '业务部门',
+		// 		  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
+		// 		});
+		//
+		// }
 		/**
 		 * 提供方选择页面
 		 */
-		$("#providename").bind("click",function(){
-			
-			var dgurl="../tinfoclass/dept_choose?type=1";
-			var index=layer.open({
-				  type: 2, 
-				  move: false,
-				  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
-				  offset: '50px',
-				  shadeClose: true ,
-				  title : '提供方处室',
-				  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
-				});
-			
-		}) 
+		// $("#providename").bind("click",function(){
+		//
+		// 	var dgurl="../tinfoclass/dept_choose?type=1";
+		// 	var index=layer.open({
+		// 		  type: 2,
+		// 		  move: false,
+		// 		  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
+		// 		  offset: '50px',
+		// 		  shadeClose: true ,
+		// 		  title : '提供方处室',
+		// 		  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
+		// 		});
+		//
+		// })
 		$("#providebmname").bind("click",function(){
-			
+
 			var dgurl="../tinfoclass/dept_choose?type=2";
 			var index=layer.open({
-				  type: 2, 
+				  type: 2,
 				  move: false,
 				  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
 				  offset: '50px',
@@ -254,25 +260,62 @@
 				  title : '提供方部门',
 				  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
 				});
-			
-		})
-		$("#providezgname").bind("click",function(){
-			
-			var dgurl="../tinfoclass/dept_choose?type=3";
-			var index=layer.open({
-				  type: 2, 
-				  move: false,
-				  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
-				  offset: '50px',
-				  shadeClose: true ,
-				  title : '提供方主管部门',
-				  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
-				});
-			
+
 		})
+		// $("#providezgname").bind("click",function(){
+		//
+		// 	var dgurl="../tinfoclass/dept_choose?type=3";
+		// 	var index=layer.open({
+		// 		  type: 2,
+		// 		  move: false,
+		// 		  area: [($(window).width()-80)+'px', ($(window).height()-80)+'px'],
+		// 		  offset: '50px',
+		// 		  shadeClose: true ,
+		// 		  title : '提供方主管部门',
+		// 		  content: dgurl //这里content是一个URL,如果你不想让iframe出现滚动条,你还可以content: ['http://sentsin.com', 'no']
+		// 		});
+		//
+		// })
 		function downTemplate(){
 			window.location.href="../fileDown/downloadinfoclassTemplate.xlsx";
 		}
+
+function setDefaultInfoclassProvidebm(row) {
+    // 此处逻辑复制自dept_choose.html 2024年01月31日09:28:03 hujie   移除识别parent
+    document.getElementById('providebmcode').value =row.id;
+    document.getElementById('providebmname').value =row.name;
+    document.getElementById('providename').value =row.name;
+    if(row.ywbmname!=""){
+        document.getElementById('ywbmname').value =row.ywbmname;
+        document.getElementById('ywbmcode').value =row.ywbmcode;
+        document.getElementById('ywbmid').value =row.ywbmid;
+        if(document.getElementById('ywbm_dis')!=undefined) {
+            document.getElementById('ywbm_dis').innerText =row.ywbmname;
+        }
+    }
+    if(row.xzqhname!=""){
+        document.getElementById('xzqhname').value =row.xzqhname;
+        document.getElementById('xzqhid').value =row.xzqhid;
+        document.getElementById('xzqhcode').value =row.xzqhcode;
+    }
+    if(document.getElementById('creditno')!=undefined) {
+        document.getElementById('creditno').value =row.creditno;
+    }
+    if(document.getElementById('creditno_dis')!=undefined) {
+        document.getElementById('creditno_dis').innerText =row.creditno;
+    }
+    if("2507c1e07750425fb77c731f5fcc9875,432bdef9ae45462c9314399cc04af819,46338a4c48b642b384e6569df07f6336,526c80da2851498bbfe660690bea5887,7aece946acd2441c8ea712e40189f540,ab5ff50a39684a59867eb3f3c139cbd2,c03adff00a9d4ddfa1d19dfb2a271847,d00d9819459344d3aede40790c5acb6a".indexOf(row.id)==-1){
+        $(document.getElementById('qzqdBt')).text("");
+        $(document.getElementById('qzqd')).attr("ignore","ignore");
+    } else {
+        $(document.getElementById('qzqdBt')).text("*");
+        $(document.getElementById('qzqd')).removeAttr("ignore");
+    }
+}
+
+$(document).ready(function() {
+    setDefaultInfoclassProvidebm(userdept);
+});
 		/*]]>*/
 	</script>