123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- var url = CMS_SystemConfig.VirtualDirectoryPath + "/StockOut/Edit";
- var ViewUrl = CMS_SystemConfig.VirtualDirectoryPath + "/StockOut/StockOutDetailList";
- var mnu = "";
- //加载
- $(function () {
- mnu = $.SystemGeneral.getUrlParam("MNU");
- })
- function reload() {
- $("#dgStockOutList").cmsXDataTable("load", $.getDataGridParams("dgStockOutList"));
- }
- //获取选中的数据
- function validChoose() {
- var d = [];
- $.each($("#dgStockOutList").cmsXDataTable("getSelections"), function (index) {
- d.push(this.StockOutID);
- });
- return d;
- }
- //修改
- function StockOut_Update() {
- var d = validChoose();
- if (d.length == 0) {
- $.messager.alert("系统提示", "请选择您要修改的信息。");
- return;
- }
- if (d.length > 1) {
- $.messager.alert("系统提示", "只能选择单个记录进行修改。");
- return;
- }
- var redirectTo = url + '?stockOutID=' + d + '&MNU=' + mnu;
- $.popupTopWindow('个人领书信息', redirectTo, 800, 550, null, null);
- }
- //保存数据
- function StockOut_Save()
- {
- $(document.forms[0]).submit();//提交表单
- }
- //导出
- function StockOut_Export() {
- $("#formQuery").submit();
- }
- //删除
- function StockOut_Delete() {
- var d = validChoose().join(',');
- if (d == "") {
- $.messager.alert("系统提示", "请选择您要删除的信息。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
- if (r) {
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/StockOut/Delete', { stockOutIDs: d }, function (data) {
- if (data == "删除成功。") {
- $.messager.alert("系统提示", data);
- $("#dgStockOutList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data);
- }
- });
- }
- });
- }
- //学生领书
- function StockOut_SD_Add() {
- var redirectTo = url + '?MNU=' + mnu + '&stockOutType=' + studentTypeID.toString();
- $.popupTopWindow('学生领书', redirectTo, 800, 550, null, null);
- }
- //教师领书
- function StockOut_TM_Add() {
- var redirectTo = url + '?MNU=' + mnu + '&stockOutType=' + teacherTypeID.toString();
- $.popupTopWindow('教师领书', redirectTo, 800, 550, null, null);
- }
- //个人领书明细
- function StockOutDetailView(rowindex, rowdata) {
- var redirectTo = ViewUrl + '?stockOutID=' + rowdata.StockOutID + '&MNU=' + mnu;
- $.popupTopWindow('个人领书明细', redirectTo, 800, 550, null, null);
- }
- //提交
- function StockOut_Submit() {
- var d = validChoose().join(',');
- if (d == "") {
- $.messager.alert("系统提示", "请选择您要提交的信息。");
- return;
- }
- $.messager.confirm("系统提示", "您确定要提交选择的信息?", function (r) {
- if (r) {
- $.post(CMS_SystemConfig.VirtualDirectoryPath + '/StockOut/Submit?hid_ActionsType=Submit', { stockOutIDs: d }, function (data) {
- if (data == "提交出库成功。") {
- $.messager.alert("系统提示", data);
- $("#dgStockOutList").cmsXDataTable('load');
- } else {
- $.messager.alert("系统提示", data);
- }
- });
- }
- });
- }
- function QueryCourseDropdownList() {
- reload();
- }
- function QuerySchoolYearDropdownList() {
- reload();
- }
- function QueryLibraryDropdownList() {
- reload();
- }
- function QueryPublishDropdownList() {
- reload();
- }
- function QueryEndStockInTimeList() {
- $("#EndStockInTime").val($dp.cal.getNewDateStr())
- reload();
- }
- function QueryStartStockInTimeList() {
- $("#StartStockInTime").val($dp.cal.getNewDateStr())
- reload();
- }
|