<template>
|
<div class="wmsQc-container">
|
<el-card shadow="hover" :body-style="{ paddingBottom: '0' }">
|
<el-form :model="queryParams" ref="queryForm" labelWidth="90">
|
<el-row>
|
<el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="6" class="mb10">
|
<el-form-item label="关键字">
|
<el-input v-model="queryParams.searchKey" 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.qcNo" 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-select clearable="" v-model="queryParams.businessType" placeholder="请选择业务类型">
|
<el-option v-for="(item, index) in getBusinessTypeData_Index" :key="index" :value="item.businessTypeValue"
|
:label="`[${item.businessTypeValue}] ${item.businessTypeName}`" />
|
|
</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-select clearable="" v-model="queryParams.qcOrderStatus" placeholder="请选择单据状态">
|
<el-option v-for="(item, index) in getEnumqcOrderStatusData_Index" :key="index" :value="item.value"
|
:label="`${item.describe}`" />
|
|
</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.supplierName" 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.supplierCode" 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.custCode" 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.custChinaName" 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.custEnglishName" 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.relationNo" 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="ERP凭证">
|
<el-input v-model="queryParams.erpVoucher" clearable="" placeholder="ERP凭证" />
|
|
</el-form-item>
|
</el-col>
|
|
<el-col :xs="24" :sm="12" :md="12" :lg="6" :xl="6" class="mb10">
|
<el-form-item>
|
<el-button-group style="display: flex; align-items: center;">
|
<el-button type="primary" icon="ele-Search" @click="handleQuery" v-auth="'wmsOrderQc:page'"> 查询
|
</el-button>
|
<el-button icon="ele-Refresh" @click="() => queryParams = {}"> 重置 </el-button>
|
<el-button icon="ele-ZoomIn" @click="changeAdvanceQueryUI" v-if="!showAdvanceQueryUI"
|
style="margin-left:5px;"> 高级查询 </el-button>
|
<el-button icon="ele-ZoomOut" @click="changeAdvanceQueryUI" v-if="showAdvanceQueryUI"
|
style="margin-left:5px;"> 隐藏 </el-button>
|
<!-- <el-button type="primary" style="margin-left:5px;" icon="ele-Plus" @click="openAddWmsQc" v-auth="'wmsQc:add'"> 新增 </el-button> -->
|
<!-- <el-button type="primary" style="margin-left:5px;" icon="ele-Plus" @click="showProp(1)" v-auth="'wmsOrderPurchase:add'"> 新增 </el-button> -->
|
<el-button type="primary" style="margin-left:5px;" icon="ele-Finished"
|
@click="showPropZj(1, checkedDetails)" :disabled="checkedDetails.length != 1"
|
v-auth="'wmsOrderPurchase:add'"> 完成质检 </el-button>
|
|
<!--
|
<el-button type="primary" style="margin-left:5px;" icon="ele-Refresh"
|
v-auth="'wmsOrderPurchase:add'"> ERP获取 </el-button> -->
|
|
</el-button-group>
|
</el-form-item>
|
|
</el-col>
|
</el-row>
|
</el-form>
|
</el-card>
|
<el-card class="full-table" shadow="hover" style="margin-top: 5px">
|
<el-table :data="tableData" style="width: 100%" v-loading="loading" tooltip-effect="light" row-key="id"
|
@sort-change="sortChange" ref="tableRef" :summary-method="getExportTitle" show-summary
|
@selection-change="detailsCheckChange" border="">
|
<el-table-column fixed="left" align="center" width="60" type="selection" />
|
<el-table-column fixed="left" type="index" label="序号" width="55" align="center" />
|
<!-- <el-table-column prop="qcNo" label="质检单号" show-overflow-tooltip="" /> -->
|
<el-table-column fixed="left" label="质检单号" prop="qcNo" width="160" align="left" show-overflow-tooltip>
|
<template #default="scope">
|
<span class="under_line" @click="openDrawer(1, scope.row)">
|
{{ scope.row.qcNo }}
|
</span>
|
</template>
|
</el-table-column>
|
<el-table-column prop="businessType" min-width="90px" label="业务类型" show-overflow-tooltip="">
|
<template #default="scope">
|
{{ scope.row.businessTypeName }}
|
<!-- <el-tag></el-tag> -->
|
</template>
|
</el-table-column>
|
<el-table-column prop="qcOrderStatus" label="单据状态" show-overflow-tooltip="">
|
<template #default="scope">
|
<el-tag :type="getTypeStatus(1, getEnumDesc(scope.row.qcOrderStatus, getEnumqcOrderStatusData_Index))">{{
|
getEnumDesc(scope.row.qcOrderStatus, getEnumqcOrderStatusData_Index) }}</el-tag>
|
</template>
|
</el-table-column>
|
|
<el-table-column prop="supplierName" label="供应商名称" show-overflow-tooltip="" min-width="110px"/>
|
<el-table-column prop="supplierCode" label="供应商编号" show-overflow-tooltip="" />
|
<!-- <el-table-column prop="custCode" label="客户编号" show-overflow-tooltip="" />
|
<el-table-column prop="custChinaName" label="客户中文名称" min-width="90px" show-overflow-tooltip="" />
|
<el-table-column prop="custEnglishName" label="客户英文名称" min-width="90px" show-overflow-tooltip="" /> -->
|
<el-table-column prop="relationNo" label="关联单号" show-overflow-tooltip="" min-width="150px"/>
|
<!-- <el-table-column prop="relationOrderType" label="关联单据类型" min-width="90px" show-overflow-tooltip="" /> -->
|
<el-table-column prop="relationOrderType" label="关联单据类型" show-overflow-tooltip="" min-width="90px">
|
<template #default="scope">
|
{{ getEnumDesc(scope.row.relationOrderType, getEnumrelationOrderType_Index) }}
|
<!-- <el-tag :type="getTypeStatus(1, getEnumDesc(scope.row.relationOrderType, getEnumrelationOrderType_Index))">{{
|
getEnumDesc(scope.row.relationOrderType, getEnumrelationOrderType_Index) }}</el-tag> -->
|
</template>
|
</el-table-column>
|
<!-- <el-table-column prop="relationOrderTypeName" label="关联单据类型名称" show-overflow-tooltip="" /> -->
|
<!-- <el-table-column prop="factoryName" label="工厂名称" show-overflow-tooltip="" />
|
<el-table-column prop="factoryCode" label="工厂编号" show-overflow-tooltip="" /> -->
|
<!-- <el-table-column prop="remarks" label="备注" show-overflow-tooltip="" />
|
<el-table-column prop="erpVoucher" label="ERP凭证" show-overflow-tooltip="" /> -->
|
<el-table-column prop="createTime" label="创建时间" width="130" :formatter="formatDate_T_Time"
|
show-overflow-tooltip="" />
|
<el-table-column prop="updateTime" label="修改时间" width="130" :formatter="formatDate_T_Time"
|
show-overflow-tooltip="" />
|
<el-table-column prop="createUserName" label="创建人" show-overflow-tooltip="" />
|
<el-table-column prop="updateUserName" label="修改人" show-overflow-tooltip="" />
|
<el-table-column label="操作" width="110" align="center" fixed="right" show-overflow-tooltip=""
|
v-if="auth('wmsOrderQc:update') || auth('wmsOrderQc:delete')">
|
<template #default="scope">
|
<el-button icon="ele-Finished" size="small" text="" type="primary" @click="showProp(scope.row)"
|
v-auth="'wmsOrderQc:delete'" :disabled="scope.row.qcOrderStatus != 0"> 质检 </el-button>
|
<!-- <el-button icon="ele-Delete" size="small" text="" type="primary" @click="delWmsQc(scope.row)"
|
v-auth="'wmsOrderQc:delete'" :disabled="scope.row.qcOrderStatus != 0"> 删除 </el-button> -->
|
</template>
|
</el-table-column>
|
</el-table>
|
<el-pagination v-model:currentPage="tableParams.page" v-model:page-size="tableParams.pageSize"
|
:total="tableParams.total" :page-sizes="[10, 20, 50, 100, 200, 500]" small="" background=""
|
@size-change="handleSizeChange" @current-change="handleCurrentChange"
|
layout="total, sizes, prev, pager, next, jumper" />
|
<printDialog ref="printDialogRef" :title="printWmsQcTitle" @reloadTable="handleQuery" />
|
<editDialog ref="editDialogRef" :title="editWmsQcTitle" @reloadTable="handleQuery" />
|
</el-card>
|
|
<!-- 所有弹框 :新增 编辑 详情 -->
|
<open-allprop titleAuthor="1" hexiao="0" ref="propALlProp" @getTabelData="handleQuery"></open-allprop>
|
|
|
<!--完成质检 -->
|
<wczj-open-allprop titleAuthor="1" hexiao="0" ref="WczjpropALlProp" @getTabelData="handleQuery"></wczj-open-allprop>
|
</div>
|
</template>
|
|
<script lang="ts" setup="" name="wmsQc">
|
import { getCurrentInstance, nextTick, onMounted, ref } from "vue";
|
import { ElMessageBox, ElMessage } from "element-plus";
|
import { auth } from '/@/utils/authFunction';
|
import { getDictDataItem as di, getDictDataList as dl } from '/@/utils/dict-utils';
|
import { formatDate, formatDate_T_Date, formatDate_T_Time, defaultTimeRange } from '/@/utils/formatTime';
|
|
|
import printDialog from '/@/views/system/print/component/hiprint/preview.vue'
|
import editDialog from '/@/views/main/WmsQC/wmsOrderQc/component/editDialog.vue'
|
import { pageWmsQc, deleteWmsQc } from '/@/api/main/WmsQC/wmsOrderQc';
|
import { handleSlectDataWmsBusinessType } from "/@/utils/selectData";
|
import { getAPI } from '/@/utils/axios-utils';
|
import { SysEnumApi } from '/@/api-services/api';
|
import commonFunction from '/@/utils/commonFunction';
|
|
import OpenAllprop from "./component/openAllpropQc.vue";
|
import WczjOpenAllprop from "./component/openAllpropWczj.vue";
|
import {
|
getTypeStatus
|
} from "/@/utils/formate";
|
import { ExcellTableDataExport } from "/@/hooks/exportTableDataExcell";
|
const { proxy }: any = getCurrentInstance(); // 访问实例上下文 proxy同时支持开发 线上环境
|
|
const moveType = "80";//移动类型 质检
|
// ------------封装导出功能--前端导出+表格标题---------------
|
const jsonExcellTableExport = {
|
titleName: "", //导出表格名称
|
interfaceListName: '',//导出接口名称
|
}
|
const { getExportTitle, handleExportExcell, formExport, entozhExcell } = ExcellTableDataExport(jsonExcellTableExport)
|
// --------------end 封装导出功能--前端导出+表格标题-----------------
|
// ---------------新增-----------------------
|
const showProp = (item?: any) => {
|
if (item == 1) {
|
proxy.$refs['propALlProp'].openDialog(1);
|
} else {
|
proxy.$refs['propALlProp'].openDialog(2, item);
|
}
|
}
|
// ---------------详情-----------------------
|
const openDrawer = (type: number, item?: any) => {
|
proxy.$refs['propALlProp'].openDrawer(type, item, entozhExcell);
|
}
|
// ---------------end详情-----------------------
|
// 完成质检
|
const showPropZj = (type: number, item?: any) => {
|
// if(item[0].qcOrderStatus==2||item[0].qcOrderStatus==3 ||item[0].qcOrderStatus==4){
|
// ElMessage.warning(`单据状态不允许操作!`);
|
// return;
|
// }
|
proxy.$refs['WczjpropALlProp'].openDialog(type, item[0]);
|
}
|
|
const getBusinessTypeData_Index = ref<any>([]);//业务类型 create by liuwq
|
// const getEnumBusinessTypeData_Index = ref<any>([]); //update by liuwq
|
const getEnumqcOrderStatusData_Index = ref<any>([]);
|
const getEnumrelationOrderType_Index = ref<any>([]);
|
const { getEnumDesc } = commonFunction();
|
const showAdvanceQueryUI = ref(false);
|
const printDialogRef = ref();
|
const editDialogRef = ref();
|
const loading = ref(false);
|
const tableData = ref<any>([]);
|
const queryParams = ref<any>({});
|
const tableParams = ref({
|
page: 1,
|
pageSize: 10,
|
total: 0,
|
});
|
|
const printWmsQcTitle = ref("");
|
const editWmsQcTitle = ref("");
|
|
// 改变高级查询的控件显示状态
|
const changeAdvanceQueryUI = () => {
|
showAdvanceQueryUI.value = !showAdvanceQueryUI.value;
|
}
|
|
|
// 查询操作
|
const handleQuery = async () => {
|
loading.value = true;
|
var res = await pageWmsQc(Object.assign(queryParams.value, tableParams.value));
|
tableData.value = res.data.result?.items ?? [];
|
tableParams.value.total = res.data.result?.total;
|
loading.value = false;
|
|
getEnumqcOrderStatusData_Index.value = (await getAPI(SysEnumApi).apiSysEnumEnumDataListGet('OrderStatusEnum')).data.result ?? [];
|
getEnumrelationOrderType_Index.value = (await getAPI(SysEnumApi).apiSysEnumEnumDataListGet('OrderTypeEnum')).data.result ?? [];
|
};
|
|
// 列排序
|
const sortChange = async (column: any) => {
|
queryParams.value.field = column.prop;
|
queryParams.value.order = column.order;
|
await handleQuery();
|
};
|
|
// 打开新增页面
|
const openAddWmsQc = () => {
|
editWmsQcTitle.value = '添加质检单';
|
editDialogRef.value.openDialog({});
|
};
|
|
// 打开打印页面
|
const openPrintWmsQc = async (row: any) => {
|
printWmsQcTitle.value = '打印质检单';
|
}
|
|
// 打开编辑页面
|
const openEditWmsQc = (row: any) => {
|
editWmsQcTitle.value = '编辑质检单';
|
editDialogRef.value.openDialog(row);
|
};
|
|
// 删除
|
const delWmsQc = (row: any) => {
|
ElMessageBox.confirm(`确定要删除吗?`, "提示", {
|
confirmButtonText: "确定",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(async () => {
|
var ret = await deleteWmsQc(row);
|
if(ret.data.type=="success"){
|
handleQuery();
|
ElMessage.success("删除成功");
|
}
|
})
|
.catch(() => { });
|
};
|
|
// 改变页面容量
|
const handleSizeChange = (val: number) => {
|
tableParams.value.pageSize = val;
|
handleQuery();
|
};
|
|
// 改变页码序号
|
const handleCurrentChange = (val: number) => {
|
tableParams.value.page = val;
|
handleQuery();
|
};
|
|
handleQuery();
|
|
|
// 根据businessTypeValue获取businessTypeName
|
const getBusinessTypeByValue = (key: any, itemLst: any) => {
|
|
return itemLst.find((x: any) => x.businessTypeValue == key)?.businessTypeName;
|
};
|
|
|
|
|
//物料详情列表选中的物料
|
const checkedDetails = ref<any[]>([]);
|
|
//物料详情列表中勾选事件
|
const detailsCheckChange = (val: any) => {
|
checkedDetails.value = val;
|
};
|
|
onMounted(async () => {
|
nextTick(async () => {
|
getBusinessTypeData_Index.value = await handleSlectDataWmsBusinessType(moveType); //下拉读取业务类型接口
|
});
|
});
|
</script>
|
<style scoped>
|
:deep(.el-input),
|
:deep(.el-select),
|
:deep(.el-input-number) {
|
width: 100%;
|
}
|
|
.under_line {
|
color: #F18201;
|
text-decoration: underline;
|
cursor: pointer;
|
}
|
</style>
|