📄 check.jsp
字号:
<%--
Created by IntelliJ IDEA.
User: lijun
Date: 2006-5-20
edit ruilei 2006-06-04
--%>
<%@ page contentType="text/html;charset=GBK" %>
<%@ include file="/IncludeBeginMD.jsp" %>
<%@ page import="com.hexiesoft.are.sql.ASResultSet" %>
<%@ page import="com.hexiesoft.are.util.DataConvert" %>
<%
float mtot = 0, mcant = 0, musat = 0, mseast = 0, mtotb = 0, mtotc = 0, mtotp = 0, mtotn = 0, mcanc = 0, mcanb = 0, mcanp = 0, mcann = 0, musac = 0, musan = 0, musab = 0, musap = 0, mseasb = 0, mseasc = 0, mseasp = 0, mseasn = 0;
double nKgs = 2.2046;
float f_net = 0;
String wname = "";
String invbin = DataConvert.toRealString(iPostChange, (String) CurPage.getParameter("Code")).toUpperCase();//DataConvert.toRealString(iPostChange,(String)request.getParameter("Code")).toUpperCase();
String sSelect = "select count(*) as findcount from whouse where wcode='" + invbin + "'";
ASResultSet rs;
String msg2 = "";
if (!(invbin.equals("HILL") || invbin.equals("FERG"))) {
sSelect = "select wname from whouse where wcode='" + invbin + "'";
rs = Sqlca.getASResultSet(sSelect);
if (rs.next()) {
wname = rs.getString("wname");
}
if (wname==null || wname.length()==0) {
msg2 = (String) Configure.getConfigure(sIe_Language, "FinishedGoods").get("msg2");
}
}
%>
<script language="javascript">
if ('<%=msg2%>'.length > 0) {
//alert('<%=msg2%>');
self.returnValue="false";
self.close();
} else {
self.returnValue="true";
self.close();
}
</script>
<%@ include file="/IncludeEnd.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -