Browse Source

修复已知bug

dev-xx
马远东 8 months ago
parent
commit
1b74ee1fa6
  1. 26
      src/api/distribution/SeparateTheList.js
  2. 2
      src/option/distribution/SeparateTheList.js
  3. 255
      src/option/distribution/SeparateTheListInfo.js
  4. 17
      src/router/views/index.js
  5. 6
      src/views/distribution/checkInventoryTask/createTask.vue
  6. 65
      src/views/distribution/inventory/delivery/SeparateTheList.vue
  7. 481
      src/views/distribution/inventory/delivery/SeparateTheListInfo.vue
  8. 2
      src/views/distribution/inventory/delivery/distributionStockArticle.vue

26
src/api/distribution/SeparateTheList.js

@ -16,3 +16,29 @@ export const $_finishalltask = params => {
params,
});
};
// 子任务列表
export const $_tasklist = params => {
return request({
url: '/api/logpm-distribution/split-order-task/task-list',
method: 'get',
params,
});
};
//详情撤销任务
export const $_canceltask = params => {
return request({
url: '/api/logpm-distribution/split-order-task/cancel-task',
method: 'post',
params,
});
};
// 子任务详情
export const $_gettaskdetail= params => {
return request({
url: '/api/logpm-distribution/split-order-task/get-task-detail',
method: 'get',
params,
});
};

2
src/option/distribution/SeparateTheList.js

@ -12,7 +12,7 @@ export const columnList = [
label: '序号',
type: 12,
values: '',
width: 55,
width: 40,
fixed: true,
},

255
src/option/distribution/SeparateTheListInfo.js

@ -0,0 +1,255 @@
/** 自提详情内表格 */
export const columnList = [
// {
// prop: '',
// label: '复选框',
// type: 0,
// width: 55,
// fixed: true,
// },
{
prop: '',
label: '序号',
type: 12,
values: '',
width: '50',
fixed: true,
},
{
prop: 'newOrderCode',
label: '拆单订单号',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '原订单编号',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'taskNumber',
label: '拆单件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'number',
label: '已拆件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'stateNameS',
label: '拆单状态',
type: 3,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'customerName',
label: '客户姓名',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerTelephone',
label: '客户电话',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerAddress',
label: '客户地址',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'finishTime',
label: '完成时间',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'createUser',
label: '操作人',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '200',
checkarr: [],
fixed: 'right',
sortable: true,
},
];
/** 详情 */
export const TccolumnList = [
{
prop: '',
label: '序号',
type: 12,
values: '',
width: '50',
fixed: true,
},
{
prop: 'newOrderCode',
label: '拆单订单号',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '原订单编号',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'taskNumber',
label: '拆单件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'number',
label: '已拆件数',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'stateNameS',
label: '拆单状态',
type: 3,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
// 1.2.3
// 未完成 已完成 已撤销
{
prop: 'customerName',
label: '客户姓名',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerTelephone',
label: '客户电话',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'customerAddress',
label: '客户地址',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'finishTime',
label: '完成时间',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
{
prop: 'createUser',
label: '操作人',
type: 1,
values: '',
width: '150',
fixed: false,
sortable: true,
head: false,
},
];

17
src/router/views/index.js

@ -1698,6 +1698,23 @@ export default [
component: () => import('@/views/warehouse/warehousesignedorder/SignedDetails.vue'),
},
],
},
// 拆单详情
{
path: '/distribution/inventory/delivery/SeparateTheListInfo',
component: Layout,
children: [
{
meta: {
i18n: 'dict',
keepAlive: true,
},
path: '/distribution/inventory/delivery/SeparateTheListInfo',
name: '拆单详情',
component: () => import('@/views/distribution/inventory/delivery/SeparateTheListInfo.vue'),
},
],
},
// {
// path: '/cost/Deliverycostmanagement/WarehouseTemplateHome',

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

