You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
3.8 KiB
Plaintext
105 lines
3.8 KiB
Plaintext
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="US_MapOrderSch.aspx.cs" Inherits="TradeManage.map.US_MapOrderSch" %>
|
|
|
|
|
|
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head id="Head1" runat="server">
|
|
<title>订单查询管理</title>
|
|
<link rel="stylesheet" type="text/css" href="../themes/default/easyui.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/icon.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/New.css" />
|
|
<link rel="stylesheet" type="text/css" href="../themes/DataGrid.css" />
|
|
<link rel="stylesheet" type="text/css" href="../Scripts/fancybox/jquery.fancybox-1.3.4.css" />
|
|
<script src="../Scripts/MicrosoftAjax.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.easyui.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DataGrid.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DataPager.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.bgiframe.min.js" type="text/javascript"></script>
|
|
<script src="../Scripts/Global.js" type="text/javascript"></script>
|
|
<script src="../Scripts/jquery.url.js" type="text/javascript"></script>
|
|
<script src="../Scripts/WindowLoad.js" type="text/javascript"></script>
|
|
<script src="../Scripts/fancybox/jquery.fancybox-1.3.4.js" type="text/javascript"></script>
|
|
<script src="../Scripts/DatePicker/WdatePicker.js" type="text/javascript"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
|
|
|
var WindowLoadModel = new WindowLoad();
|
|
$(document).ready(function () {
|
|
WindowLoadModel.ApplicationPath = "../";
|
|
WindowLoadModel.ControlID = "WindowLoad";
|
|
WindowLoadModel.Isbgiframe = true;
|
|
WindowLoadModel.Load();
|
|
ajaxInit(WindowLoadModel);
|
|
|
|
|
|
var dd = new Date();
|
|
|
|
$("#txt_SDate").val(dd.addDays(-1).localeFormat("yyyy-MM-dd"));
|
|
$("#txt_EDate").val(dd.localeFormat("yyyy-MM-dd"));
|
|
|
|
|
|
$("#btn_sch").bind("click", function () {
|
|
var GoodsCode = $("#txt_goodscode").val();
|
|
var sdate = $("#txt_SDate").val();
|
|
var edate = $("#txt_EDate").val();
|
|
if (sdate == "") {
|
|
alert("请选择统计日期");
|
|
return;
|
|
}
|
|
window.location = "US_MapOrder.aspx?GoodsCode=" + GoodsCode + "&sdate=" + sdate + "&edate=" + edate;
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="title_ico">
|
|
美国订单统计
|
|
</div>
|
|
<table width="100%">
|
|
<tr>
|
|
<td align="center">
|
|
<table border="2" cellpadding="0" cellspacing="0" style="width: 99%;" class="tableAll">
|
|
|
|
<tr>
|
|
<td width="12%" class="f1">
|
|
货物编号:
|
|
</td>
|
|
<td>
|
|
<input id="txt_goodscode" type="text" /></td>
|
|
|
|
<td width="12%" class="f1">
|
|
统计日期范围:
|
|
</td>
|
|
<td>
|
|
<input id="txt_SDate" type="text" onfocus="WdatePicker()" />-<input id="txt_EDate"
|
|
type="text" onfocus="WdatePicker()" />
|
|
</td>
|
|
<td>
|
|
<input id="btn_sch" type="button" class="btnClass btnClassFind" value="查询" />
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|
|
|
|
|