| | |
| | | <template> |
| | | <div class="wcsTask-container"> |
| | | <el-row :gutter="8" style="width: 100%; height: 100%; flex: 1"> |
| | | <el-col :span="12" :xs="24" style="display: flex; height: 100%; flex: 1"> |
| | | <el-card class="full-table" shadow="hover" ::body-style="{ height: 'calc(100% - 51px)' }"> |
| | | <el-col :span="14" :xs="24" style="display: flex; height: 100%; flex: 1"> |
| | | <el-card class="full-table" shadow="hover" :body-style="{ height: 'calc(100% - 51px)' }"> |
| | | <template #header> |
| | | <el-icon size="16" |
| | | style="margin-right: 3px; display: inline; vertical-align: middle"><ele-Collection /></el-icon>任务日志 |
| | |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI"> |
| | | <el-form-item label="托盘号"> |
| | | <el-input v-model="queryParams.palletNo" clearable="" placeholder="请输入托盘号" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10" v-if="showAdvanceQueryUI"> |
| | | <el-form-item label="来源"> |
| | | <el-input v-model="queryParams.origin" clearable="" placeholder="请输入来源" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="4" class="mb10"> |
| | | <el-form-item> |
| | | <el-button-group style="display: flex; align-items: center;"> |
| | |
| | | <el-table :data="tableData" style="width: 100%" v-loading="loading" tooltip-effect="light" row-key="id" |
| | | @cell-click="handleClick" @sort-change="sortChange" border=""> |
| | | <el-table-column type="index" label="序号" width="55" align="center" /> |
| | | <el-table-column prop="taskNo" label="任务号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="taskNo" label="任务号" width="130" show-overflow-tooltip="" /> |
| | | <el-table-column prop="taskType" width="85" label="任务类型" show-overflow-tooltip=""> |
| | | <template #default="scope"> |
| | | <el-tag :type="dv('TaskTypeEnum', scope.row.taskType)?.tagType"> {{ dv('TaskTypeEnum', |
| | |
| | | scope.row.status)?.name }}</el-tag> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="origin" label="来源" show-overflow-tooltip="" /> |
| | | <el-table-column prop="startLocate" label="起始位置" show-overflow-tooltip="" /> |
| | | <el-table-column prop="endLocate" label="结束位置" show-overflow-tooltip="" /> |
| | | <el-table-column prop="palletNo" label="托盘号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="qty" label="拆垛箱数" show-overflow-tooltip="" /> |
| | | <el-table-column prop="palletQty" label="整跺箱数" show-overflow-tooltip="" /> |
| | | <el-table-column prop="lotNo" label="批次号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="skuNo" label="物料编码" show-overflow-tooltip="" /> |
| | | <el-table-column prop="skuName" label="物料名称" show-overflow-tooltip="" /> |
| | | <el-table-column prop="unstackingMode" width="100" label="拆垛方式" show-overflow-tooltip=""> |
| | | <template #default="scope"> |
| | | <span v-if="scope.row.unstackingMode"> |
| | | <el-tag :type="dv('UnstackingModeEnum', scope.row.unstackingMode)?.tagType"> {{ |
| | | dv('UnstackingModeEnum', |
| | | scope.row.unstackingMode)?.name }}</el-tag> |
| | | </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="isBind" width="85" label="是否绑定" show-overflow-tooltip=""> |
| | | <template #default="scope"> |
| | | <span v-if="scope.row.isBind != null"> |
| | | <el-tag :type="dv('IsBindEnum', scope.row.isBind)?.tagType"> {{ dv('IsBindEnum', |
| | | scope.row.isBind)?.name }}</el-tag> |
| | | </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="stationNum" label="拆垛工位号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="cancelDate" label="取消时间" show-overflow-tooltip="" /> |
| | | <el-table-column prop="finishDate" label="完成时间" show-overflow-tooltip="" /> |
| | | <el-table-column label="修改记录" width="80" align="center" show-overflow-tooltip> |
| | | <!-- <el-table-column label="修改记录" width="80" align="center" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <ModifyRecord :data="scope.row" /> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column prop="操作" label="操作" width="130" align="center" fixed="right" show-overflow-tooltip="" |
| | | </el-table-column> --> |
| | | <el-table-column prop="操作" label="操作" width="150" align="center" fixed="right" show-overflow-tooltip="" |
| | | v-if="auth('wcsTask:complete') || auth('wcsTask:cancell')"> |
| | | <template #default="scope"> |
| | | <template v-if="scope.row.status <= 1"> |
| | |
| | | v-auth="'wcsTask:complete'"> 完成 </el-button> |
| | | <el-button icon="ele-Close" size="small" text="" type="primary" @click="cancellTask(scope.row)" |
| | | v-auth="'wcsTask:cancell'"> 取消 </el-button> |
| | | </template> |
| | | <template v-if="scope.row.status == 2 && scope.row.origin == 'WMS'"> |
| | | <el-button icon="ele-Upload" size="small" text="" type="primary" @click="uploadTask(scope.row)" |
| | | v-auth="'wcsTask:cancell'"> 上传 </el-button> |
| | | </template> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | <editDialog ref="editDialogRef" :title="editWcsTaskTitle" @reloadTable="handleQuery" /> |
| | | </el-card> |
| | | </el-col> |
| | | <el-col :span="12" :xs="24" style="display: flex; height: 100%; flex: 1"> |
| | | <el-col :span="10" :xs="24" style="display: flex; height: 100%; flex: 1"> |
| | | <el-card class="full-table" shadow="hover" :body-style="{ height: 'calc(100% - 51px)' }"> |
| | | <template #header> |
| | | <el-icon size="16" |
| | |
| | | border=""> |
| | | <el-table-column type="index" label="序号" width="55" align="center" /> |
| | | <el-table-column prop="taskNo" label="任务号" show-overflow-tooltip="" /> |
| | | <el-table-column prop="plcId" label="交互工位号" show-overflow-tooltip="" /> |
| | | <!-- <el-table-column prop="plcId" label="交互工位号" show-overflow-tooltip="" /> --> |
| | | <el-table-column prop="plcName" label="交互位置" show-overflow-tooltip="" /> |
| | | <el-table-column prop="interactiveMsg" label="交互信息" show-overflow-tooltip="" /> |
| | | <el-table-column label="修改记录" width="80" align="center" show-overflow-tooltip> |
| | | <el-table-column prop="createTime" label="交互时间" show-overflow-tooltip="" /> |
| | | <!-- <el-table-column label="修改记录" width="80" align="center" show-overflow-tooltip> |
| | | <template #default="scope"> |
| | | <ModifyRecord :data="scope.row" /> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table-column> --> |
| | | </el-table> |
| | | <el-pagination v-model:currentPage="tableParams2.page" v-model:page-size="tableParams2.pageSize" |
| | | :total="tableParams2.total" :page-sizes="[10, 20, 50, 100, 200, 500]" size="small" background="" |
| | |
| | | |
| | | import printDialog from '/@/views/system/print/component/hiprint/preview.vue' |
| | | import editDialog from '/@/views/wcs/wcsTask/component/editDialog.vue' |
| | | import { pageWcsTask, finshWcsTask } from '/@/api/wcs/wcsTask'; |
| | | import { pageWcsTask, finshWcsTask, uploadWcsTask } from '/@/api/wcs/wcsTask'; |
| | | import { pageWcsMonitorTask } from '/@/api/wcs/wcsTaskMonitor'; |
| | | import { signalR } from './signalR'; |
| | | |
| | |
| | | const queryParams2 = ref<any>({}); |
| | | const tableParams = ref({ |
| | | page: 1, |
| | | pageSize: 10, |
| | | pageSize: 20, |
| | | total: 0, |
| | | }); |
| | | const tableParams2 = ref({ |
| | | page: 1, |
| | | pageSize: 10, |
| | | pageSize: 20, |
| | | total: 0, |
| | | }); |
| | | const printWcsTaskTitle = ref(""); |
| | |
| | | .catch(() => { }); |
| | | |
| | | } |
| | | //上传任务 |
| | | const uploadTask = async (row: any) => { |
| | | ElMessageBox.confirm(`确定要上传任务吗?`, "提示", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning", |
| | | }) |
| | | .then(async () => { |
| | | var param = Object.assign(row); |
| | | await uploadWcsTask(param); |
| | | handleQuery(); |
| | | handleQuery2(); |
| | | ElMessage.success("上传任务成功"); |
| | | }) |
| | | .catch(() => { }); |
| | | |
| | | } |
| | | // 点击表格 |
| | | const handleClick = (row, column, cell, event) => { |
| | | if (column.property === '操作') { |