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

134 lines
4.2 KiB

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.Operation.ProductEndModel>" %>
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
信息列表
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<%=Html.QPSeach(135,true) %>
<table id="condiTable">
<tr>
<th align="right">
<%=Html.QV(p => p.PRODUCTCODE)%>
</th>
<td>
<%=Html.QC(p => p.PRODUCTCODE)%>
</td>
<th align="right">
仪表总成码
</th>
<td>
<%=Html.QC(p => p.MAINCODE)%>
</td>
<th align="right">
门板FIS码
</th>
<td>
<%=Html.QC(p => p.PLAN_NO)%>
</td>
<th align="right">
<%=Html.QV(p => p.VIN)%>
</th>
<td>
<%=Html.QC(p => p.VIN)%>
</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>
<th align="right">
<%=Html.QV(p => p.MATERIAL_CODE)%>
</th>
<td>
<%=Html.QC(p => p.MATERIAL_CODE)%>
</td>
<th align="right">
<%=Html.QV(p => p.WORKCENTER_CODE)%>
</th>
<td>
<%=Html.QC(p => p.WORKCENTER_CODE)%>
</td>
</tr>
<tr>
<th align="right">
<%=Html.QV(p=>p.HB) %>
</th>
<td>
<%=Html.QC(p => p.HB)%>
</td>
<th align="right">
<%=Html.QV(p=>p.COLOR) %>
</th>
<td>
<%=Html.QC(p => p.COLOR)%>
</td>
<th align="right">
<%=Html.QV(p=>p.STATUS) %>
</th>
<td>
<%=Html.QC(p => p.STATUS)%>
</td>
</tr>
</table>
<%=Html.QPEnd()%>
<%=Html.QPList() %>
<%=Html.QDateGrid<QMAPP.FJC.Web.Models.Operation.ProductEndModel>(Model)%>
<%=Html.QPEnd() %>
<%=Html.Hidden("selectKey")%>
<%=Html.Hidden("fileName") %>
<%=Html.HiddenFor(o => o.GETDETAILINFO)%>
<%=Html.HiddenFor(o => o.GETINJECTDETAILINFO)%>
<%=Html.HiddenFor(o => o.SAVEURL)%>
<%=Html.HiddenFor(o => o.MATERIAL_ATTRIBUTE)%>
<script src="../../Scripts/FJCProductDetial.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript">
$(function () {
var attribute = document.getElementById("MATERIAL_ATTRIBUTE").value;
//获取物料下拉数据源
$('#MATERIAL_CODE').combotree({
url: "/Dict/GetFisMaterialTree?ordertype="+attribute,
panelHeight: '250',
panelWidth: '500',
});
List(1);
});
//导出
function Export() {
var ids = getSelectKey();
document.getElementById("selectKey").value = ids;
$.get("/ProductEnd/ExportExcel", $("form").serializeArray(), function (data) {
submitByButton("/ProductEnd/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("ProductEnd", "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>