|
|
@{ ViewBag.Title = "Index"; Layout = "~/Views/Shared/_Index.cshtml"; } <style> #ISO { width: 10px; } </style> <link href="~/Content/js/select2/select2.min.css" rel="stylesheet" /> <script src="~/Content/js/select2/select2.min.js"></script> <script> var ID = $.request("ID"); var ContainerID = $.request("ContainerID"); var ContainerCODE = $.request("ContainerCODE"); var ContainerType = decodeURI($.request("ContainerType")); var ContainerName = decodeURI($.request("ContainerName")); var Memo = decodeURI($.request("Memo")); var InventoryMixed = decodeURI($.request("InventoryMixed")); var ProjectMixed = decodeURI($.request("ProjectMixed")); var BatchMixed = decodeURI($.request("BatchMixed")); var Multiplex = decodeURI($.request("Multiplex")); $(function () { InitControl(); InitContro2(); if (ID != "") { debugger; $("#sel_ContainerID").val([ContainerID]).trigger("change"); $("#sel_ContainerType").val([ContainerType]).trigger("change"); $("#ContainerCODE").val(ContainerCODE); $("#ContainerName").val(ContainerName); $("#Memo").val(Memo); //允许料品混装 if (InventoryMixed == '是') { $("#InvMixedYes").prop("checked", true); } else {
$("#InvMixedNo").prop("checked", true); } //允许项目号混装 if (ProjectMixed == '是') { $("#ProjectMixedYes").prop("checked", true); } else {
$("#ProjectMixedNo").prop("checked", true); } //允许批次混装 if (BatchMixed == '是') { $("#BatchMixedYes").prop("checked", true); } else {
$("#BatchMixedNo").prop("checked", true); } //允许复用 if (Multiplex == '是') { $("#MultiplexYes").prop("checked", true); } else {
$("#MultiplexNo").prop("checked", true); } } });
function InitControl() { var $VenCode = $("#sel_ContainerID"); $VenCode.select2({ allowClear: true, escapeMarkup: function (m) { return m; } }); $.ajax({ url: "/WMS/BasicSettings/GetContainerID" + "?" + Math.random(), dataType: "json", async: false, success: function (data) { $.each(data, function (index, item) { $VenCode.append("<option value='" + item.ID + "'> " + item.ContainerName + "</option>"); }); } }); } function InitContro2() { var $VenCode = $("#sel_ContainerType"); $VenCode.select2({ allowClear: true, escapeMarkup: function (m) { return m; } }); $.ajax({ url: "/WMS/BasicSettings/GetContainerType" + "?" + Math.random(), dataType: "json", async: false, success: function (data) { $.each(data, function (index, item) { $VenCode.append("<option value='" + item.F_ItemName + "'> " + item.F_ItemName + "</option>"); }); } }); }
function submitForm() { debugger; var ContainerID = $("#sel_ContainerID").val(); var ContainerCODE = $("#ContainerCODE").val(); var ContainerName = $("#ContainerName").val(); var ContainerType = $("#sel_ContainerType").val(); var Memo = $("#Memo").val(); var InventoryMixed = $('input[name="InvMixed"]:checked').val();//允许料品混装 var ProjectMixed = $('input[name="ProjectMixed"]:checked').val();//允许项目号混装 var BatchMixed = $('input[name="BatchMixed"]:checked').val();//允许批次混装 var Multiplex = $('input[name="Multiplex"]:checked').val();//允许复用 //var Enable = $('input[name="State"]:checked').val(); if (ContainerCODE == "" || ContainerCODE == undefined) { $.modalAlertNew("WMS00018"); return; } if (ContainerName == "" || ContainerName == undefined) { $.modalAlertNew("WMS00019"); return; } var objArr = { ID:ID, ContainerID: ContainerID, ContainerCODE: ContainerCODE, ContainerName: ContainerName, ContainerType:ContainerType, Memo: Memo, InventoryMixed:InventoryMixed, ProjectMixed:ProjectMixed, BatchMixed:BatchMixed, Multiplex: Multiplex } debugger; if (ID!="") { $.submitForm({ url: "/WMS/BasicSettings/UpdateICSContainer" + "?" + Math.random(), param: { keyValue: JSON.stringify(objArr) }, success: function () { $.currentWindow().$("#gridList").trigger("reloadGrid"); } }) } else { $.submitForm({ url: "/WMS/BasicSettings/InsertICSContainer" + "?" + Math.random(), param: { keyValue: JSON.stringify(objArr) }, success: function () { $.currentWindow().$("#gridList").trigger("reloadGrid"); } }) } }
</script>
<form id="form1"> <div style="padding-top: 20px; margin-right: 20px;"> <table class="form"> <tr> <th class="formTitle">父容器:</th> <td class="formValue"> <select id="sel_ContainerID" name="sel_ContainerID" class="form-control select2" style="width: 150px" placeholder="请选择父容器..."></select> <input type="hidden" id="hidetext" /> </td> </tr> <tr> <th class="formTitle">容器代码:</th> <td class="formValue"> <input id="ContainerCODE" name="ContainerCODE" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="容器代码" /> </td> </tr> <tr> <th class="formTitle">容器名称:</th> <td class="formValue"> <input id="ContainerName" name="ContainerName" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="容器名称" /> </td> </tr> <tr> <th class="formTitle">容器类型:</th> <td class="formValue"> <select id="sel_ContainerType" name="sel_ContainerType" class="form-control select2" style="width: 500px" placeholder="容器类型"></select> <input type="hidden" id="hidetext" /> </td> </tr> <tr> <th class="formTitle">备注:</th> <td class="formValue"> <input id="Memo" name="Memo" type="text" class="form-control required" style="width: 359px;" maxlength="50" onclick="WdatePicker({ dateFmt: 'yyyy-MM-dd' })" placeholder="备注" /> </td> </tr> <tr> <th class="formTitle">允许料品混装:</th> <td class="formValue"> <div class="input-group" id="InvMixedchaeckbox"> <input type="radio" name="InvMixed" value="1" id="InvMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label> <input type="radio" name="InvMixed" value="0" id="InvMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label> </div>
</td> </tr> <tr> <th class="formTitle">允许项目号混装:</th> <td class="formValue"> <div class="input-group" id="ProjectMixedchaeckbox"> <input type="radio" name="ProjectMixed" value="1" id="ProjectMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label> <input type="radio" name="ProjectMixed" value="0" id="ProjectMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label> </div>
</td> </tr> <tr> <th class="formTitle">允许批次混装:</th> <td class="formValue"> <div class="input-group" id="BatchMixedchaeckbox"> <input type="radio" name="BatchMixed" value="1" id="BatchMixedYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label> <input type="radio" name="BatchMixed" value="0" id="BatchMixedNo" style="width:60px" /><label for="cb-QuotedPrice">否</label> </div>
</td> </tr> <tr> <th class="formTitle">允许复用:</th> <td class="formValue"> <div class="input-group" id="Multiplexchaeckbox"> <input type="radio" name="Multiplex" value="1" id="MultiplexYes" style="width:60px" /><label for="cb-NoQuotedPrice">是</label> <input type="radio" name="Multiplex" value="0" id="MultiplexNo" style="width:60px" /><label for="cb-QuotedPrice">否</label> </div> </td> </tr>
</table> </div> </form>
|