StockInSetList.js 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. var url = CMS_SystemConfig.VirtualDirectoryPath + "/StockInSet/Edit";
  2. var mnu = "";
  3. //加载
  4. $(function () {
  5. mnu = $.SystemGeneral.getUrlParam("MNU");
  6. })
  7. //刷新
  8. function reload() {
  9. $("#dgStockInSetList").cmsXDataTable("load", $.getDataGridParams("dgStockInSetList"));
  10. }
  11. //获取选中的数据
  12. function validChoose() {
  13. var d = [];
  14. $.each($("#dgStockInSetList").cmsXDataTable("getSelections"), function (index) {
  15. d.push(this.SupplierDiscountSetID);
  16. });
  17. return d;
  18. }
  19. //新增
  20. function StockInSet_Add() {
  21. var d = validChoose();
  22. if (d.length > 0) {
  23. $.popupTopWindow('供应商折扣率复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/StockInSet/CopyAdd?supplierDiscountSetID=' + d[0] + '&MNU=' + mnu, 650, 245, null, null);
  24. } else {
  25. var redirectTo = url + "?MNU=" + mnu;
  26. $.popupTopWindow('供应商折扣率新增', redirectTo, 650, 245, null, null);
  27. }
  28. }
  29. //修改
  30. function StockInSet_Edit() {
  31. var d = validChoose();
  32. if (d.length == 0) {
  33. $.messager.alert("系统信息", "请选择您要修改的信息。");
  34. return;
  35. }
  36. if (d.length > 1) {
  37. $.messager.alert("系统信息", "只能选择单个记录进行修改。");
  38. return;
  39. }
  40. var redirectTo = url + "?supplierDiscountSetID=" + d + "&MNU=" + mnu;
  41. $.popupTopWindow('供应商折扣率修改', redirectTo, 650, 245, null, null);
  42. }
  43. //删除
  44. function StockInSet_Delete() {
  45. var d = validChoose().join(',');
  46. if (d == "") {
  47. $.messager.alert("系统提示", "请选择您要删除的信息。");
  48. return;
  49. }
  50. $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
  51. if (r) {
  52. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/StockInSet/Delete', { supplierDiscountSetIDs: d }, function (data) {
  53. if (data == "删除成功。") {
  54. $.messager.alert("系统提示", data);
  55. $("#dgStockInSetList").cmsXDataTable('load');
  56. } else {
  57. $.messager.alert("系统提示", data);
  58. }
  59. });
  60. }
  61. });
  62. }
  63. function StockInSet_Export() {
  64. var d = validChoose().join(',')
  65. if (d != "") {
  66. document.getElementById("SupplierDiscountSetID").value = d;
  67. }
  68. else {
  69. document.getElementById("SupplierDiscountSetID").value = "";
  70. }
  71. $("#formQuery").submit();
  72. }