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.
69 lines
1.8 KiB
69 lines
1.8 KiB
|
|
|
|
@{
|
|
ViewBag.Title = "SeachInventory";
|
|
Layout = "~/Views/Shared/_Index.cshtml";
|
|
}
|
|
<link href="~/Content/js/select2/select2.min.css" rel="stylesheet" />
|
|
<link href="~/Content/js/dialog/dialog.css?v=20120420" rel="stylesheet" />
|
|
<script src="~/Content/js/datepicker/WdatePicker.js"></script>
|
|
<script src="~/Content/js/select2/select2.min.js"></script>
|
|
<script>
|
|
debugger;
|
|
var WorkPoint = '@NFine.Code.OperatorProvider.Provider.GetCurrent().Location'
|
|
var LotNo = decodeURI($.request("LotNo"));
|
|
$(function () {
|
|
|
|
})
|
|
|
|
|
|
|
|
function submitForm() {
|
|
var Count = $("#txtCount").val();
|
|
if (Count=="") {
|
|
$.modalAlert("请录入数量!", "warning");
|
|
return;
|
|
}
|
|
$.modalConfirm("确定修改吗?", function (r) {
|
|
if (r) {
|
|
debugger;
|
|
$.submitForm({
|
|
url: "/WMS/ICSMTDOC/UpdateICSMTDOC?LotNo=" + LotNo + "&Count=" + Count + "&" + Math.random(),
|
|
// param: { ICSMTDOC: JSON.stringify(ICSMTDOC) },
|
|
success: function () {
|
|
$.currentWindow().$("#gridList").trigger("reloadGrid");
|
|
}
|
|
})
|
|
}
|
|
});
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
function Close() {
|
|
$.modalClose();
|
|
}
|
|
function reloadData() {
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
<form id="form1">
|
|
<div style="padding-top: 20px; margin-right: 20px;">
|
|
<table class="form">
|
|
<tr>
|
|
<th class="formTitle"><span style="color: red;">*</span>数量</th>
|
|
<td class="formValue">
|
|
<input id="txtCount" name="txtCount" type="text" class="form-control required" placeholder="请输入数量" />
|
|
</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</div>
|
|
</form>
|
|
|