#
luxiaotao1123
2021-06-21 f6c8a961595ea54f2c9a6b7da589480481cc6283
src/main/webapp/jsFiles/waitPakOutLog.js
@@ -283,3 +283,17 @@
   //$('#mydlg').data('bootstrapValidator').resetForm(true);
   $("input[type=reset]").trigger("click");
}
//导出
function ExportExcel(){
   if(confirm("确认导出excel?")){
      var url = "work/exportWaitPakOutLog.action?";
      url += "matnr=" + $("#search_sheet_no").val();
      url += "&maktx=" + $("#search_mat_no").val();
      url += "&begin_date=" + $("#begin_date").val();
      url += "&end_date=" + $("#end_date").val();
      location.href=url;
   }else{
      return false;
   }
}