2019-05-23 19:17:03 +08:00

20 lines
818 B
Plaintext

<%@page import="com.tenwa.reckon.copydata.FileCopyToOtherPath"%>
<%@page import="com.amarsoft.are.jbo.JBOFactory"%>
<%@page import="com.amarsoft.are.jbo.BizObjectManager"%>
<%@page import="com.amarsoft.are.jbo.BizObjectQuery"%>
<%@page import="com.amarsoft.are.jbo.BizObject"%>
<%@ page contentType="text/html; charset=GBK"%><%@ include file="/IncludeBeginMDAJAX.jsp"%><%
String batchNos = CurPage.getParameter("batchNos");
String contractNos = CurPage.getParameter("contractNos");
String type = CurPage.getParameter("type");
String userid = CurPage.getParameter("userid");
FileCopyToOtherPath cp = new FileCopyToOtherPath();
cp.setContractNos(contractNos);
cp.setBatchNos(batchNos);
cp.setUserid(userid);
String result = cp.copyFile(type);
out.print(result);
%><%@ include file="/IncludeEndAJAX.jsp"%>