function UpdateSubjectProductNum() {
var arraySubjectNo = '';
$("input[name='SubjectNoCheckBox']").each(function () {
arraySubjectNo = arraySubjectNo + "," + $(this).val();
});
if (arraySubjectNo != "") {
$.ajax({
url: "/Outlet/SubjectConsole/UpdateSubjectProductNum",
type: "post",
dataType: "json",
data: "subjectNo=" + arraySubjectNo + "&type=1&t=" + new Date().getTime(),
success: function (data) {
if (data != null) {
for (var i = 0; i < data.jsonProduct.length; i++) {
$("#productNum_" + data.jsonProduct[i].SubjectNo).html(data.jsonProduct[i].ProductNum);
}
}
},
error: function (x, e) {
alert(x.responseText);
}
});
}
}