#
luxiaotao1123
2021-06-21 f6c8a961595ea54f2c9a6b7da589480481cc6283
src/main/webapp/jsFiles/waitPakInLog.js
@@ -252,3 +252,17 @@
   //$('#mydlg').data('bootstrapValidator').resetForm(true);
   $("input[type=reset]").trigger("click");
}
//导出
function ExportExcel(){
   if(confirm("确认导出excel?")){
      var url = "work/exportWaitPakInLog.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;
   }
}