Browse Source

新增导出

dev-xx
qb 1 year ago
parent
commit
658f862650
  1. 51
      src/api/distribution/createTask.js
  2. 98
      src/views/distribution/checkInventoryTask/createTask.vue

51
src/api/distribution/createTask.js

@ -63,32 +63,32 @@ export const $_postBatchDelete = params => {
});
};
// 新增盘点任务
export const $_submit = (data) => {
export const $_submit = data => {
return request({
url: '/api/logpm-basic/material/submit',
method: 'post',
data
})
}
data,
});
};
/**
* 盘点详情
*/
export const $_getDetailInfo = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/getDetailInfo',
method:'get',
method: 'get',
params,
});
};
// 查询货位信息
export const $_getList = ( params) => {
export const $_getList = params => {
return request({
url: '/api/logpm-basicdata/goodsAllocation/list',
method: 'get',
params
})
}
params,
});
};
/**
* 盘点状态修改
@ -96,7 +96,7 @@ export const $_getList = ( params) => {
export const $_updateQuestChildInfo = data => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/updateQuestChildInfo',
method:'put',
method: 'put',
data,
});
};
@ -107,42 +107,33 @@ export const $_updateQuestChildInfo = data => {
export const $_getQuestChildInfo = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/getQuestChildInfo',
method:'get',
method: 'get',
params,
});
};
/**
* 盘点查询
*/
export const $_materialList = params => {
return request({
url: '/api/logpm-basic/material/list',
method:'get',
method: 'get',
params,
});
};
/**
* 删除盘点数据接口
*/
export const $_deleteQuestChild = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/deleteQuestChild',
method:'get',
method: 'get',
params,
});
};
/**
* 盘点详情保存
*/
@ -154,8 +145,6 @@ export const $_updateDetailInfo = data => {
});
};
/**
* 盘点日期延期
*/
@ -167,7 +156,6 @@ export const $_updateDate = data => {
});
};
/**
* 盘点对比数据
*/
@ -205,7 +193,6 @@ export const $_exportGetContrastInfo = params => {
});
};
// 盘点任务库存品
export const $_QuestSelectInventory = params => {
return request({
@ -216,7 +203,6 @@ export const $_QuestSelectInventory = params => {
};
// 盘点任务零担
export const $_taskQuestSelectZreo = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/SelectZreo',
@ -224,3 +210,14 @@ export const $_taskQuestSelectZreo = params => {
params,
});
};
/**
* 未盘点数据导出
*/
export const postExportContrastStockInfo = params => {
return request({
url: '/api/logpm-warehouse/blade-taskQuest/taskQuest/exportContrastStockInfo',
method: 'get',
params,
});
};

98
src/views/distribution/checkInventoryTask/createTask.vue

@ -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>

Loading…
Cancel
Save