瀏覽代碼

:sparkles: 增加文件导出列表功能,目前只完成pdf文件,rar文件未完成

Twelve615 1 年之前
父節點
當前提交
7cfdaee1d1

+ 5 - 1
airport-vue/src/components/dict/JDictSelectTag.vue

@@ -7,7 +7,7 @@
     <a-radio-button v-for="(item, key) in dictOptions" :key="key" :value="item.value">{{ item.text }}</a-radio-button>
   </a-radio-group>
 
-  <a-select v-else-if="tagType=='select'" :getPopupContainer = "getPopupContainer" :placeholder="placeholder" :disabled="disabled" :value="getValueSting" @change="handleInput">
+  <a-select v-else-if="tagType=='select'" :allowClear="allowClear" :getPopupContainer = "getPopupContainer" :placeholder="placeholder" :disabled="disabled" :value="getValueSting" @change="handleInput">
     <a-select-option :value="undefined">请选择</a-select-option>
     <a-select-option v-for="(item, key) in dictOptions" :key="key" :value="item.value">
       <span style="display: inline-block;width: 100%" :title=" item.text || item.label ">
@@ -31,6 +31,10 @@
       getPopupContainer:{
         type: Function,
         default: (node) => node.parentNode
+      },
+      allowClear: {
+        type: Boolean,
+        default: false
       }
     },
     data() {

+ 260 - 0
airport-vue/src/views/admin/AdminFileExportList.vue

@@ -0,0 +1,260 @@
+<template>
+  <a-card :bordered="false">
+
+    <!-- 查询区域 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="文件名">
+              <a-input placeholder="请输入文件名" v-model="queryParam.name" allowClear></a-input>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="状态">
+              <j-dict-select-tag placeholder="请选择状态" v-model="queryParam.exportStatus" dictCode="EXPORT_FILE_STATUS"
+                                 allowClear />
+            </a-form-item>
+          </a-col>
+          <!--          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+                      <a-form-item label="下载url">
+                        <a-input placeholder="请输入下载url" v-model="queryParam.url"></a-input>
+                      </a-form-item>
+                    </a-col>
+                  <template v-if="toggleSearchStatus">
+                    <a-col :xl="6" :lg="7" :md="8" :sm="24">
+                      <a-form-item label="导出的文件类型">
+                        <a-input placeholder="请输入导出的文件类型" v-model="queryParam.fileType"></a-input>
+                      </a-form-item>
+                    </a-col>
+                    <a-col :xl="6" :lg="7" :md="8" :sm="24">
+                      <a-form-item label="文件大小byte">
+                        <a-input placeholder="请输入文件大小byte" v-model="queryParam.fileSize"></a-input>
+                      </a-form-item>
+                    </a-col>
+                    <a-col :xl="6" :lg="7" :md="8" :sm="24">
+                      <a-form-item label="导出的文件的数量">
+                        <a-input placeholder="请输入导出的文件的数量" v-model="queryParam.fileNum"></a-input>
+                      </a-form-item>
+                    </a-col>
+                    </template>-->
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              <!--              <a @click="handleToggleSearch" style="margin-left: 8px">
+                              {{ toggleSearchStatus ? '收起' : '展开' }}
+                              <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
+                            </a>-->
+            </span>
+          </a-col>
+
+        </a-row>
+      </a-form>
+    </div>
+
+    <!-- 操作按钮区域 -->
+    <!--    <div class="table-operator">
+          <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
+          <a-button type="primary" icon="download" @click="handleExportXls('文件导出目录')">导出</a-button>
+          <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
+            <a-button type="primary" icon="import">导入</a-button>
+          </a-upload>
+          <a-dropdown v-if="selectedRowKeys.length > 0">
+            <a-menu slot="overlay">
+              <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
+            </a-menu>
+            <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
+          </a-dropdown>
+        </div>-->
+
+    <!-- table区域-begin -->
+    <div>
+      <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
+        <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a
+        style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
+        <a style="margin-left: 24px" @click="onClearSelected">清空</a>
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        class="j-table-force-nowrap"
+        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
+        @change="handleTableChange">
+
+        <template slot="fileName" slot-scope="text, record">
+          <a-button type="link" @click="download(record.url,record.name)">
+            {{ record.name }}
+          </a-button>
+        </template>
+        <template slot="fileSize" slot-scope="text, record">
+          <span style="font-size: 15px">
+            {{ record.fileSize <= 0 ? 0 : (record.fileSize / 1024 / 1024).toFixed(2) }} MB
+          </span>
+        </template>
+        <template slot="exportStatus" slot-scope="text, record">
+            <span>
+              <a-tag v-if="record.exportStatus==='0'" color="orange">
+                <a-icon type="loading" />&nbsp;{{ record.exportStatus_dictText }}
+              </a-tag>
+              <a-tag v-if="record.exportStatus==='1'" color="green">
+                <a-icon type="check-circle" theme="filled"
+                        style="color: #68cc3c" />&nbsp;{{ record.exportStatus_dictText }}
+              </a-tag>
+            </span>
+        </template>
+
+        <span slot="action" slot-scope="text, record">
+          <a-button type="link" @click="download(record.url,record.name)">
+            下载
+          </a-button>
+          <!--          <a @click="handleEdit(record)">编辑</a>-->
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
+            <a-menu slot="overlay">
+              <a-menu-item>
+                <a-popconfirm title="确定重新执行导出任务吗?" @confirm="() => handleReExportFile(record)">
+                  <a>重新导出</a>
+                </a-popconfirm>
+              </a-menu-item>
+              <a-menu-item>
+                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
+                  <a>删除</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+    <!-- table区域-end -->
+
+    <!-- 表单区域 -->
+    <adminFileExport-modal ref="modalForm" @ok="modalFormOk"></adminFileExport-modal>
+  </a-card>
+</template>
+
+<script>
+import '@/assets/less/TableExpand.less'
+import AdminFileExportModal from './modules/AdminFileExportModal'
+import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+import { postAction } from '@/api/manage'
+
+export default {
+  name: 'AdminFileExportList',
+  mixins: [JeecgListMixin],
+  components: {
+    AdminFileExportModal
+  },
+  data() {
+    return {
+      description: '文件导出目录管理页面',
+      // 表头
+      columns: [
+        {
+          title: '#',
+          dataIndex: '',
+          key: 'rowIndex',
+          width: 60,
+          align: 'center',
+          customRender: function(t, r, index) {
+            return parseInt(index) + 1
+          }
+        },
+        {
+          title: '文件名',
+          align: 'center',
+          dataIndex: 'name',
+          scopedSlots: { customRender: 'fileName' }
+        },
+        {
+          title: '文件大小',
+          align: 'center',
+          width: 120,
+          dataIndex: 'fileSize',
+          scopedSlots: { customRender: 'fileSize' }
+        },
+        {
+          title: '导出状态',
+          align: 'center',
+          width: 120,
+          dataIndex: 'exportStatus_dictText',
+          scopedSlots: { customRender: 'exportStatus' }
+        },
+        {
+          title: '创建时间',
+          align: 'center',
+          width: 150,
+          dataIndex: 'createTime'
+        },
+        {
+          title: '最后导出时间',
+          width: 150,
+          align: 'center',
+          dataIndex: 'updateTime'
+        },
+        {
+          title: '操作',
+          dataIndex: 'action',
+          width: 80,
+          align: 'center',
+          scopedSlots: { customRender: 'action' }
+        }
+      ],
+      url: {
+        list: '/admin_file_export/adminFileExport/list',
+        delete: '/admin_file_export/adminFileExport/delete',
+        deleteBatch: '/admin_file_export/adminFileExport/deleteBatch',
+        exportXlsUrl: 'admin_file_export/adminFileExport/exportXls',
+        importExcelUrl: 'admin_file_export/adminFileExport/importExcel',
+        dcPDF: '/admin_order/adminOrder/exportPdf',
+      },
+      queryParam: {
+        exportType: 'AdminOrderList'
+      }
+    }
+  },
+  computed: {
+    importExcelUrl: function() {
+      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
+    }
+  },
+  methods: {
+    download(href, title) {
+      const a = document.createElement('a')
+      a.setAttribute('href', href)
+      a.setAttribute('download', title)
+      a.click()
+    },
+    handleReExportFile(record) {
+      if (record.fileType === 'pdf') {
+        postAction(this.url.dcPDF + '/' + record.exportParam, {}).then((res) => {
+          this.loading2 = !this.loading2;
+          if (res.success) {
+            this.$message.success('导出成功')
+            this.download(res.result,"pdf")
+          } else {
+            this.$message.warning(res.message)
+          }
+        })
+      } else  {
+
+      }
+    }
+  }
+}
+</script>
+<style scoped>
+@import '~@assets/less/common.less';
+</style>

+ 53 - 3
airport-vue/src/views/admin/AdminOrderList.vue

@@ -57,7 +57,8 @@
     <!-- 操作按钮区域 begin -->
     <div class="table-operator">
       <!--      <a-button type="primary" icon="plus" @click="handleAdd">新增</a-button>-->
-      <a-button type="primary" icon="download" @click="DC1()">导出</a-button>
+      <a-button type="primary" icon="download" @click="addExportPdfFilesTask()">导出</a-button>
+      <a-button type="primary" icon="file-sync" @click="showExportFileListModal()">导出任务</a-button>
       <!--      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
       <!--        <a-button type="primary" icon="import">导入</a-button>-->
       <!--      </a-upload>-->
@@ -76,6 +77,14 @@
       <!--        </a-button>-->
       <!--      </a-dropdown>-->
     </div>
+    <a-modal v-model="visible" title="文件导出任务" width="70%">
+      <admin-file-export-list ref="adminFileExportList"/>
+      <template slot="footer">
+        <a-button key="back" @click="closeExportFileListModal">
+          关闭
+        </a-button>
+      </template>
+    </a-modal>
     <!-- 操作按钮区域 end -->
 
     <!-- table区域 begin -->
@@ -182,6 +191,7 @@ import '@/assets/less/TableExpand.less'
 import store from '../dashboard/IndexChart'
 
 import { postAction } from '@/api/manage'
+import AdminFileExportList from './AdminFileExportList'
 
 export default {
   name: 'AdminOrderList',
@@ -189,11 +199,13 @@ export default {
   components: {
     AdminOrderModal,
     AdminOrderExamineSubTable,
-    JDictSelectTag
+    JDictSelectTag,
+    AdminFileExportList,
   },
   data() {
     return {
       loading2: false,
+      visible: false,
       description: '订单管理列表管理页面',
       // 表头
       columns: [
@@ -257,7 +269,8 @@ export default {
         deleteBatch: '/admin_order/adminOrder/deleteBatch',
         exportXlsUrl: '/admin_order/adminOrder/exportXls',
         importExcelUrl: '/admin_order/adminOrder/importExcel',
-        dcPDF: '/admin_order/adminOrder/dcPDF'
+        dcPDF: '/admin_order/adminOrder/exportPdf',
+        addExportPdfFilesTaskUrl: '/admin_order/adminOrder/addExportPdfFilesTask'
       },
       superFieldList: []
     }
@@ -280,6 +293,43 @@ export default {
     onCreateDateRangeOk(value) {
       console.log('onOk: ', value);
     },
+    showExportFileListModal() {
+      this.visible = true;
+      if (this.$refs.adminFileExportList){
+        this.$refs.adminFileExportList.searchQuery();
+      }
+    },
+    closeExportFileListModal(e) {
+      this.visible = false;
+    },
+    addExportPdfFilesTask() {
+      if (this.selectedRowKeys.length <= 0) {
+        this.$message.warning('请选择一条记录!')
+        return
+      }if(this.selectedRowKeys.length === 1){
+        // alert("只有一条记录");
+        this.loading2 = !this.loading2
+        postAction(this.url.dcPDF + '/' + this.selectedRowKeys[0], {}).then((res) => {
+          this.loading2 = !this.loading2;
+          if (res.success) {
+            this.$message.success('导出成功')
+            this.download(res.result,"pdf")
+          } else {
+            this.$message.warning(res.message)
+          }
+        })
+      } else {
+        this.loading2 = !this.loading2
+        postAction(this.url.addExportPdfFilesTaskUrl, this.selectedRowKeys).then((res) => {
+          this.loading2 = !this.loading2
+          if (res.success) {
+            this.$message.success('已经添加导出任务,请在下载列表中查看')
+          } else {
+            this.$message.warning(res.message)
+          }
+        })
+      }
+    },
     DC1() {
       if (this.selectedRowKeys.length <= 0) {
         this.$message.warning('请选择一条记录!')

+ 135 - 0
airport-vue/src/views/admin/modules/AdminFileExportModal.vue

@@ -0,0 +1,135 @@
+<template>
+  <j-modal
+    :title="title"
+    :width="800"
+    :visible="visible"
+    :confirmLoading="confirmLoading"
+    switchFullscreen
+    @ok="handleOk"
+    @cancel="handleCancel"
+    cancelText="关闭">
+    
+    <a-spin :spinning="confirmLoading">
+      <a-form-model ref="form" :model="model" :rules="validatorRules">
+      
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="name" label="文件名">
+          <a-input placeholder="请输入文件名" v-model="model.name" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="url" label="下载url">
+          <a-input placeholder="请输入下载url" v-model="model.url" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="fileType" label="导出的文件类型">
+          <a-input placeholder="请输入导出的文件类型" v-model="model.fileType" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="fileSize" label="文件大小byte">
+          <a-input placeholder="请输入文件大小byte" v-model="model.fileSize" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="fileNum" label="导出的文件的数量">
+          <a-input-number v-model="model.fileNum"/>
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exportStatus" label="使用枚举EXPORT_FILE_STATUS">
+          <a-input placeholder="请输入使用枚举EXPORT_FILE_STATUS" v-model="model.exportStatus" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exportParam" label="导出时的参数">
+          <a-input placeholder="请输入导出时的参数" v-model="model.exportParam" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exportType" label="记录在哪个功能模块下导出">
+          <a-input placeholder="请输入记录在哪个功能模块下导出" v-model="model.exportType" />
+        </a-form-model-item>
+        <a-form-model-item :labelCol="labelCol" :wrapperCol="wrapperCol" prop="exportUser" label="导出人">
+          <a-input placeholder="请输入导出人" v-model="model.exportUser" />
+        </a-form-model-item>
+		
+      </a-form-model>
+    </a-spin>
+  </j-modal>
+</template>
+
+<script>
+  import { httpAction } from '@/api/manage'
+  import moment from "moment"
+
+  export default {
+    name: "AdminFileExportModal",
+    data () {
+      return {
+        title:"操作",
+        visible: false,
+        model: {},
+        labelCol: {
+          xs: { span: 24 },
+          sm: { span: 5 },
+        },
+        wrapperCol: {
+          xs: { span: 24 },
+          sm: { span: 16 },
+        },
+
+        confirmLoading: false,
+        validatorRules:{
+        },
+        url: {
+          add: "/admin_file_export/adminFileExport/add",
+          edit: "/admin_file_export/adminFileExport/edit",
+        },
+      }
+    },
+    created () {
+    },
+    methods: {
+      add () {
+        //初始化默认值
+        this.edit({});
+      },
+      edit (record) {
+        this.model = Object.assign({}, record);
+        this.visible = true;
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+        this.$refs.form.clearValidate();
+      },
+      handleOk () {
+        const that = this;
+        // 触发表单验证
+         this.$refs.form.validate(valid => {
+          if (valid) {
+            that.confirmLoading = true;
+            let httpurl = '';
+            let method = '';
+            if(!this.model.id){
+              httpurl+=this.url.add;
+              method = 'post';
+            }else{
+              httpurl+=this.url.edit;
+               method = 'put';
+            }
+            httpAction(httpurl,this.model,method).then((res)=>{
+              if(res.success){
+                that.$message.success(res.message);
+                that.$emit('ok');
+              }else{
+                that.$message.warning(res.message);
+              }
+            }).finally(() => {
+              that.confirmLoading = false;
+              that.close();
+            })
+          }else{
+             return false;
+          }
+        })
+      },
+      handleCancel () {
+        this.close()
+      },
+
+
+    }
+  }
+</script>
+
+<style lang="less" scoped>
+
+</style>

+ 180 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/controller/AdminFileExportController.java

@@ -0,0 +1,180 @@
+package org.jeecg.modules.admin_file_export.controller;
+
+import java.io.File;
+import java.util.Arrays;
+import java.util.List;
+import java.util.Map;
+import java.io.IOException;
+import java.io.UnsupportedEncodingException;
+import java.net.URLDecoder;
+import javax.servlet.http.HttpServletRequest;
+import javax.servlet.http.HttpServletResponse;
+
+import org.jeecg.common.api.vo.Result;
+import org.jeecg.common.system.query.QueryGenerator;
+import org.jeecg.common.aspect.annotation.AutoLog;
+import org.jeecg.common.util.oConvertUtils;
+import org.jeecg.modules.admin_file_export.entity.AdminFileExport;
+import org.jeecg.modules.admin_file_export.service.IAdminFileExportService;
+
+import java.util.Date;
+
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
+import lombok.extern.slf4j.Slf4j;
+import org.jeecg.common.system.base.controller.JeecgController;
+import org.jeecg.modules.utils.AirportUtil;
+import org.jeecgframework.poi.excel.ExcelImportUtil;
+import org.jeecgframework.poi.excel.def.NormalExcelConstants;
+import org.jeecgframework.poi.excel.entity.ExportParams;
+import org.jeecgframework.poi.excel.entity.ImportParams;
+import org.jeecgframework.poi.excel.view.JeecgEntityExcelView;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
+import org.springframework.web.multipart.MultipartHttpServletRequest;
+import org.springframework.web.servlet.ModelAndView;
+import com.alibaba.fastjson.JSON;
+import io.swagger.annotations.Api;
+import io.swagger.annotations.ApiOperation;
+
+/**
+ * @Description: 文件导出目录
+ * @Author: jeecg-boot
+ * @Date: 2023-10-30
+ * @Version: V1.0
+ */
+@Slf4j
+@Api(tags = "文件导出目录")
+@RestController
+@RequestMapping("/admin_file_export/adminFileExport")
+public class AdminFileExportController extends JeecgController<AdminFileExport, IAdminFileExportService> {
+    @Autowired
+    private IAdminFileExportService adminFileExportService;
+
+    /**
+     * 分页列表查询
+     *
+     * @param adminFileExport
+     * @param pageNo
+     * @param pageSize
+     * @param req
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-分页列表查询")
+    @ApiOperation(value = "文件导出目录-分页列表查询", notes = "文件导出目录-分页列表查询")
+    @GetMapping(value = "/list")
+    public Result<?> queryPageList(AdminFileExport adminFileExport,
+                                   @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
+                                   @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
+                                   HttpServletRequest req) {
+        QueryWrapper<AdminFileExport> queryWrapper = QueryGenerator.initQueryWrapper(adminFileExport, req.getParameterMap());
+        Page<AdminFileExport> page = new Page<AdminFileExport>(pageNo, pageSize);
+        IPage<AdminFileExport> pageList = adminFileExportService.page(page, queryWrapper);
+        return Result.OK(pageList);
+    }
+
+    /**
+     * 添加
+     *
+     * @param adminFileExport
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-添加")
+    @ApiOperation(value = "文件导出目录-添加", notes = "文件导出目录-添加")
+    @PostMapping(value = "/add")
+    public Result<?> add(@RequestBody AdminFileExport adminFileExport) {
+        adminFileExportService.save(adminFileExport);
+        return Result.OK("添加成功!");
+    }
+
+    /**
+     * 编辑
+     *
+     * @param adminFileExport
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-编辑")
+    @ApiOperation(value = "文件导出目录-编辑", notes = "文件导出目录-编辑")
+    @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
+    public Result<?> edit(@RequestBody AdminFileExport adminFileExport) {
+        adminFileExportService.updateById(adminFileExport);
+        return Result.OK("编辑成功!");
+    }
+
+    /**
+     * 通过id删除
+     *
+     * @param id
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-通过id删除")
+    @ApiOperation(value = "文件导出目录-通过id删除", notes = "文件导出目录-通过id删除")
+    @DeleteMapping(value = "/delete")
+    public Result<?> delete(@RequestParam(name = "id", required = true) String id) {
+        AdminFileExport byId = adminFileExportService.getById(id);
+        if (byId != null) {
+            String name = AirportUtil.getLocalUploadTempPath() + "/" + byId.getName();
+            File file = new File(name);
+            if (file.exists()) {
+                file.delete();
+            }
+        }
+        adminFileExportService.removeById(id);
+        return Result.OK("删除成功!");
+    }
+
+    /**
+     * 批量删除
+     *
+     * @param ids
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-批量删除")
+    @ApiOperation(value = "文件导出目录-批量删除", notes = "文件导出目录-批量删除")
+    @DeleteMapping(value = "/deleteBatch")
+    public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
+        this.adminFileExportService.removeByIds(Arrays.asList(ids.split(",")));
+        return Result.OK("批量删除成功!");
+    }
+
+    /**
+     * 通过id查询
+     *
+     * @param id
+     * @return
+     */
+    @AutoLog(value = "文件导出目录-通过id查询")
+    @ApiOperation(value = "文件导出目录-通过id查询", notes = "文件导出目录-通过id查询")
+    @GetMapping(value = "/queryById")
+    public Result<?> queryById(@RequestParam(name = "id", required = true) String id) {
+        AdminFileExport adminFileExport = adminFileExportService.getById(id);
+        return Result.OK(adminFileExport);
+    }
+
+    /**
+     * 导出excel
+     *
+     * @param request
+     * @param adminFileExport
+     */
+    @RequestMapping(value = "/exportXls")
+    public ModelAndView exportXls(HttpServletRequest request, AdminFileExport adminFileExport) {
+        return super.exportXls(request, adminFileExport, AdminFileExport.class, "文件导出目录");
+    }
+
+    /**
+     * 通过excel导入数据
+     *
+     * @param request
+     * @param response
+     * @return
+     */
+    @RequestMapping(value = "/importExcel", method = RequestMethod.POST)
+    public Result<?> importExcel(HttpServletRequest request, HttpServletResponse response) {
+        return super.importExcel(request, response, AdminFileExport.class);
+    }
+
+}

+ 84 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/entity/AdminFileExport.java

@@ -0,0 +1,84 @@
+package org.jeecg.modules.admin_file_export.entity;
+
+import java.io.Serializable;
+import java.util.Date;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import com.baomidou.mybatisplus.annotation.TableField;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import lombok.experimental.Accessors;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import org.jeecg.common.aspect.annotation.Dict;
+import org.springframework.format.annotation.DateTimeFormat;
+import org.jeecgframework.poi.excel.annotation.Excel;
+
+/**
+ * @Description: 文件导出目录
+ * @Author: jeecg-boot
+ * @Date:   2023-10-30
+ * @Version: V1.0
+ */
+@Data
+@TableName("admin_file_export")
+@EqualsAndHashCode(callSuper = false)
+@Accessors(chain = true)
+@ApiModel(value="admin_file_export对象", description="文件导出目录")
+public class AdminFileExport {
+
+	/**id*/
+	@TableId(type = IdType.AUTO)
+    @ApiModelProperty(value = "id")
+	private java.lang.Integer id;
+	/**文件名*/
+	@Excel(name = "文件名", width = 15)
+    @ApiModelProperty(value = "文件名")
+	private java.lang.String name;
+	/**下载url*/
+	@Excel(name = "下载url", width = 15)
+    @ApiModelProperty(value = "下载url")
+	private java.lang.String url;
+	/**导出的文件类型*/
+	@Excel(name = "导出的文件类型", width = 15)
+    @ApiModelProperty(value = "导出的文件类型")
+	private java.lang.String fileType;
+	/**文件大小byte*/
+	@Excel(name = "文件大小byte", width = 15)
+    @ApiModelProperty(value = "文件大小byte")
+	private java.lang.Long fileSize;
+	/**导出的文件的数量*/
+	@Excel(name = "导出的文件的数量", width = 15)
+    @ApiModelProperty(value = "导出的文件的数量")
+	private java.lang.Integer fileNum;
+	/**使用枚举EXPORT_FILE_STATUS*/
+	@Excel(name = "导出状态", width = 15)
+	@Dict(dicCode = "EXPORT_FILE_STATUS")
+	@ApiModelProperty(value = "导出状态")
+	private java.lang.String exportStatus;
+	/**导出时的参数*/
+	@Excel(name = "导出时的参数", width = 15)
+    @ApiModelProperty(value = "导出时的参数")
+	private java.lang.String exportParam;
+	/**记录在哪个功能模块下导出*/
+	@Excel(name = "记录在哪个功能模块下导出", width = 15)
+	@Dict(dicCode = "EXPORT_FILE_TYPE")
+	@ApiModelProperty(value = "记录在哪个功能模块下导出")
+	private java.lang.String exportType;
+	/**导出人*/
+	@Excel(name = "导出人", width = 15)
+    @ApiModelProperty(value = "导出人")
+	private java.lang.String exportUser;
+	/**更新人*/
+	@Excel(name = "更新人", width = 15)
+    @ApiModelProperty(value = "更新人")
+	private java.lang.String updateBy;
+	/**导出时间*/
+    @ApiModelProperty(value = "导出时间")
+	private java.util.Date createTime;
+	/**修改时间*/
+    @ApiModelProperty(value = "修改时间")
+	private java.util.Date updateTime;
+}

+ 17 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/mapper/AdminFileExportMapper.java

@@ -0,0 +1,17 @@
+package org.jeecg.modules.admin_file_export.mapper;
+
+import java.util.List;
+
+import org.apache.ibatis.annotations.Param;
+import org.jeecg.modules.admin_file_export.entity.AdminFileExport;
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+
+/**
+ * @Description: 文件导出目录
+ * @Author: jeecg-boot
+ * @Date:   2023-10-30
+ * @Version: V1.0
+ */
+public interface AdminFileExportMapper extends BaseMapper<AdminFileExport> {
+
+}

+ 5 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/mapper/xml/AdminFileExportMapper.xml

@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="org.jeecg.modules.admin_file_export.mapper.AdminFileExportMapper">
+
+</mapper>

+ 21 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/service/IAdminFileExportService.java

@@ -0,0 +1,21 @@
+package org.jeecg.modules.admin_file_export.service;
+
+import org.jeecg.modules.admin_file_export.entity.AdminFileExport;
+import com.baomidou.mybatisplus.extension.service.IService;
+
+/**
+ * @Description: 文件导出目录
+ * @Author: jeecg-boot
+ * @Date:   2023-10-30
+ * @Version: V1.0
+ */
+public interface IAdminFileExportService extends IService<AdminFileExport> {
+
+    void setUpdateInfo(AdminFileExport adminFileExport);
+
+    boolean save(AdminFileExport adminFileExport);
+
+    boolean updateById(AdminFileExport adminFileExport);
+
+    boolean saveOrUpdate(AdminFileExport adminFileExport);
+}

+ 61 - 0
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_file_export/service/impl/AdminFileExportServiceImpl.java

@@ -0,0 +1,61 @@
+package org.jeecg.modules.admin_file_export.service.impl;
+
+import com.google.common.base.Strings;
+import org.apache.shiro.SecurityUtils;
+import org.jeecg.common.system.vo.LoginUser;
+import org.jeecg.modules.admin_file_export.entity.AdminFileExport;
+import org.jeecg.modules.admin_file_export.mapper.AdminFileExportMapper;
+import org.jeecg.modules.admin_file_export.service.IAdminFileExportService;
+import org.springframework.stereotype.Service;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+
+/**
+ * @Description: 文件导出目录
+ * @Author: jeecg-boot
+ * @Date:   2023-10-30
+ * @Version: V1.0
+ */
+@Service
+public class AdminFileExportServiceImpl extends ServiceImpl<AdminFileExportMapper, AdminFileExport> implements IAdminFileExportService {
+
+    @Override
+    public void setUpdateInfo(AdminFileExport adminFileExport) {
+        //用户信息
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        if(sysUser!=null){
+            adminFileExport.setUpdateBy(sysUser.getUsername());
+            if (Strings.isNullOrEmpty(adminFileExport.getExportUser())){
+                adminFileExport.setExportUser(sysUser.getUsername());
+            }
+        }
+        //文件信息
+        if (!Strings.isNullOrEmpty(adminFileExport.getName())) {
+            if (Strings.isNullOrEmpty(adminFileExport.getFileType())){
+                String name = adminFileExport.getName();
+                String[] splitName = name.split("\\.");
+                if (splitName.length>0) {
+                    adminFileExport.setFileType(splitName[splitName.length - 1].toLowerCase());
+                }
+            }
+        }
+    }
+
+    @Override
+    public boolean save(AdminFileExport adminFileExport) {
+        this.setUpdateInfo(adminFileExport);
+        return super.save(adminFileExport);
+    }
+
+    @Override
+    public boolean updateById(AdminFileExport adminFileExport) {
+        this.setUpdateInfo(adminFileExport);
+        return super.updateById(adminFileExport);
+    }
+
+    @Override
+    public boolean saveOrUpdate(AdminFileExport adminFileExport) {
+        this.setUpdateInfo(adminFileExport);
+        return super.saveOrUpdate(adminFileExport);
+    }
+}

+ 216 - 66
airport/jeecg-boot-module-system/src/main/java/org/jeecg/modules/admin_order/controller/AdminOrderController.java

@@ -20,9 +20,13 @@ import javax.xml.parsers.DocumentBuilderFactory;
 //import com.itextpdf.tool.xml.XMLWorkerHelper;
 //import com.itextpdf.text.Document;
 //import com.itextpdf.text.pdf.PdfWriter;
+import com.baomidou.mybatisplus.core.conditions.Wrapper;
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
 import com.google.common.base.Strings;
 import org.jeecg.modules.admin.entity.AdminPlatform;
 import org.jeecg.modules.admin.service.IAdminPlatformService;
+import org.jeecg.modules.admin_file_export.entity.AdminFileExport;
+import org.jeecg.modules.admin_file_export.service.IAdminFileExportService;
 import org.jeecg.modules.admin_order.entity.AdminOrderExamine2;
 import org.jeecg.modules.api.AddWatermarkToPDF;
 import org.jeecg.modules.api.HtmlToPdf;
@@ -43,6 +47,7 @@ import org.jeecg.modules.admin_order.vo.AdminOrderPage;
 import org.jeecg.modules.admin_order.service.IAdminOrderService;
 import org.jeecg.modules.admin_order.service.IAdminOrderExamineService;
 
+import org.jetbrains.annotations.NotNull;
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 
@@ -82,6 +87,9 @@ public class AdminOrderController {
     @Autowired
     private IAdminPlatformService adminPlatformService;
 
+    @Autowired
+    private IAdminFileExportService adminFileExportService;
+
     @Value("${airport.system.host:http://120.79.86.50:9999/airport}")
     private String systemHost;
 
@@ -102,28 +110,29 @@ public class AdminOrderController {
                                    @RequestParam(name = "pageNo", defaultValue = "1") Integer pageNo,
                                    @RequestParam(name = "pageSize", defaultValue = "10") Integer pageSize,
                                    HttpServletRequest req, String ssaircraftNum, String ssaircraftPositionNum, String ssflightNum, String sCDateTime, String eCDateTime) {
-        QueryWrapper<AdminOrder> queryWrapper = QueryGenerator.initQueryWrapper( adminOrder, req.getParameterMap() );
+        QueryWrapper<AdminOrder> queryWrapper = QueryGenerator.initQueryWrapper(adminOrder, req.getParameterMap());
         if (ssaircraftNum != null) {
-            queryWrapper.like( "aircraft_num", ssaircraftNum );
+            queryWrapper.like("aircraft_num", ssaircraftNum);
         }
         if (ssaircraftPositionNum != null) {
-            queryWrapper.like( "aircraft_position_num", ssaircraftPositionNum );
+            queryWrapper.like("aircraft_position_num", ssaircraftPositionNum);
         }
         if (ssflightNum != null) {
-            queryWrapper.like( "flight_num", ssflightNum );
+            queryWrapper.like("flight_num", ssflightNum);
         }
-        if (!Strings.isNullOrEmpty(sCDateTime)){
-            queryWrapper.ge("create_time",sCDateTime + " 00:00:00");
+        if (!Strings.isNullOrEmpty(sCDateTime)) {
+            queryWrapper.ge("create_time", sCDateTime + " 00:00:00");
         }
-        if (!Strings.isNullOrEmpty(eCDateTime)){
-            queryWrapper.le("create_time",eCDateTime + " 23:59:59");
+        if (!Strings.isNullOrEmpty(eCDateTime)) {
+            queryWrapper.le("create_time", eCDateTime + " 23:59:59");
         }
-        Page<AdminOrder> page = new Page<AdminOrder>( pageNo, pageSize );
-        IPage<AdminOrder> pageList = adminOrderService.page( page, queryWrapper );
-        return Result.OK( pageList );
+        Page<AdminOrder> page = new Page<AdminOrder>(pageNo, pageSize);
+        IPage<AdminOrder> pageList = adminOrderService.page(page, queryWrapper);
+        return Result.OK(pageList);
     }
 
-
+    @AutoLog(value = "订单管理-分页列表导出PDF不添加导出任务")
+    @ApiOperation(value = "订单管理-分页列表导出PDF不添加导出任务", notes = "订单管理-分页列表查询")
     @RequestMapping(value = "/dcPDF/{id}", method = {RequestMethod.POST})
     public Result<?> dcPDF(@PathVariable String id) {
         String fileName = "";
@@ -196,18 +205,10 @@ public class AdminOrderController {
             HtmlToPdf.convert( outputFolderHtml, outputFolder );
 
 //            AddWatermarkToPDF.convert(fileName,"temp\\sy.png");
-            Date qifeiTime = byId.getQifeiTime();
-            if (qifeiTime == null) {
-                if ("交接结束".equals(byId.getType())){
-                    qifeiTime = byId.getUpdateTime();
-                } else {
-                    qifeiTime = byId.getUpdateTime();
-                }
-            }
-            long after24HoursInMillis = qifeiTime.getTime() + 24 * 60 * 60 * 1000; // 将毫秒数增加 24 小时
+            long after24HoursInMillis = byId.getQifeiTime().getTime() + 24 * 60 * 60 * 1000; // 将毫秒数增加 24 小时
             Date after24Hours = new Date(after24HoursInMillis);
             if (after24Hours.before(new Date(  ))) {
-               //打印加水印
+                //打印加水印
                 AddWatermarkToPDF.convert(fileName,adminPlatform.getSy());
             }else {
                 fileName = systemHost+"/sys/common/static/tempFile/" + fileName;
@@ -223,6 +224,155 @@ public class AdminOrderController {
         return Result.OK( fileName );
     }
 
+    @AutoLog(value = "订单管理-分页列表导出PDF")
+    @ApiOperation(value = "订单管理-分页列表导出PDF", notes = "订单管理-分页列表查询")
+    @RequestMapping(value = "/exportPdf/{id}", method = {RequestMethod.POST})
+    public Result<?> exportPdf(@PathVariable String id) {
+        String fileName = "";
+        String fileNameQ = "";
+        String fileNameHtml = "";
+        AdminFileExport adminFileExport = getAdminFileExport(id);
+        adminFileExport.setExportParam(id);
+        adminFileExport.setExportStatus("1");
+        adminFileExport.setExportType("AdminOrderList");
+        adminFileExport.setFileNum(1);
+        try {
+            QueryWrapper<AdminOrderExamine> queryWrapper = new QueryWrapper<>();
+            queryWrapper.eq("order_id", id);
+            List<AdminOrderExamine> list = adminOrderExamineService.list(queryWrapper);
+            if (list.size() == 0) {
+                return Result.error("未找到对应数据");
+            }
+            SimpleDateFormat yyyyMMdd = new SimpleDateFormat("yyyyMMddHHmmss");
+            AdminOrder byId = adminOrderService.getById(id);
+
+            //fileNameQ = id + "_" + System.currentTimeMillis();
+            fileNameQ = yyyyMMdd.format(byId.getCreateTime()) + "-" + byId.getAircraftNum();
+            fileName = fileNameQ + ".pdf";
+            fileNameHtml = fileNameQ + ".html";
+            adminFileExport.setName(fileName);
+
+//            String outputFolder = "D:\\AJeecgBootFiles\\" + fileName;
+//            String outputFolderHtml = "D:\\AJeecgBootFiles\\" + fileNameHtml;
+
+            String outputFolder = AirportUtil.getLocalUploadTempPath() + "/" + fileName;
+            String outputFolderHtml = AirportUtil.getLocalUploadTempPath() + "/" + fileNameHtml;
+
+//            String outputFolderPic = "/usr/java/AJeecgBootFiles/" + fileNameQ+".png";
+//            OutputStream outputStream = Files.newOutputStream( Paths.get( outputFolder ) );
+            //获取水印
+            List<AdminPlatform> adminPlatformList = adminPlatformService.list();
+            AdminPlatform adminPlatform = adminPlatformList.get(0);
+
+            Context context = new Context();
+            //订单号
+            context.setVariable("OrderNum", byId.getOrderNum());
+            //飞机号
+            context.setVariable("AircraftNum", byId.getAircraftNum());
+            //航班号
+            context.setVariable("FlightNum", byId.getFlightNum());
+            //落地机位
+            context.setVariable("AircraftPositionNum", byId.getAircraftPositionNum());
+
+//            context.setVariable( "sy", "temp/sy.png" );
+            //创建时间
+            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
+            context.setVariable("Time", sdf.format(byId.getCreateTime()));
+//            context.setVariable( "order", byId );
+            //阶段数据
+            List<AdminOrderExamine2> list2 = new ArrayList<>();
+            for (AdminOrderExamine main : list) {
+                AdminOrderExamine2 vo = new AdminOrderExamine2();
+                BeanUtils.copyProperties(main, vo);
+                String[] arrPic = main.getPic().split(",");
+                String[] arrExamineYes = main.getExamineYes().split(",");
+                vo.setPic(arrPic);
+                vo.setExamineYes(arrExamineYes);
+                list2.add(vo);
+            }
+            context.setVariable("date", list2);
+            context.setVariable("SystemHost", systemHost);
+
+            String htmlStr = templateEngine.process("template", context);
+
+//            // 创建一个新的HTML文件
+            FileWriter writer = new FileWriter(outputFolderHtml);
+            // 写入HTML代码
+            writer.write(htmlStr);
+            // 关闭文件写入器
+            writer.close();
+            HtmlToPdf.convert(outputFolderHtml, outputFolder);
+            File file = new File(outputFolder);
+            adminFileExport.setFileSize(file.exists() ? file.length() : 0);
+
+//            AddWatermarkToPDF.convert(fileName,"temp\\sy.png");
+            Date qifeiTime = byId.getQifeiTime();
+            if (qifeiTime == null) {
+                if ("交接结束".equals(byId.getType())) {
+                    qifeiTime = byId.getUpdateTime();
+                } else {
+                    qifeiTime = byId.getUpdateTime();
+                }
+            }
+            long after24HoursInMillis = qifeiTime.getTime() + 24 * 60 * 60 * 1000; // 将毫秒数增加 24 小时
+            Date after24Hours = new Date(after24HoursInMillis);
+            if (after24Hours.before(new Date())) {
+                //打印加水印
+                AddWatermarkToPDF.convert(fileName, adminPlatform.getSy());
+            } else {
+                fileName = systemHost + "/sys/common/static/tempFile/" + fileName;
+                adminFileExport.setUrl(fileName);
+                adminFileExportService.saveOrUpdate(adminFileExport);
+                return Result.OK(fileName);
+            }
+
+        } catch (Exception e) {
+            adminFileExport.setExportStatus("2");
+            adminFileExportService.saveOrUpdate(adminFileExport);
+            return Result.error("导出错误");
+        }
+//        fileName = "http://127.0.0.1:9999/sys/common/static/sy_" + fileName;
+//        fileName = "http://120.79.86.50:9999/sys/common/static/" + fileNameHtml;
+        fileName = systemHost + "/sys/common/static/tempFile/sy_" + fileName;
+        adminFileExport.setUrl(fileName);
+        adminFileExportService.saveOrUpdate(adminFileExport);
+        return Result.OK(fileName);
+    }
+
+    @NotNull
+    private AdminFileExport getAdminFileExport(String id) {
+        LambdaQueryWrapper<AdminFileExport> adminFileExportQueryWrapper = new LambdaQueryWrapper<>(AdminFileExport.class);
+        adminFileExportQueryWrapper.eq(AdminFileExport::getExportParam, id)
+                .eq(AdminFileExport::getFileType,"pdf")
+                .eq(AdminFileExport::getExportType,"AdminOrderList");
+        AdminFileExport adminFileExport = adminFileExportService.getOne(adminFileExportQueryWrapper);
+        if (adminFileExport == null) {
+            adminFileExport = new AdminFileExport();
+        }
+        return adminFileExport;
+    }
+
+    @AutoLog(value = "订单管理-分页列表添加导出多个PDF任务")
+    @ApiOperation(value = "订单管理-分页列表添加导出多个PDF任务", notes = "订单管理-分页列表查询")
+    @RequestMapping(value = "/addExportPdfFilesTask", method = {RequestMethod.POST})
+    public Result<?> addExportPdfFilesTask(@RequestBody String[] orderIds) {
+        /*
+         * id,文件名,任务参数(orderIds),文件url,文件类型,文件大小,导出状态(0:正在导出,1:导出完成),导出文件数量,导出人,导出时间,修改时间
+         * */
+        String fileName = "";
+        String fileNameQ = "";
+        String fileNameHtml = "";
+
+        fileName = fileNameQ + ".pdf";
+        fileNameHtml = fileNameQ + ".html";
+
+        String outputFolder = AirportUtil.getLocalUploadTempPath() + "/" + fileName;
+        String outputFolderHtml = AirportUtil.getLocalUploadTempPath() + "/" + fileNameHtml;
+
+        fileName = systemHost + "/sys/common/static/tempFile/sy_" + fileName;
+        return Result.OK("任务已添加到下载列表", orderIds);
+    }
+
     /**
      * 添加
      *
@@ -234,9 +384,9 @@ public class AdminOrderController {
     @PostMapping(value = "/add")
     public Result<?> add(@RequestBody AdminOrderPage adminOrderPage) {
         AdminOrder adminOrder = new AdminOrder();
-        BeanUtils.copyProperties( adminOrderPage, adminOrder );
-        adminOrderService.saveMain( adminOrder, adminOrderPage.getAdminOrderExamineList() );
-        return Result.OK( "添加成功!" );
+        BeanUtils.copyProperties(adminOrderPage, adminOrder);
+        adminOrderService.saveMain(adminOrder, adminOrderPage.getAdminOrderExamineList());
+        return Result.OK("添加成功!");
     }
 
     /**
@@ -250,13 +400,13 @@ public class AdminOrderController {
     @RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST})
     public Result<?> edit(@RequestBody AdminOrderPage adminOrderPage) {
         AdminOrder adminOrder = new AdminOrder();
-        BeanUtils.copyProperties( adminOrderPage, adminOrder );
-        AdminOrder adminOrderEntity = adminOrderService.getById( adminOrder.getId() );
+        BeanUtils.copyProperties(adminOrderPage, adminOrder);
+        AdminOrder adminOrderEntity = adminOrderService.getById(adminOrder.getId());
         if (adminOrderEntity == null) {
-            return Result.error( "未找到对应数据" );
+            return Result.error("未找到对应数据");
         }
-        adminOrderService.updateMain( adminOrder, adminOrderPage.getAdminOrderExamineList() );
-        return Result.OK( "编辑成功!" );
+        adminOrderService.updateMain(adminOrder, adminOrderPage.getAdminOrderExamineList());
+        return Result.OK("编辑成功!");
     }
 
     /**
@@ -269,8 +419,8 @@ public class AdminOrderController {
     @ApiOperation(value = "订单管理-通过id删除", notes = "订单管理-通过id删除")
     @DeleteMapping(value = "/delete")
     public Result<?> delete(@RequestParam(name = "id", required = true) String id) {
-        adminOrderService.delMain( id );
-        return Result.OK( "删除成功!" );
+        adminOrderService.delMain(id);
+        return Result.OK("删除成功!");
     }
 
     /**
@@ -283,8 +433,8 @@ public class AdminOrderController {
     @ApiOperation(value = "订单管理-批量删除", notes = "订单管理-批量删除")
     @DeleteMapping(value = "/deleteBatch")
     public Result<?> deleteBatch(@RequestParam(name = "ids", required = true) String ids) {
-        this.adminOrderService.delBatchMain( Arrays.asList( ids.split( "," ) ) );
-        return Result.OK( "批量删除成功!" );
+        this.adminOrderService.delBatchMain(Arrays.asList(ids.split(",")));
+        return Result.OK("批量删除成功!");
     }
 
     /**
@@ -297,11 +447,11 @@ public class AdminOrderController {
     @ApiOperation(value = "订单管理-通过id查询", notes = "订单管理-通过id查询")
     @GetMapping(value = "/queryById")
     public Result<?> queryById(@RequestParam(name = "id", required = true) String id) {
-        AdminOrder adminOrder = adminOrderService.getById( id );
+        AdminOrder adminOrder = adminOrderService.getById(id);
         if (adminOrder == null) {
-            return Result.error( "未找到对应数据" );
+            return Result.error("未找到对应数据");
         }
-        return Result.OK( adminOrder );
+        return Result.OK(adminOrder);
 
     }
 
@@ -315,11 +465,11 @@ public class AdminOrderController {
     @ApiOperation(value = "安检信息-通过主表ID查询", notes = "安检信息-通过主表ID查询")
     @GetMapping(value = "/queryAdminOrderExamineByMainId")
     public Result<?> queryAdminOrderExamineListByMainId(@RequestParam(name = "id", required = true) String id) {
-        List<AdminOrderExamine> adminOrderExamineList = adminOrderExamineService.selectByMainId( id );
+        List<AdminOrderExamine> adminOrderExamineList = adminOrderExamineService.selectByMainId(id);
         IPage<AdminOrderExamine> page = new Page<>();
-        page.setRecords( adminOrderExamineList );
-        page.setTotal( adminOrderExamineList.size() );
-        return Result.OK( page );
+        page.setRecords(adminOrderExamineList);
+        page.setTotal(adminOrderExamineList.size());
+        return Result.OK(page);
     }
 
     /**
@@ -331,37 +481,37 @@ public class AdminOrderController {
     @RequestMapping(value = "/exportXls")
     public ModelAndView exportXls(HttpServletRequest request, AdminOrder adminOrder) {
         // Step.1 组装查询条件查询数据
-        QueryWrapper<AdminOrder> queryWrapper = QueryGenerator.initQueryWrapper( adminOrder, request.getParameterMap() );
+        QueryWrapper<AdminOrder> queryWrapper = QueryGenerator.initQueryWrapper(adminOrder, request.getParameterMap());
         LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
 
         //Step.2 获取导出数据
-        List<AdminOrder> queryList = adminOrderService.list( queryWrapper );
+        List<AdminOrder> queryList = adminOrderService.list(queryWrapper);
         // 过滤选中数据
-        String selections = request.getParameter( "selections" );
+        String selections = request.getParameter("selections");
         List<AdminOrder> adminOrderList = new ArrayList<AdminOrder>();
-        if (oConvertUtils.isEmpty( selections )) {
+        if (oConvertUtils.isEmpty(selections)) {
             adminOrderList = queryList;
         } else {
-            List<String> selectionList = Arrays.asList( selections.split( "," ) );
-            adminOrderList = queryList.stream().filter( item -> selectionList.contains( item.getId() ) ).collect( Collectors.toList() );
+            List<String> selectionList = Arrays.asList(selections.split(","));
+            adminOrderList = queryList.stream().filter(item -> selectionList.contains(item.getId())).collect(Collectors.toList());
         }
 
         // Step.3 组装pageList
         List<AdminOrderPage> pageList = new ArrayList<AdminOrderPage>();
         for (AdminOrder main : adminOrderList) {
             AdminOrderPage vo = new AdminOrderPage();
-            BeanUtils.copyProperties( main, vo );
-            List<AdminOrderExamine> adminOrderExamineList = adminOrderExamineService.selectByMainId( main.getId() );
-            vo.setAdminOrderExamineList( adminOrderExamineList );
-            pageList.add( vo );
+            BeanUtils.copyProperties(main, vo);
+            List<AdminOrderExamine> adminOrderExamineList = adminOrderExamineService.selectByMainId(main.getId());
+            vo.setAdminOrderExamineList(adminOrderExamineList);
+            pageList.add(vo);
         }
 
         // Step.4 AutoPoi 导出Excel
-        ModelAndView mv = new ModelAndView( new JeecgEntityExcelView() );
-        mv.addObject( NormalExcelConstants.FILE_NAME, "订单管理列表" );
-        mv.addObject( NormalExcelConstants.CLASS, AdminOrderPage.class );
-        mv.addObject( NormalExcelConstants.PARAMS, new ExportParams( "订单管理数据", "导出人:" + sysUser.getRealname(), "订单管理" ) );
-        mv.addObject( NormalExcelConstants.DATA_LIST, pageList );
+        ModelAndView mv = new ModelAndView(new JeecgEntityExcelView());
+        mv.addObject(NormalExcelConstants.FILE_NAME, "订单管理列表");
+        mv.addObject(NormalExcelConstants.CLASS, AdminOrderPage.class);
+        mv.addObject(NormalExcelConstants.PARAMS, new ExportParams("订单管理数据", "导出人:" + sysUser.getRealname(), "订单管理"));
+        mv.addObject(NormalExcelConstants.DATA_LIST, pageList);
         return mv;
     }
 
@@ -379,20 +529,20 @@ public class AdminOrderController {
         for (Map.Entry<String, MultipartFile> entity : fileMap.entrySet()) {
             MultipartFile file = entity.getValue();// 获取上传文件对象
             ImportParams params = new ImportParams();
-            params.setTitleRows( 2 );
-            params.setHeadRows( 1 );
-            params.setNeedSave( true );
+            params.setTitleRows(2);
+            params.setHeadRows(1);
+            params.setNeedSave(true);
             try {
-                List<AdminOrderPage> list = ExcelImportUtil.importExcel( file.getInputStream(), AdminOrderPage.class, params );
+                List<AdminOrderPage> list = ExcelImportUtil.importExcel(file.getInputStream(), AdminOrderPage.class, params);
                 for (AdminOrderPage page : list) {
                     AdminOrder po = new AdminOrder();
-                    BeanUtils.copyProperties( page, po );
-                    adminOrderService.saveMain( po, page.getAdminOrderExamineList() );
+                    BeanUtils.copyProperties(page, po);
+                    adminOrderService.saveMain(po, page.getAdminOrderExamineList());
                 }
-                return Result.OK( "文件导入成功!数据行数:" + list.size() );
+                return Result.OK("文件导入成功!数据行数:" + list.size());
             } catch (Exception e) {
-                log.error( e.getMessage(), e );
-                return Result.error( "文件导入失败:" + e.getMessage() );
+                log.error(e.getMessage(), e);
+                return Result.error("文件导入失败:" + e.getMessage());
             } finally {
                 try {
                     file.getInputStream().close();
@@ -401,7 +551,7 @@ public class AdminOrderController {
                 }
             }
         }
-        return Result.OK( "文件导入失败!" );
+        return Result.OK("文件导入失败!");
     }
 
 }