Commit 3a3c9f33 authored by 徐州's avatar 徐州

删除out

parent 1c955ffc

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>403 - 缺少权限</title>
</head>
<body>
<div>
<div><h1>你没有访问该页面的权限.</h1></div>
</div>
</body>
</html>
\ No newline at end of file
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>找不到页面</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
<style>
.info_01 {
border-right: 0px solid;
border-top: 0px solid;
background-image: url(webResources/images/info_01.gif);
border-left: 0px solid;
width: 5px;
border-bottom: 0px solid;
background-repeat: no-repeat;
height: 95px;
background-color: transparent;
}
.info_03 {
border-right: 0px solid;
border-top: 0px solid;
background-image: url(webResources/images/info_03.png);
border-left: 0px solid;
background-repeat: no-repeat;
width: 3px;
border-bottom: 0px solid;
height: 95px;
background-color: transparent;
}
.info_02 {
border-right: 0px solid;
border-top: 0px solid;
background-image: url(webResources/images/info_02.png);
border-left: 0px solid;
border-bottom: 0px solid;
height: 95px;
background-color: transparent;
}
</style>
</head>
<body>
<table width="400px" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="info_01"></td>
<td class="info_02" valign="middle" align="center">
<table>
<tr>
<td><img src="webResources/images/error.gif" border="0"></td>
<td><font color=red><b>对不起,您访问的页面不存在!</b></font></td>
</tr>
</table>
</td>
<td class="info_03"></td>
</tr>
</table>
</body>
</html>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<!-- 根据搜索条件查询 -->
<select id="findAccountBankByMap">
from AccountBank t where t.delFlag = 0
<isNull property="sysType">
<![CDATA[and (t.sysType is null or t.sysType = '')]]>
</isNull>
<isNotNull property="sysType">
<![CDATA[and t.sysType = :sysType]]>
</isNotNull>
<isNotEmpty property="deptCodes">
<![CDATA[and t.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and t.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="developUnit">
<![CDATA[and t.developUnit like :developUnit]]>
</isNotEmpty>
<isNotEmpty property="queryArrivalTimeStart">
<![CDATA[and t.arrivalTime >= :queryArrivalTimeStart]]>
</isNotEmpty>
<isNotEmpty property="queryArrivalTimeEnd">
<![CDATA[and t.arrivalTime <= :queryArrivalTimeEnd]]>
</isNotEmpty>
<isNotEmpty property="hasInvoice">
<![CDATA[and t.hasInvoice = :hasInvoice]]>
</isNotEmpty>
<isNotEmpty property="status">
<![CDATA[and t.status = :status]]>
</isNotEmpty>
order by t.arrivalTime desc
</select>
<select id="findAccountBankAttachByMap">
from AccountBankAttach t where t.delFlag = 0
<isNotEmpty property="deptCodes">
<![CDATA[and t.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and t.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="bizrowid">
<![CDATA[and t.bizrowid in (:bizrowid)]]>
</isNotEmpty>
</select>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="ACCOUNT_BANK" extends="default" namespace="/jsp/accountBank">
<!-- 列表查询,返回Json数据 -->
<action name="accountBankQuery" class="com.jshx.account.accountBank.web.AccountBankAction" method="list">
</action>
<action name="accountBankList">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_List.jsp</result>
</action>
<action name="accountBankView" class="com.jshx.account.accountBank.web.AccountBankAction" method="view">
<result name="view">/WEB-INF/pages/account/accountBank/AccountBank_Detail.jsp</result>
</action>
<action name="accountBankInitEdit" class="com.jshx.account.accountBank.web.AccountBankAction" method="initEdit">
<result name="edit">/WEB-INF/pages/account/accountBank/AccountBank_Edit.jsp</result>
</action>
<action name="accountBankSave" class="com.jshx.account.accountBank.web.AccountBankAction" method="save">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_accountBank</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<action name="accountBankDel" class="com.jshx.account.accountBank.web.AccountBankAction" method="delete">
</action>
<action name="startWorkflow" class="com.jshx.account.accountBank.web.AccountBankAction" method="startWorkflow">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_accountBank</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<!-- 财务确认 -->
<action name="toConfirm" class="com.jshx.account.accountBank.web.AccountBankAction" method="toConfirm">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_Confirm.jsp</result>
</action>
<!-- 财务待缴款办理页 -->
<action name="dealPending" class="com.jshx.account.accountBank.web.AccountBankAction" method="deal">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_ConfirmDealPending.jsp</result>
</action>
<!-- 财务缓缴款办理页 -->
<action name="dealDelay" class="com.jshx.account.accountBank.web.AccountBankAction" method="deal">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_ConfirmDealDelay.jsp</result>
</action>
<!-- 财务修改金额 -->
<action name="updateAmount" class="com.jshx.account.accountBank.web.AccountBankAction" method="updateAmount">
</action>
<!-- 最终确认页 -->
<action name="operate" class="com.jshx.account.accountBank.web.AccountBankAction" method="operate">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_ConfirmOperate.jsp</result>
</action>
<!-- 待缴款财务确认 -->
<action name="submitConfirmPending" class="com.jshx.account.accountBank.web.AccountBankAction" method="submitConfirmPending">
</action>
<!-- 缓缴款财务确认 -->
<action name="submitConfirmDelay" class="com.jshx.account.accountBank.web.AccountBankAction" method="submitConfirmDelay">
</action>
<!-- 预确认经办 -->
<action name="toHandle" class="com.jshx.account.accountBank.web.AccountBankAction" method="toHandle">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_Handle.jsp</result>
</action>
<!-- 查看银行到账信息 -->
<action name="viewAccountBank" class="com.jshx.account.accountBank.web.AccountBankAction" method="viewAccountBank">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_MultiDetail.jsp</result>
</action>
<action name="submitHandle" class="com.jshx.account.accountBank.web.AccountBankAction" method="submitHandle">
</action>
<!-- 预确认复核 -->
<action name="toCheck" class="com.jshx.account.accountBank.web.AccountBankAction" method="toCheck">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_Check.jsp</result>
</action>
<action name="submitCheck" class="com.jshx.account.accountBank.web.AccountBankAction" method="submitCheck">
</action>
<!-- 预确认审核 -->
<action name="toAudit" class="com.jshx.account.accountBank.web.AccountBankAction" method="toAudit">
<result name="success">/WEB-INF/pages/account/accountBank/AccountBank_Audit.jsp</result>
</action>
<action name="submitAudit" class="com.jshx.account.accountBank.web.AccountBankAction" method="submitAudit">
</action>
<action name="uploadify" method="uploadify" class="com.jshx.account.accountBank.web.AccountBankAction"></action>
<!-- 下载附件 -->
<action name="downloadFile" class="com.jshx.account.accountBank.web.AccountBankAction" method="downloadFile">
<!-- 配置结果类型为stream的结果 -->
<result name="success" type="stream">
<!-- 指定下载文件的文件位置 -->
<param name="inputName">downFileStream</param>
<param name="contentDisposition">
attachment;filename="${downFileName}"
</param>
<param name="contentType">application/octetstream</param>
<!-- 指定下载文件的缓冲大小 -->
<param name="bufferSize">4096</param>
</result>
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<!-- 根据搜索条件查询 -->
<select id="findPaymentVoucherByMap">
select new com.jshx.xmxxb.entity.Xmxxb(a.id, a.gzlbh, a.slbh, a.xmlsh, a.xxylb, a.xmbh, a.jsdw, a.dwbh, a.jbcs, a.czgs, a.bllb, a.ckbh, a.lsck, a.zjdyjks, a.zsdw, a.zsfw, a.issdxm, a.lianxiren, a.xkzh, a.jzmjdx, a.jzmjdc, a.jzmj27, a.jzmj8ys, a.zjzmjds, a.csje, a.beizhu, a.mjyj)
from Xmxxb a ,PaymentVoucher b where a.slbh = b.orderId
<isNotEmpty property="deptCodes">
<![CDATA[and a.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and a.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="hfszz">
<![CDATA[and a.hfsz in (:hfszz)]]>
</isNotEmpty>
<isNotEmpty property="xmlsh">
<![CDATA[and a.xmlsh like :xmlsh]]>
</isNotEmpty>
<isNotEmpty property="xxylb">
<![CDATA[and a.xxylb like :xxylb]]>
</isNotEmpty>
<isNotEmpty property="xmbh">
<![CDATA[and a.xmbh like :xmbh]]>
</isNotEmpty>
<isNotEmpty property="slbh">
<![CDATA[and a.slbh like :slbh]]>
</isNotEmpty>
<isNotEmpty property="jsdw">
<![CDATA[and a.jsdw like :jsdw]]>
</isNotEmpty>
<isNotEmpty property="dwbh">
<![CDATA[and a.dwbh like :dwbh]]>
</isNotEmpty>
<isNotEmpty property="xmmc">
<![CDATA[and a.xmmc like :xmmc]]>
</isNotEmpty>
<isNotEmpty property="hfsz">
<![CDATA[and a.hfsz like :hfsz]]>
</isNotEmpty>
<isNotEmpty property="lianxiren">
<![CDATA[and a.lianxiren like :lianxiren]]>
</isNotEmpty>
<isNotEmpty property="dwdm">
<![CDATA[and a.dwdm like :dwdm]]>
</isNotEmpty>
<isNotEmpty property="dwdmm">
<![CDATA[and a.dwdm in (:dwdmm)]]>
</isNotEmpty>
<isNotEmpty property="lcjk">
<![CDATA[and a.lcjk like :lcjk]]>
</isNotEmpty>
</select>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="PAYMENT_VOUCHER" extends="default" namespace="/jsp/paymentVoucher">
<!-- 一般缴款书-非缓缴 -->
<action name="paymentVoucherYbjks">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_YbjksList.jsp</result>
</action>
<!-- 特殊缴款书录入 -->
<action name="paymentVoucherYbjkstb">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_YbjksListtb.jsp</result>
</action>
<!-- 一般缴款书-缓缴 -->
<action name="paymentVoucherYbjksDelay">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_YbjksDelayList.jsp</result>
</action>
<!-- 征收联系单 -->
<action name="paymentVoucherZslxd" >
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_ZslxdList.jsp</result>
</action>
<action name="fujian" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="fujian">
<result name="edit">/WEB-INF/pages/account/paymentVoucher/Wwsqys_Edit4.jsp</result>
</action>
<action name="pinzhenSyncPz" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="pinzhenSyncPz">
</action>
<action name="fujiantongbu" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="fujiantongbu">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_paymentItemHis</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<!-- 征收联系单短信专用 -->
<action name="paymentVoucherZsldx">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_ZslxdListdx.jsp</result>
</action>
<!-- 已缴费的项目信息 -->
<action name="queryInfo" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="queryInfo"></action>
<!-- 校验项目情况 -->
<action name ="checkPoject" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="checkPoject"></action>
<action name ="checkPoject1" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="checkPoject1"></action>
<action name ="faduanxin" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="faduanxin"></action>
<!-- 开票数据录入界面 -->
<action name="dataRecordAdd" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="dataRecordAdd">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_DataRecordAdd.jsp</result>
</action>
<!-- 特殊开票数据录入界面 -->
<action name="dataRecordAddtb" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="dataRecordAdd">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_DataRecordAddtb.jsp</result>
</action>
<!-- 缓缴项目开票数据录入界面 -->
<action name="dataRecordDelayAdd" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="dataRecordDelayAdd">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_DataRecordDelayAdd.jsp</result>
</action>
<!-- 开票数据查看界面 -->
<action name="dataRecordDetail" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="dataRecordDetail">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_DataRecordDetail.jsp</result>
</action>
<!-- 打印缴费凭证 -->
<action name="printPaymentVoucher_*" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="{1}">
<!-- (一般缴款书) -->
<result name="JiaoKuanShu">/WEB-INF/pages/account/paymentVoucher/PaymentVoucherPrint_JiaoKuanShu.jsp</result>
<!-- (房改办) -->
<result name="FangGaiBan">/WEB-INF/pages/account/paymentVoucher/PaymentVoucherPrint_FangGaiBan.jsp</result>
<!-- (规划局) -->
<result name="GuiHua">/WEB-INF/pages/account/paymentVoucher/PaymentVoucherPrint_GuiHua.jsp</result>
<!-- (产权处) -->
<result name="ChanQuan">/WEB-INF/pages/account/paymentVoucher/PaymentVoucherPrint_ChanQuan.jsp</result>
<!-- (资金科创)-->
<result name="ZiJin">/WEB-INF/pages/account/paymentVoucher/PaymentVoucherPrint_ZiJin.jsp</result>
</action>
<!-- 保存征收联系单编号 -->
<action name="updateZslxdbh" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="updateZslxdbh"></action>
<!-- 校验票据号码 -->
<action name="checkVoucherCode" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="checkVoucherCode"></action>
<!-- 批量校验票据号码 -->
<action name="checkVoucherCodetd" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="checkVoucherCodetb"></action>
<!-- 对接非税系统 -->
<action name="uploadVoucherInfo" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="uploadVoucherInfo">
<result name="reload">/common/successToSelf.jsp?windowId=win_paymentVoucherHis</result>
</action>
<!-- 不对接,特殊录入-->
<action name="uploadVoucherInfotb" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="uploadVoucherInfotb">
<result name="reload">/common/successToSelf.jsp?windowId=win_paymentVoucherHistb</result>
</action>
<!-- 作废票据信息 -->
<action name="disableVoucherInfo" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="disableVoucherInfo"></action>
<!-- 重新上传票据信息 -->
<action name="reUploadVoucherInfo" class="com.jshx.account.paymentVoucher.web.PaymentVoucherAction" method="reUploadVoucherInfo"></action>
</package>
<package name="PAYMENT_VOUCHER_NEW" extends="default" namespace="/jsp/paymentVoucherNew">
<action name="test111" class="com.jshx.account.paymentVoucher.web.PaymentVoucherNewAction" method="test111">
<result name="success">/WEB-INF/pages/account/paymentVoucher/PaymentVoucher_DataRecordAddtb2.jsp</result>
</action>
<action name="checkVoucherCodetb2" class="com.jshx.account.paymentVoucher.web.PaymentVoucherNewAction" method="checkVoucherCodetb2">
</action>
<action name="uploadVoucherInfotb2" class="com.jshx.account.paymentVoucher.web.PaymentVoucherNewAction" method="uploadVoucherInfotb2">
<result name="reload">/common/successToSelf.jsp?windowId=win_paymentVoucherHistb2</result>
</action>
<!-- 校验项目情况 -->
<action name ="checkPoject2" class="com.jshx.account.paymentVoucher.web.PaymentVoucherNewAction" method="checkPoject2"></action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<!-- 根据搜索条件查询 -->
<select id="findPaymentVoucherHisByMap">
from PaymentVoucherHis t where t.delFlag = 0
<isNotEmpty property="deptCodes">
<![CDATA[and t.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and t.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="orderId">
<![CDATA[and t.orderId like :orderId]]>
</isNotEmpty>
<isNotEmpty property="slbh">
<![CDATA[and t.orderId = :slbh]]>
</isNotEmpty>
<isNotEmpty property="voucherCode">
<![CDATA[and t.voucherCode like :voucherCode]]>
</isNotEmpty>
<isNotEmpty property="code">
<![CDATA[and t.voucherCode = :code]]>
</isNotEmpty>
<isNotEmpty property="payerName">
<![CDATA[and t.payerName like :payerName]]>
</isNotEmpty>
<isNotEmpty property="startNO">
<![CDATA[and t.voucherCode >= :startNO]]>
</isNotEmpty>
<isNotEmpty property="endNO">
<![CDATA[and t.voucherCode >= :endNO]]>
</isNotEmpty>
<isNotEmpty property="relateId">
<![CDATA[and t.relateId = :relateId]]>
</isNotEmpty>
<isNotEmpty property="applyStatus">
<![CDATA[and t.applyStatus = :applyStatus]]>
</isNotEmpty>
<isNotEmpty property="destroyStatus">
<![CDATA[and t.destroyStatus = :destroyStatus]]>
</isNotEmpty>
<isNotEmpty property="dwdm">
<![CDATA[and t.dwdm = :dwdm]]>
</isNotEmpty>
order by t.printDate desc
</select>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="PAYMENT_VOUCHER_HIS" extends="default" namespace="/jsp/paymentVoucherHis">
<!-- 列表查询,返回Json数据 -->
<action name="paymentVoucherHisQuery" class="com.jshx.account.paymentVoucherHis.web.PaymentVoucherHisAction" method="list">
</action>
<action name="paymentVoucherHisList">
<result name="success">/WEB-INF/pages/account/paymentVoucherHis/PaymentVoucherHis_List.jsp</result>
</action>
<action name="paymentVoucherHisView" class="com.jshx.account.paymentVoucherHis.web.PaymentVoucherHisAction" method="view">
<result name="view">/WEB-INF/pages/account/paymentVoucherHis/PaymentVoucherHis_Detail.jsp</result>
</action>
<action name="paymentVoucherHisInitEdit" class="com.jshx.account.paymentVoucherHis.web.PaymentVoucherHisAction" method="initEdit">
<result name="edit">/WEB-INF/pages/account/paymentVoucherHis/PaymentVoucherHis_Edit.jsp</result>
</action>
<action name="paymentVoucherHisSave" class="com.jshx.account.paymentVoucherHis.web.PaymentVoucherHisAction" method="save">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_paymentVoucherHis</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<action name="paymentVoucherHisDel" class="com.jshx.account.paymentVoucherHis.web.PaymentVoucherHisAction" method="delete">
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<select id="queryUnsentMsg">
from ActivitiMessage where status = 0
</select>
</sqlMap>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<!-- 根据搜索条件查询 -->
<select id="findActivitiOperLogByMap">
select new com.jshx.activiti.entity.ActivitiOperLog(t.id, t.taskid, t.taskname, t.processinstanceid, t.processinstancename, t.opertype, t.operuser,t.remark) from ActivitiOperLog t where t.delFlag = 0
<isNotEmpty property="deptCodes">
<![CDATA[and t.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and t.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="taskid">
<![CDATA[and t.taskid like :taskid]]>
</isNotEmpty>
<isNotEmpty property="taskname">
<![CDATA[and t.taskname like :taskname]]>
</isNotEmpty>
<isNotEmpty property="processinstanceid">
<![CDATA[and t.processinstanceid like :processinstanceid]]>
</isNotEmpty>
<isNotEmpty property="processinstancename">
<![CDATA[and t.processinstancename like :processinstancename]]>
</isNotEmpty>
<isNotEmpty property="opertype">
<![CDATA[and t.opertype like :opertype]]>
</isNotEmpty>
<isNotEmpty property="operuser">
<![CDATA[and t.operuser like :operuser]]>
</isNotEmpty>
</select>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN"
"http://ibatis.apache.org/dtd/sql-map-2.dtd">
<sqlMap>
<!-- 根据搜索条件查询 -->
<select id="findAutoDeputeByMap">
select new com.jshx.activiti.entity.AutoDepute(t.id, t.assignee, t.deputy, t.startTime, t.endDate, t.processDefinitionId, t.deputeStatus) from AutoDepute t where t.delFlag = 0
<isNotEmpty property="deptCodes">
<![CDATA[and t.deptId in (:deptCodes)]]>
</isNotEmpty>
<isNotEmpty property="ids">
<![CDATA[and t.id in (:ids)]]>
</isNotEmpty>
<isNotEmpty property="assignee">
<![CDATA[and t.assignee like :assignee]]>
</isNotEmpty>
<isNotEmpty property="startStartTime">
<![CDATA[and t.startTime >= :startStartTime]]>
</isNotEmpty>
<isNotEmpty property="endStartTime">
<![CDATA[and t.startTime <= :endStartTime]]>
</isNotEmpty>
<isNotEmpty property="startEndDate">
<![CDATA[and t.endDate >= :startEndDate]]>
</isNotEmpty>
<isNotEmpty property="endEndDate">
<![CDATA[and t.endDate <= :endEndDate]]>
</isNotEmpty>
<isNotEmpty property="processDefinitionId">
<![CDATA[and t.processDefinitionId like :processDefinitionId]]>
</isNotEmpty>
<isNotEmpty property="deputeStatus">
<![CDATA[and t.deputeStatus = :deputeStatus]]>
</isNotEmpty>
</select>
</sqlMap>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="ACTIVITI_OPER_LOG" extends="default" namespace="/jsp/activitoperlog">
<!-- 列表查询,返回Json数据 -->
<action name="activitiOperLogQuery" class="com.jshx.activiti.web.ActivitiOperLogAction" method="list">
</action>
<action name="activitiOperLogList" class="com.jshx.activiti.web.ActivitiOperLogAction" method="activitiOperLogList">
<result name="success">/WEB-INF/pages/activitoperlog/ActivitiOperLog_List.jsp</result>
</action>
<action name="activitiOperLogView" class="com.jshx.activiti.web.ActivitiOperLogAction" method="view">
<result name="view">/WEB-INF/pages/activitoperlog/ActivitiOperLog_Detail.jsp</result>
</action>
<action name="activitiOperLogInitEdit" class="com.jshx.activiti.web.ActivitiOperLogAction" method="initEdit">
<result name="edit">/WEB-INF/pages/activitoperlog/ActivitiOperLog_Edit.jsp</result>
</action>
<action name="activitiOperLogSave" class="com.jshx.activiti.web.ActivitiOperLogAction" method="save">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_activitiOperLog</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<action name="activitiOperLogDel" class="com.jshx.activiti.web.ActivitiOperLogAction" method="delete">
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="AUTO_DEPUTE" extends="default" namespace="/jsp/depute">
<!-- 列表查询,返回Json数据 -->
<action name="autoDeputeQuery" class="com.jshx.activiti.web.AutoDeputeAction" method="list">
</action>
<action name="autoDeputeList">
<result name="success">/WEB-INF/pages/depute/AutoDepute_List.jsp</result>
</action>
<action name="autoDeputeView" class="com.jshx.activiti.web.AutoDeputeAction" method="view">
<result name="view">/WEB-INF/pages/depute/AutoDepute_Detail.jsp</result>
</action>
<action name="autoDeputeInitEdit" class="com.jshx.activiti.web.AutoDeputeAction" method="initEdit">
<result name="edit">/WEB-INF/pages/depute/AutoDepute_Edit.jsp</result>
</action>
<action name="autoDeputeSave" class="com.jshx.activiti.web.AutoDeputeAction" method="save">
<interceptor-ref name="tokenInterceptor" />
<interceptor-ref name="coreStack" />
<result name="reload" type="redirect">/common/successToSelf.jsp?windowId=win_autoDepute</result>
<result name="invalid.token">/invalid.jsp</result>
</action>
<action name="autoDeputeDel" class="com.jshx.activiti.web.AutoDeputeAction" method="delete">
</action>
</package>
</struts>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="modler" extends="default" namespace="/jsp/modler">
<action name="getModles" class="com.jshx.activiti.web.ModlerAction"
method="getModles">
</action>
</package>
</struts>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment