diff --git a/src/views/modules/ecss/codelnotify.vue b/src/views/modules/ecss/codelnotify.vue index 5baae4d..18b3ddd 100644 --- a/src/views/modules/ecss/codelnotify.vue +++ b/src/views/modules/ecss/codelnotify.vue @@ -73,6 +73,9 @@ {{'导出出口货物委托书'}} + {{'客户信息'}} @@ -2888,6 +2891,16 @@ dropColumns: [],//需要剔除的列,例如dropColumns: ["netWeight"],即剔除净重列 }); }, + /** 进出口总表导出:与当前查询条件一致,后台按 ReadyDate 月份插入黄色分隔行 */ + exportImportExportSummary() { + const param = Object.assign({}, this.searchData, { + username: this.$store.state.user.name + }) + const ts = new Date() + const pad = n => (n < 10 ? '0' + n : '' + n) + const fname = '进出口总表_' + ts.getFullYear() + pad(ts.getMonth() + 1) + pad(ts.getDate()) + pad(ts.getHours()) + pad(ts.getMinutes()) + pad(ts.getSeconds()) + '.xlsx' + ExportUtil.export('/ecss/coDel/downloadImportExportSummary', param, fname) + }, getSummaries(param) { const { columns } = param; const sums = []; diff --git a/src/views/modules/ecss/declaration.vue b/src/views/modules/ecss/declaration.vue index 784f73e..5adf72d 100644 --- a/src/views/modules/ecss/declaration.vue +++ b/src/views/modules/ecss/declaration.vue @@ -346,7 +346,7 @@ - - + -->