|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template> |
|
|
|
|
<div class="maxContent"> |
|
|
|
|
<div class="maxContent" v-loading="loadingObj.pageLoading"> |
|
|
|
|
<!-- 搜索功能 --> |
|
|
|
|
<div> |
|
|
|
|
<!-- <div class="SoInput" v-show="searchSo"> |
|
|
|
@ -158,6 +158,9 @@
|
|
|
|
|
<el-button type="primary" @click="TcAddData" v-if="Statusjudgment">新 增</el-button> |
|
|
|
|
<el-button type="primary" @click="InventoryModification">提交修改</el-button> |
|
|
|
|
<el-button type="primary" @click="ModifyingStatus">修改状态</el-button> |
|
|
|
|
<el-button icon="Download" type="primary" @click="handleUncountedExport"> |
|
|
|
|
导出 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<div style="margin-left: 10px"> |
|
|
|
|
<!-- v-if="NotCounted" --> |
|
|
|
@ -211,7 +214,7 @@
|
|
|
|
|
> |
|
|
|
|
<template #header> |
|
|
|
|
<el-input |
|
|
|
|
@change="InputSo(item)" |
|
|
|
|
@change="() => InputSo(item)" |
|
|
|
|
clearable |
|
|
|
|
v-if="item.type == 5 || item.prop == 'categoryName' || item.prop == 'materialCode'" |
|
|
|
|
v-model="item.values" |
|
|
|
@ -668,12 +671,13 @@ import {
|
|
|
|
|
$_exportGetContrastInfo, |
|
|
|
|
$_getList, |
|
|
|
|
$_postBatchDelete, |
|
|
|
|
postExportContrastStockInfo, |
|
|
|
|
} from '@/api/distribution/createTask'; |
|
|
|
|
import { ElMessageBox } from 'element-plus'; |
|
|
|
|
import { ElMessage } from 'element-plus'; |
|
|
|
|
import { downloadXls } from '@/utils/util'; |
|
|
|
|
import { getDictionaryBiz } from '@/api/system/dict'; |
|
|
|
|
import { ref } from 'vue'; |
|
|
|
|
import { ref, reactive } from 'vue'; |
|
|
|
|
import { off } from 'dom7'; |
|
|
|
|
const wLinput = ref(null); //物料编码搜索框 |
|
|
|
|
const wLinputState = ref(false); //标记是否显示下拉框 |
|
|
|
@ -730,6 +734,13 @@ const Statusjudgment = ref(false); //新增按钮
|
|
|
|
|
const DbEx = ref(null); //对比明细导出 |
|
|
|
|
const fullScreen = ref(false); //是否全屏 |
|
|
|
|
const BatchAbandonment = ref([]); //首页废弃 |
|
|
|
|
/** loading */ |
|
|
|
|
const loadingObj = reactive({ |
|
|
|
|
/** 页面loading */ |
|
|
|
|
pageLoading: false, |
|
|
|
|
}); |
|
|
|
|
/** 未盘点query */ |
|
|
|
|
const uncountedQuery = reactive({}); |
|
|
|
|
const radioList = ref([ |
|
|
|
|
{ label: 0, txt: '在库', input: 'stockNum', disabled: true }, |
|
|
|
|
{ label: 1, txt: '破损', input: 'wornNum', disabled: true }, |
|
|
|
@ -1450,57 +1461,7 @@ const InputSo = val => {
|
|
|
|
|
console.log(row.value, 'row.value'); |
|
|
|
|
data.current = TccurrentPage.value; |
|
|
|
|
data.size = TcpageSize.value; |
|
|
|
|
// if (val.prop == 'categoryName') { |
|
|
|
|
// //查询产品名称 |
|
|
|
|
// data.name = val.values; |
|
|
|
|
// $_materialList(data).then(res => { |
|
|
|
|
// console.log(res, '查询的返回值'); |
|
|
|
|
// if (res.data.data.records.length) { |
|
|
|
|
// Tctotal.value = res.data.data.total; |
|
|
|
|
// res.data.data.records.forEach(item => { |
|
|
|
|
// item.Checkbox = true; |
|
|
|
|
// }); |
|
|
|
|
// TcPdloading.value = false; |
|
|
|
|
// console.log(res, '明细返回值'); |
|
|
|
|
// TcPD.value = res.data.data.records; |
|
|
|
|
// } else { |
|
|
|
|
// Statusjudgment.value = true; //显示新增按钮 |
|
|
|
|
// TcPD.value = res.data.data.records; |
|
|
|
|
// ElMessage({ |
|
|
|
|
// message: '暂未查询到内容', |
|
|
|
|
// type: 'warning', |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
// if (val.prop == 'materialCode') { |
|
|
|
|
// //查询物料编码 |
|
|
|
|
// data.sku = val.values; |
|
|
|
|
// $_materialList(data).then(res => { |
|
|
|
|
// console.log(res, '查询的返回值'); |
|
|
|
|
// if (res.data.data.records.length) { |
|
|
|
|
// Tctotal.value = res.data.data.total; |
|
|
|
|
// res.data.data.records.forEach(item => { |
|
|
|
|
// item.Checkbox = true; |
|
|
|
|
// }); |
|
|
|
|
// TcPdloading.value = false; |
|
|
|
|
// console.log(res, '明细返回值'); |
|
|
|
|
// TcPD.value = res.data.data.records; |
|
|
|
|
// } else { |
|
|
|
|
// Statusjudgment.value = true; //显示新增按钮 |
|
|
|
|
// TcPD.value = res.data.data.records; |
|
|
|
|
// ElMessage({ |
|
|
|
|
// message: '暂未查询到内容', |
|
|
|
|
// type: 'warning', |
|
|
|
|
// }); |
|
|
|
|
// } |
|
|
|
|
// }); |
|
|
|
|
// return; |
|
|
|
|
// } |
|
|
|
|
|
|
|
|
|
// if (val.prop != 'categoryName' || val.prop != 'materialCode') { |
|
|
|
|
let dataS = { |
|
|
|
|
questNum: UncountedDetails.value.questNum, |
|
|
|
|
questId: UncountedDetails.value.id, |
|
|
|
@ -2463,7 +2424,6 @@ const InventorySubmit = () => {
|
|
|
|
|
loading.value = true; //开启表格加载 |
|
|
|
|
console.log(SubData, '处理好的数据'); |
|
|
|
|
postAddtaskQuest(SubData).then(res => { |
|
|
|
|
|
|
|
|
|
if ((res.data.code = 200)) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
@ -2498,14 +2458,13 @@ const InventorySubmit = () => {
|
|
|
|
|
loading.value = true; //开启表格加载 |
|
|
|
|
postAddtaskQuest(SubData).then(res => { |
|
|
|
|
if ((res.data.code = 200)) { |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
onLoad(); //体积之后初始化页面 |
|
|
|
|
} |
|
|
|
|
ElMessage({ |
|
|
|
|
message: res.data.msg, |
|
|
|
|
type: 'success', |
|
|
|
|
}); |
|
|
|
|
onLoad(); //体积之后初始化页面 |
|
|
|
|
} |
|
|
|
|
console.log(res, '盘点计划提交成功'); |
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
// 顶部废弃按钮 |
|
|
|
@ -2555,6 +2514,23 @@ const DelayButton = () => {
|
|
|
|
|
console.log('延期'); |
|
|
|
|
dialogTabData.value = true; |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** 未盘点数据导出 */ |
|
|
|
|
const handleUncountedExport = () => { |
|
|
|
|
ElMessageBox.confirm('是否导出未盘点数据?').then(async () => { |
|
|
|
|
try { |
|
|
|
|
TcPdloading.value = true; |
|
|
|
|
const res = await postExportContrastStockInfo({ questNum: UncountedDetails.value.questNum }); |
|
|
|
|
if (res.status !== 200) return; |
|
|
|
|
|
|
|
|
|
downloadXls(res.data, '未盘点数据.xlsx'); |
|
|
|
|
} catch (error) { |
|
|
|
|
console.log('error :>> ', error); |
|
|
|
|
} finally { |
|
|
|
|
TcPdloading.value = false; |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|