📄 sueinfo.jsp
字号:
customer_id = customerID;
customer_name = rs.getString("customer_name");
if(customer_name == null) customer_name = "";
telephone = rs.getString("telephone");
if(telephone == null) telephone = "";
mobile_telephone = rs.getString("mobile_telephone");
if(mobile_telephone == null) mobile_telephone = "";
fax = rs.getString("fax");
if(fax == null) fax = "";
email = rs.getString("email");
if(email == null) email = "";
customer_type = rs.getString("customer_type");
address = rs.getString("address");
if(address == null) address = "";
customer_introduce = rs.getString("customer_introduce");
if(customer_introduce == null) customer_introduce = "";
if(customer_type == null) customer_type = "";
else if(customer_type.equals("zf")) customer_type = "政府";
else if(customer_type.equals("gq")) customer_type = "国企";
else if(customer_type.equals("sz")) customer_type = "三资";
else if(customer_type.equals("my")) customer_type = "民营";
else if(customer_type.equals("gr")) customer_type = "个人";
else if(customer_type.equals("qt")) customer_type = "其他";
}
//END---------------------------------------------
%>
<html>
<head>
<title>诉讼案件显示</title>
<%@ include file="../inc/config.jsp" %>
</head>
<body class="page">
<!--显示工具条-->
<div id="Layer1" style="Position:absolute; left:5px; top:70px; width:98%; height:296px; z-index:1; visibility: visible">
<table border="0" cellspacing="0" cellpadding="0" height="25" >
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
</tr>
<tr class="tr_bg1" align="center">
<td class="table_bg" width="1" ></td>
<td onClick="MM_showHideLayers('Layer1','','show','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" class="tr_bg2" width="60" >案件信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','show','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="110">律师处理事务列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','show','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60">费用信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','show','Layer5','','hide')" style="cursor:hand" width="80">其他费用列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','show')" style="cursor:hand" width="70">委托人信息</td>
<td class="table_bg" width="1"></td>
</tr>
</table>
<table align="center" border="0" cellspacing="1" cellpadding="5" class="table_bg" width="100%">
<tr>
<td width="18%" align="right" class="title_bg"> 案件编码: </td>
<td width="28%" class="tr_bg1"> <%=caseID%></td>
<td width="19%" align="right" class="title_bg"> 案件编号: </td>
<td width="35%" class="tr_bg1"> <%=caseNo%></td>
</tr>
<tr>
<td align="right" width="18%" class="title_bg"> 案由:</td>
<td class="tr_bg1" colspan="3"> <%=caseReason%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 结案时间: </td>
<td width=28% class="tr_bg1"><%=beginDate%></td>
<td align=right width=19% class="title_bg"> 收案时间: </td>
<td width=35% class="tr_bg1" ><%=endDate%></td>
</tr>
<tr>
<%
sql = "select employee_name from t_employee where employee_id='" + approveMan + "'";
rs = db.executeQuery(sql);
if(rs.next()) approveMan = rs.getString("employee_name");
else approveMan = "";
%>
<td align="right" width="18%" class="title_bg"> 审批(人):</td>
<td width="28%" class="tr_bg1"><%=approveMan%></td>
<td align="right" width="19%" class="title_bg"> 承办律师:</td>
<td width=35% class="tr_bg1"><%=lawyer%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 案件类型:</td>
<td width=28% class="tr_bg1"><%=caseType%></td>
<td align="right" width="19%" class="title_bg"> 案件属性:</td>
<td width=35% class="tr_bg1"><%=caseAttribute%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 委托角色:</td>
<td width=28% class="tr_bg1"><%=agentSide%></td>
<td align=right width=19% class="title_bg"> 委托人:</td>
<td width=35% class="tr_bg1" > <%=customer%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 涉外信息: </td>
<td width=28% class="tr_bg1"><%=referForeign%></td>
<td align=right width=19% class="title_bg"> 受理法院: </td>
<td width=35% class="tr_bg1" ><%=court%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 被告简介:</td>
<td class="tr_bg1" width="28%"><%=defendantInfo%></td>
<td align="right" class="title_bg" width="19%">原告简介:</td>
<td class="tr_bg1" width="35%"><%=plaintiffInfo%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg">审 级: </td>
<td width=28% class="tr_bg1"><%=judgeLevel%></td>
<td align=right width=19% class="title_bg"> 判决书递交客户时间: </td>
<td width=35% class="tr_bg1" ><%=judgeToCustomerDate%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 是否收费: </td>
<td width=28% class="tr_bg1"><%=charged%></td>
<td align=right width=19% class="title_bg"> 免费事由: </td>
<td width=35% class="tr_bg1" ><%=noPayReason%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 相关证据: </td>
<td class="tr_bg1">
<%
ExtendString es1 = new ExtendString();
if(proof!=null)
{
if(proof.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,proof);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%></td>
<td align="right" class="title_bg">开庭报告:</td>
<td class="tr_bg1">
<%
if(courtReport!=null)
{
if(courtReport.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,courtReport);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 案情讨论记录: </td>
<td class="tr_bg1">
<%
if(discussRecord!=null)
{
if(discussRecord.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,discussRecord);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%></td>
<td align="right" class="title_bg">法院文书:</td>
<td class="tr_bg1">
<%
if(courtBook!=null)
{
if(courtBook.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,courtBook);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
</tr>
<tr>
<td align=right width=18% class="title_bg">律师代理词: </td>
<td class="tr_bg1">
<%
if(agentWord!=null)
{
if(agentWord.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,agentWord);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
<td align="right" class="title_bg">律师起诉状:</td>
<td class="tr_bg1">
<%
if(indictment!=null)
{
if(indictment.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,indictment);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
</tr>
<tr>
<td align=right width=18% class="title_bg">律师庭审笔录:</td>
<td class="tr_bg1">
<%
if(courtNote!=null)
{
if(courtNote.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,courtNote);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
<td align="right" class="title_bg">律师阅卷笔录:</td>
<td class="tr_bg1">
<%
if(readNote!=null)
{
if(readNote.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,readNote);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 办案小结:</td>
<td class="tr_bg1" width="28%">
<%
if(caseBrief!=null)
{
if(caseBrief.equals("")) out.print("无");
String[] pk=new String[10];
pk= es1.Split(";" ,caseBrief);
for(int i=0;i<es1.length-1;i++){
if((i%2)==0){
out.print("<a href=/upload/"+pk[i+1]+" target=\"_blank\">"+pk[i]+"</a>");
if((i!=(es1.length-3))&&((es1.length-2)!=1)){out.print("、");};
}
}
}else{out.print("无");};
%> </td>
<td align=right width=19% class="title_bg"> 判决结果: </td>
<td class="tr_bg1" width="35%"> <%=judgeResult%></td>
</tr>
<tr>
<td align=right width=18% class="title_bg"> 备注: </td>
<td colspan=3 class="tr_bg1"> <%=remarks%></td>
</tr>
</table>
</div>
<div id="Layer2" style="Position:absolute; left:5px; top:70px; width:98%; height:161px; z-index:2; visibility: hidden">
<table border="0" cellspacing="0" cellpadding="0" height="25" >
<tr class="tr_bg1" align="center">
<td class="table_bg" colspan="11" height="1" ></td>
</tr>
<tr class="tr_bg1" align="center">
<td class="table_bg" width="1" ></td>
<td onClick="MM_showHideLayers('Layer1','','show','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60" >案件信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','show','Layer3','','hide','Layer4','','hide','Layer5','','hide')" style="cursor:hand" class="tr_bg2" width="110">律师处理事务列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','show','Layer4','','hide','Layer5','','hide')" style="cursor:hand" width="60">费用信息</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','show','Layer5','','hide')" style="cursor:hand" width="80">其他费用列表</td>
<td class="table_bg" width="1"></td>
<td onClick="MM_showHideLayers('Layer1','','hide','Layer2','','hide','Layer3','','hide','Layer4','','hide','Layer5','','show')" style="cursor:hand" width="70">委托人信息</td>
<td class="table_bg" width="1"></td>
</tr>
</table>
<table width="100%" align="center" border="0" cellspacing="1" cellpadding="5" class="table_bg">
<tr class="title_bg" align="center">
<td width="377" > 办理事务</td>
<td width="89"> 开始时间</td>
<td width="61" > 花费工时</td>
<td width="116" > 办理结果</td>
</tr>
<%
String itemID = "",
itemName = "",
beginTime = "",
spendTime = "",
itemResult = "";
int recordCount = 0;
if(rs1 != null)
{
rs1.last();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -