You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
3.1 KiB
97 lines
3.1 KiB
4 years ago
|
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
|
||
|
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.FIS.FISOrderModel>" %>
|
||
|
|
||
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
||
|
FIS计划查询
|
||
|
</asp:Content>
|
||
|
|
||
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
||
|
|
||
|
<%=Html.QPSeach(110,true) %>
|
||
|
<table id="condiTable">
|
||
|
<tr>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.VWSEQ)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.VWSEQ)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.KIN)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.KIN)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.VIN)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.VIN)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.PRODNO)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.PRODNO)%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.SCANSTATE)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.SCANSTATE)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.ONLINETIMESTART)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.ONLINETIMESTART)%>
|
||
|
</td>
|
||
|
<th align="right">
|
||
|
<%=Html.QV(p => p.ONLINETIMEEND)%>
|
||
|
</th>
|
||
|
<td>
|
||
|
<%=Html.QC(p => p.ONLINETIMEEND)%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
<%=Html.QPEnd()%>
|
||
|
<%=Html.QPList() %>
|
||
|
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.FIS.FISOrderModel>(Model)%>
|
||
|
<%=Html.QPEnd() %>
|
||
|
<%=Html.Hidden("selectKey")%>
|
||
|
<%=Html.Hidden("fileName") %>
|
||
|
<script language="javascript" type="text/javascript">
|
||
|
$(function () { List(1); });
|
||
|
|
||
|
//导出
|
||
|
function Export() {
|
||
|
var ids = getSelectKey();
|
||
|
document.getElementById("selectKey").value = ids;
|
||
|
$.get("/FISOrder/ExportExcel", $("form").serializeArray(), function (data) {
|
||
|
submitByButton("/FISOrder/ExportFile?FileName=" + data);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
//查询
|
||
|
function Search() {
|
||
|
if (parseDate($("#ONLINETIMESTART").val()) > parseDate($("#ONLINETIMEEND").val())) {
|
||
|
alert("开始时间不能大于结束时间!");
|
||
|
return;
|
||
|
}
|
||
|
List(1)
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</asp:Content>
|
||
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
||
|
<table cellpadding="0" cellspacing="0">
|
||
|
<tr>
|
||
|
<td align="center">
|
||
|
<%=Html.QTButtonSearch("FISOrder", "List", "Search()", QMAPP.Common.Web.SystemLimit.isLimt)%>
|
||
|
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</asp:Content>
|