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.
142 lines
5.1 KiB
142 lines
5.1 KiB
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/AppMaster.Master"
|
|
Inherits="System.Web.Mvc.ViewPage<QMAPP.FJC.Web.Models.FIS.FISAssemblyModel>" %>
|
|
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
|
|
编辑
|
|
</asp:Content>
|
|
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
|
|
<%=Html.QPEdit("信息",QMFrameWork.WebUI.panelType.Update)%>
|
|
<table id="editTable" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<table>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.Id)%>:
|
|
</th>
|
|
<td>
|
|
<%=Model.Id%>
|
|
</td>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.AsmSetCode)%>:
|
|
</th>
|
|
<td>
|
|
<%=Model.AsmSetCode %>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.Name)%>:
|
|
</th>
|
|
<td>
|
|
<%=Model.Name%>
|
|
</td>
|
|
<th align="right">
|
|
|
|
</th>
|
|
<td>
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.MESModulFL)%>:
|
|
</th>
|
|
<td colspan="3">
|
|
<%=Html.QC(p => p.MESModulFL)%>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.MESModulFR)%>:
|
|
</th>
|
|
<td colspan="3">
|
|
<%=Html.QC(p => p.MESModulFR)%>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.MESModulRL)%>:
|
|
</th>
|
|
<td colspan="3">
|
|
<%=Html.QC(p => p.MESModulRL)%>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th align="right">
|
|
<%=Html.QV(p => p.MESModulRR)%>:
|
|
</th>
|
|
<td colspan="3">
|
|
<%=Html.QC(p => p.MESModulRR)%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<%=Html.HiddenFor(p => p.Id)%>
|
|
<%=Html.QPEnd() %>
|
|
<script language="javascript" type="text/javascript">
|
|
$(function () {
|
|
//*********************物料信息*************
|
|
$('#MESModulFL').combobox({
|
|
url: "/Dict/GetMaterialWithTypeComboxSource?materialtype=DP_FINASSY_LF",
|
|
//panelHeight: '150',
|
|
//panelWidth: '370',
|
|
width: 400,
|
|
editable: 'false',
|
|
valueField: 'MATERIAL_CODE',
|
|
textField: 'MATERIAL_NAME'
|
|
}
|
|
);
|
|
$('#MESModulFR').combobox({
|
|
url: "/Dict/GetMaterialWithTypeComboxSource?materialtype=DP_FINASSY_RF",
|
|
//panelHeight: '150',
|
|
//panelWidth: '370',
|
|
width: 400,
|
|
editable: 'false',
|
|
valueField: 'MATERIAL_CODE',
|
|
textField: 'MATERIAL_NAME'
|
|
}
|
|
);
|
|
$('#MESModulRL').combobox({
|
|
url: "/Dict/GetMaterialWithTypeComboxSource?materialtype=DP_FINASSY_LR",
|
|
//panelHeight: '150',
|
|
//panelWidth: '370',
|
|
width: 400,
|
|
editable: 'false',
|
|
valueField: 'MATERIAL_CODE',
|
|
textField: 'MATERIAL_NAME'
|
|
}
|
|
);
|
|
$('#MESModulRR').combobox({
|
|
url: "/Dict/GetMaterialWithTypeComboxSource?materialtype=DP_FINASSY_RR",
|
|
//panelHeight: '150',
|
|
//panelWidth: '370',
|
|
width: 400,
|
|
editable: 'false',
|
|
valueField: 'MATERIAL_CODE',
|
|
textField: 'MATERIAL_NAME'
|
|
}
|
|
);
|
|
//*********************物料信息结束*************
|
|
|
|
});
|
|
function Save() {
|
|
if (isValidate() == false) {
|
|
return false;
|
|
}
|
|
submitByButton("Save");
|
|
}
|
|
</script>
|
|
</asp:Content>
|
|
<asp:Content ID="Content3" ContentPlaceHolderID="ToolContent" runat="server">
|
|
<table width="100%" cellpadding="0" cellspacing="0">
|
|
<tr>
|
|
<td>
|
|
<%=Html.QTButtonSave("FISPhrase", "Save", "return Save();")%>
|
|
<%=Html.QTButtonBack("close", "List", "parent.closeAppWindow1();return false;")%>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</asp:Content>
|
|
|