天津投入产出系统后端
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.

70 lines
2.5 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.Operation.MainCodeChangeModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
总成条码替换查询
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%=Html.QPSeach(80,true) %>
<table id="condiTable">
<tr>
<th align="right">
<%=Html.QV(p => p.NEWMAINCODE)%>
</th>
<td>
<%=Html.QC(p => p.NEWMAINCODE)%>
</td>
<th align="right">
<%=Html.QV(p => p.ORIGMAINCODE)%>
</th>
<td>
<%=Html.QC(p => p.ORIGMAINCODE)%>
</td>
<th align="right">
<%=Html.QV(p => p.PRODUCTCODE)%>
</th>
<td>
<%=Html.QC(p => p.PRODUCTCODE)%>
</td>
<th align="right">
<%=Html.QV(p=>p.CREATEDATESTART) %>
</th>
<td>
<%=Html.QC(p => p.CREATEDATESTART)%>
</td>
<th align="right">
<%=Html.QV(p=>p.CREATEDATEEND) %>
</th>
<td>
<%=Html.QC(p => p.CREATEDATEEND)%>
</td>
</tr>
</table>
<%=Html.QPEnd()%>
<%=Html.QPList() %>
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.Operation.MainCodeChangeModel>(Model)%>
<%=Html.QPEnd() %>
<%=Html.Hidden("selectKey")%>
<%=Html.Hidden("fileName") %>
<script language="javascript" type="text/javascript">
$(function () { List(1); });
//导出Excel
function Export() {
var ids = document.getElementById("selectKey").value;
$.get("/MainCodeChange/ExportExcel", $("form").serializeArray(), function (data) {
submitByButton("/MainCodeChange/ExportFile?FileName=" + data);
});
}
</script>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
<table cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<%=Html.QTButtonSearch("MainCodeChange", "List", "List(1)", QMAPP.Common.Web.SystemLimit.isLimt)%>
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
</td>
</tr>
</table>
</asp:Content>