123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 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_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_Add() {
- var redirectTo = url + '?MNU=' + mnu + '&isDetailSelectMax=1&stockOutType=' + refundTypeID.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();
- }
|