@ -1104,7 +1104,7 @@ const InventoryDetails = ref([
{
prop: 'groundingPositionCode',
label: '上架后库位',
type: 1,
type: 5,
values: '',
width: '150',
checkarr: [],
@ -1607,6 +1607,10 @@ const InputSo = val => {
} else {
dataS.questStatus = 0;
}
if(val.prop == 'groundingPositionCode'){
dataS.positionCode=val.values
}
console.log(dataS, '要提交的数据');
$_getDetailInfo(dataS).then(res => {
Tctotal.value = res.data.data.total;

65
src/views/distribution/inventory/delivery/SeparateTheList.vue

@ -28,9 +28,6 @@
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" icon="Delete" @click="() => handleDelete(true)">
</el-button>
<el-button type="primary" icon="Download" @click="handleExport"> </el-button>
</div>
<!-- 头部右侧按钮模块 -->
@ -53,7 +50,7 @@
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<el-text @click="handleView(slotProps.scope)"> </el-text>
<el-text @click="handleView(slotProps.scope.row)"> </el-text>
<el-text @click="determine(slotProps.scope.row)"> 完成任务 </el-text>
<el-text @click="handleDelete(false, slotProps.scope.row)"> </el-text>
</template>
@ -212,11 +209,11 @@ const onLoad = debounce(async (params = {}) => {
const { code, data } = res.data;
if (code !== 200) return;
data.records.forEach(item => {
if (item.state == 1) {
if (item.state == 0) {
item.stateNameS = '未完成';
} else if (item.state == 2) {
} else if (item.state == 1) {
item.stateNameS = '已完成';
} else if (item.state == 3) {
} else if (item.state == 2) {
item.stateNameS = '已撤销';
}
});
@ -301,59 +298,23 @@ const currentChange = current => {
};
/** 查看 */
const handleView = ({ row }) => {
$store.commit('DEL_ONCE_TAG', '/basicdata/vehicle/basicdataVehicleAddForm');
const handleView = row => {
console.log(row);
$router.push({
path: '/basicdata/vehicle/basicdataVehicleAddForm',
query: { type: 'view', name: `${row.vehicleNub} -- 查看`, id: row.id },
path: '/distribution/inventory/delivery/SeparateTheListInfo',
query: {
id: row.id,
name: '拆单详情 - ' + row.orderCode,
},
});
};
/**
* isBatch 是否批量删除
* row 单个删除时当前行的数据
*/
const handleDelete = (isBatch, row = {}) => {
let ids = '';
if (isBatch) {
if (!details.selectionList.length) {
ElMessage.warning('请选择要删除的数据');
return;
}
ids = details.selectionList.map(v => v.id).join(',');
} else {
ids = row.id;
}
ElMessageBox.confirm('确定删除该数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
try {
details.loadingObj.pageLoading = true;
const res = await remove(ids);
const { code, msg } = res.data;
if (code !== 200) return ElMessage.error(msg);
ElMessage.success('删除成功');
onLoad();
} catch (error) {
console.log('error :>> ', error);
} finally {
details.loadingObj.pageLoading = false;
}
})
.catch(() => {});
};
/** 导出 */
const handleExport = () => {
getVehicleExport();
};
//
const determine = row => {
console.log(row);
@ -364,7 +325,7 @@ const determine = row => {
})
.then(() => {
let data = {
taskId: row.id,
allTaskId: row.id,
};
$_finishalltask(data).then(res => {
console.log(res, '完成');

481
src/views/distribution/inventory/delivery/SeparateTheListInfo.vue

@ -0,0 +1,481 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<el-row v-if="search">
<!-- 查询模块 -->
<el-form :inline="true" :model="query" class="el-fr-d">
<!-- 查询按钮 -->
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
<el-button icon="el-icon-delete" @click="searchReset()"> </el-button>
</el-form-item>
<el-form-item label="配送日期">
<el-date-picker
v-model="TopQuery.time"
type="datetimerange"
unlink-panels
range-separator="至"
start-placeholder="开始时间"
end-placeholder="结束时间"
:shortcuts="shortcuts"
:default-time="defaultTime2"
/>
</el-form-item>
</el-form>
</el-row>
<!-- 控件模块 -->
<el-row>
<div class="avue-crud__header">
<!-- 头部左侧按钮模块 -->
<div class="avue-crud__left">
<el-button type="primary" @click="AddInfo"
><el-icon><Download /></el-icon></el-button
>
</div>
<!-- 头部右侧按钮模块 -->
<div class="avue-crud__right">
<el-button icon="el-icon-refresh" @click="searchChangeS" circle></el-button>
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button>
<el-button icon="Search" @click="searchHide" circle></el-button>
</div>
</div>
</el-row>
<!-- 首页表格 -->
<el-row>
<!-- 列表模块 -->
<tablecmt
class="tableNode"
:columnList="details.columnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope.row)">详情</el-button>
<el-button
v-if="slotProps.scope.row.state == 1"
@click="cancel(slotProps.scope.row)"
>取消</el-button
>
</div>
</template>
</template>
</tablecmt>
</el-row>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</div>
<el-dialog v-model="dialogVisible" width="60%" title="详情">
<tablecmt
class="TCtableNode"
:columnList="TccolumnList"
:tableData="data"
:loading="loadingObj.list"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass"></div>
</template>
</template>
</tablecmt>
<!-- 分页模块 -->
<el-row class="el-fy">
<div class="avue-crud__pagination flex-c-sb" style="width: 100%">
<div></div>
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[30, 50, 80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
</el-pagination>
</div>
</el-row>
</el-dialog>
</basic-container>
<!-- 列表配置显示 -->
<edittablehead
@setcolum="setnewcolum"
@closce="showdrawer"
:drawerShow="drawerShow"
:columnList="details.columnList"
v-model="details.columnList"
></edittablehead>
</template>
<script setup>
import { ref, reactive, toRefs, computed, onMounted, nextTick, watch } from 'vue';
import { columnList, TccolumnList } from '@/option/distribution/SeparateTheListInfo.js';
import { processRowProperty, setNodeHeight } from '@/utils/util';
import functions from '@/utils/functions.js';
import { ElMessageBox, ElMessage } from 'element-plus';
import { $_tasklist, $_canceltask,$_gettaskdetail } from '@/api/distribution/SeparateTheList';
import { downloadXls } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
const dialogVisible = ref(false);
const details = reactive({
/** 是否开启搜索 */
search: false,
/** 表格搜索条件 */
query: {},
defaultTime2: [new Date(2000, 1, 1, 0, 0, 0), new Date(2000, 2, 1, 23, 59, 59)], // '12:00:00', '08:00:00'
/** 时间快捷选择设置 */
shortcuts: [
{
text: '最近一周',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
return [start, end];
},
},
{
text: '最近一个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
return [start, end];
},
},
{
text: '最近三个月',
value: () => {
const end = new Date();
const start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
return [start, end];
},
},
],
/** 时间选择器数据 */
stockupDate: [],
/** 列表 */
columnList,
TccolumnList,
/** 列表数据 */
data: [],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
currentPage: 1,
pageSize: 50,
total: 0,
},
tcpage: {
currentPage: 1,
pageSize: 50,
total: 0,
},
/** 弹出层显示 */
popUpShow: {
/** 包件明细 */
packageOrderListlVisited: false,
/** 二维码 */
QRCodeVisible: false,
/** 修改客户信息 */
editClientInfoVisible: false,
},
/** 列表Dom节点 */
listNode: '',
form: {},
/** 全屏 */
fullscreenObj: {
/** 包明细 */
packageOrderListlVisited: false,
},
});
const {
search,
query,
shortcuts,
stockupDate,
data,
loadingObj,
selectionList,
drawerShow,
page,
trickleLoadingPage,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
defaultTime2,
} = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
test(details.query);
};
//
const test = val => {};
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
if (!!index) {
index = dayjs(index).format('YYYY-MM-DD');
}
details.query[row.prop] = index;
if (!index) {
delete details.query[row.prop];
}
};
/** 表格表头输入框搜索 */
const btnsc = val => {
console.log(val);
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowProperty(index, row, details);
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
details.search = false; //
};
//
const sizeChange = val => {
details.page.pageSize = val;
if (dialogVisible.value) {
details.tcpage.pageSize = val;
} else {
details.page.pageSize = val;
onLoad();
}
};
/** 页码改变执行的回调 */
const currentChange = val => {
if (dialogVisible.value) {
details.tcpage.currentPage = val;
} else {
details.page.currentPage = val;
onLoad();
}
};
//
const searchChangeS = () => {
onLoad();
};
//
const searchHide = () => {
console.log(details);
details.search = !details.search;
const _node = document.querySelector('.tableNode');
setNodeHeight(_node, '', true);
};
//
function updateDictionary(targetArray, dictionaryType) {
getDictionaryBiz(dictionaryType).then(res => {
console.log(res, '字典');
res.data.data.forEach(item => {
targetArray.push({
value: item.dictKey,
label: item.dictValue,
});
});
});
}
//
const onLoad = () => {
let data = {
splitOrderAllTaskId: $route.query.id,
current: details.page.currentPage,
size: details.page.pageSize,
...details.query,
};
$_tasklist(data).then(res => {
console.log(res, '详情');
if (res.data.code == 200) {
if (res.data.data.records?.length) {
res.data.data.records.forEach(item => {
if (item.state == 1) {
item.stateNameS = '未完成';
} else if (item.state == 2) {
item.stateNameS = '已完成';
} else if (item.state == 3) {
item.stateNameS = '已撤回';
}
});
}
details.data = res.data.data?.records || [];
details.page.total = res.data.data?.total;
}
});
};
const view = (row) => {
dialogVisible.value = true;
gieInfo(row)
setTimeout(() => {
const _node = document.querySelector('.TCtableNode');
setNodeHeight(_node, '', true);
}, 500);
};
const gieInfo=(row)=>{
let data={
taskId:row.id
}
$_gettaskdetail(data).then(res=>{
console.log(res,'详情');
})
}
//
const pageOnlaod = () => {
onLoad();
};
pageOnlaod();
//
const cancel = row => {
ElMessageBox.confirm('是否确认取消?', '提示', {
confirmButtonText: '确认',
cancelButtonText: '取消',
type: 'warning',
})
.then(() => {
let data = {
taskId: row.id,
};
details.loadingObj.list = true;
$_canceltask(data)
.then(res => {
console.log(res, '取消成功');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
onLoad();
}
})
.catch(error => {
console.log(error);
})
.finally(() => {
details.loadingObj.list = false;
});
})
.catch(() => {});
};
//
// const exportExcel = () => {
// if (!Object.values(queryCarn.value).length && !Object.values(details.query).length) {
// ElMessage({
// message: '',
// type: 'warning',
// });
// return;
// }
// ElMessageBox.confirm('?', {
// confirmButtonText: '',
// cancelButtonText: '',
// type: 'warning',
// })
// .then(() => {
// details.loadingObj.list = true;
// let data = {
// current: details.page.currentPage,
// size: details.page.pageSize,
// ...details.query,
// ...queryCarn.value,
// };
// $_signforDistributionStockArticleList(data).then(res => {
// details.loadingObj.list = false;
// downloadXls(res.data, `.xlsx`);
// ElMessage({
// message: '',
// type: 'success',
// });
// });
// })
// .catch(() => {});
// };
</script>
<style scoped lang="scss">
.ElBtnClass button {
border: none;
padding: 0;
background-color: transparent;
}
:deep(.el-card) {
height: 100%;
}
:deep(.el-card__body) {
height: 100%;
display: flex;
flex-direction: column;
}
.el-fy {
flex: 1;
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.avue-crud {
height: 100%;
display: flex;
flex-direction: column;
}
</style>

2
src/views/distribution/inventory/delivery/distributionStockArticle.vue

@ -156,7 +156,7 @@
<el-text @click="handleView(slotProps.scope)"> 查看 </el-text>
<el-text @click="handleCallDeliveryOwn(slotProps.scope)"> 修改客户信息 </el-text>
<el-text @click="handleGoLogs(slotProps.scope)"> 日志 </el-text>
<!-- <el-text @click="Splittheorder(slotProps.scope.row)"> 拆单 </el-text> -->
<el-text @click="Splittheorder(slotProps.scope.row)"> 拆单 </el-text>
</template>
</template>
</tablecmt>

Loading…
Cancel
Save