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.
73 lines
2.4 KiB
73 lines
2.4 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
|
|
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.WIPManage.WIPInRecorderModel>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
在制品入库信息
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
|
|
<%=Html.QPSeach(100,true) %>
|
|
<table id="condiTable" >
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.PRODUCTCODE)%>
|
|
</th>
|
|
<td align="left" >
|
|
<%=Html.QC(p => p.PRODUCTCODE)%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.PRODUCTTYPE)%>
|
|
</th>
|
|
<td align="left" >
|
|
<%=Html.QC(p => p.PRODUCTTYPE)%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.PROCESSTYPE)%>
|
|
</th>
|
|
<td align="left" >
|
|
<%=Html.QC(p => p.PROCESSTYPE)%>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.STARTCREATEDATE)%>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.STARTCREATEDATE)%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.ENDCREATEDATE)%>
|
|
</th>
|
|
<td>
|
|
<%=Html.QC(p => p.ENDCREATEDATE)%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div style="left: 1px; position: relative;"></div>
|
|
<%=Html.QPEnd()%>
|
|
<%=Html.QPList() %>
|
|
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.WIPManage.WIPInRecorderModel>(Model)%>
|
|
<%=Html.QPEnd() %>
|
|
<%=Html.Hidden("selectKey")%>
|
|
<script language="javascript" type="text/javascript">
|
|
|
|
//导出
|
|
function Export() {
|
|
document.getElementById("selectKey").value = getSelectKey();
|
|
submitByButton("ExportExcel");
|
|
}
|
|
$(function () { List(1); });
|
|
</script>
|
|
</asp:Content>
|
|
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td align="center">
|
|
<%=Html.QTButtonSearch("WIPInRecorder", "List", "List(1)")%>
|
|
<%=Html.QTButton("export", "ExportExcel", QMFrameWork.WebUI.IconCls.redo, "Export()", (s, f) => { return true; })%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</asp:Content>
|
|
|