feat: 完成客户第12条需求+多系统改造
1. 新增预警表添加工单号字段,支持按工单号检索预警 2. 添加工单过滤在制品/绩效报表/预警中心查询 3. 补全WMS台账字段口径与权限配置 4. 修复备料单与数量不符处理流程 5. 新增配送进度/库位联动/自动出库功能 6. 修复AGV配送状态更新逻辑 7. 优化退料与库存管理细节
This commit is contained in:
@@ -8,8 +8,8 @@
|
||||
<template #default>
|
||||
<div style="font-size:12px;line-height:1.7">
|
||||
附件根目录:{{ disk.rootDir }}|剩余 {{ freePercent }}%(剩余 {{ fmtSize(disk.freeBytes) }} / 共 {{ fmtSize(disk.totalBytes) }})
|
||||
<el-button v-if="disk.level === 'critical'" link type="danger" style="margin-left:8px"
|
||||
@click="doArchive">立即归档清理</el-button>
|
||||
<el-button v-if="disk.level === 'critical' && can('sys.attachment:manage')" link type="danger"
|
||||
style="margin-left:8px" @click="doArchive">立即归档清理</el-button>
|
||||
</div>
|
||||
</template>
|
||||
</el-alert>
|
||||
@@ -42,7 +42,8 @@
|
||||
<el-form-item>
|
||||
<el-button type="primary" :loading="loading" @click="search">查询</el-button>
|
||||
<el-button @click="resetFilters">重置</el-button>
|
||||
<el-button type="warning" plain :loading="archiving" @click="doArchive">归档清理</el-button>
|
||||
<el-button v-if="can('sys.attachment:manage')" type="warning" plain :loading="archiving"
|
||||
@click="doArchive">归档清理</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
@@ -84,7 +85,8 @@
|
||||
<template #default="{ row }">
|
||||
<el-button link type="primary" size="small" @click="preview(row)">预览</el-button>
|
||||
<el-button link type="success" size="small" @click="download(row)">下载</el-button>
|
||||
<el-button v-if="!row.deleted" link type="danger" size="small" @click="remove(row)">删除</el-button>
|
||||
<el-button v-if="!row.deleted && can('sys.attachment:manage')" link type="danger" size="small"
|
||||
@click="remove(row)">删除</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -103,6 +105,7 @@ import { computed, onMounted, reactive, ref } from 'vue'
|
||||
import { ElMessage, ElMessageBox } from 'element-plus'
|
||||
import request from '../utils/request'
|
||||
import { getToken } from '../utils/auth'
|
||||
import { can } from '../utils/perm'
|
||||
import { fmtTime } from '../utils/format'
|
||||
import PageHelp from '../components/PageHelp.vue'
|
||||
import { helpAttachment } from '../help'
|
||||
|
||||
Reference in New Issue
Block a user