Browse Source

修复已知bug

dev-xx
马远东 6 months ago
parent
commit
875a4122b7
  1. 9
      src/api/warehouse/PreStoragePackage.js
  2. 16
      src/router/views/index.js
  3. 301
      src/views/basicdata/brand/basicdataCategoryTemp.vue
  4. 130
      src/views/warehouse/prewarehousing/PreStoragePackage.vue

9
src/api/warehouse/PreStoragePackage.js

@ -26,6 +26,15 @@ export const getInOrder = params => {
});
};
// 零担入库
export const $_inOrderByZero= data => {
return request({
url: '/api/logpm-business/businessPreOrder/inOrderByZero',
method: 'post',
data,
});
};
/**
* 根据车次获取未入库数据
* @param {*} params

16
src/router/views/index.js

@ -1752,6 +1752,22 @@ export default [
},
],
},
{
path: '/basicdata/brand/basicdataCategoryTemp',
component: Layout,
redirect: '/basicdata/brand/basicdataCategoryTemp',
children: [
{
meta: {
i18n: 'dict',
keepAlive: true,
},
path: '/basicdata/brand/basicdataCategoryTemp',
name: '产品管理重构',
component: () => import('@/views/basicdata/brand/basicdataCategoryTemp.vue'),
},
],
},

301
src/views/basicdata/brand/basicdataCategoryTemp.vue

@ -0,0 +1,301 @@
<template>
<basic-container>
<!-- 首页表格 -->
<div class="avue-crud">
<!-- 搜索模块 -->
<div v-h5uShow="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>
</div>
<!-- 控件模块 -->
<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"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<div class="ElBtnClass">
<el-button @click="view(slotProps.scope)">查看</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>
</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 } from '@/option/storagecost/OrderTotalTransferDetails.js';
import { processRowPropertyName, setNodeHeight } from '@/utils/util';
import { ElMessageBox, ElMessage } from 'element-plus';
import { downloadXls, handleClearTableQuery } from '@/utils/util';
import { useStore } from 'vuex';
import dayjs from 'dayjs';
const $router = useRouter(); //
const $useStore = useStore(); //
const $route = useRoute(); //
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,
/** 列表数据 */
data: [{}],
/** 页面loading */
loadingObj: {
/** 列表加载loading */
list: false,
packageListLoading: false,
},
/** 列表复选框选中的数据 */
selectionList: [],
/** 是否显示设置表格 */
drawerShow: false,
/** 分页参数 */
page: {
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,
zeroAdditionalRecordingInfo,
popUpShow,
recorddata,
defaultTime2,
} = toRefs(details);
/** 展开列表控件 */
const showdrawer = _flag => {
details.drawerShow = _flag;
};
/** 表格表头输入框搜索 */
const inputsc = (index, row) => {
processRowPropertyName(index, row, details.query);
onLoad();
};
/** 表格表头时间选择 */
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];
}
onLoad();
};
/** 表格表头下拉框选择 */
const selectsc = (index, row) => {
processRowPropertyName(index, row, details.query);
onLoad();
};
/** 表格表头复选框选择 */
const selectionChange = list => {
console.log(list);
details.selectionList = list;
};
//
const searchChange = () => {
onLoad();
};
//
const sizeChange = val => {
details.page.pageSize = val;
onLoad();
};
/** 页码改变执行的回调 */
const currentChange = val => {
details.page.currentPage = val;
onLoad();
};
//
const searchChangeS = () => {
details.search = false; //
onLoad();
};
//
const searchReset = () => {
details.query = {};
details.page.currentPage = 1;
handleClearTableQuery(details.columnList);
onLoad();
};
//
const searchHide = () => {
console.log(details,';details.search');
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 = () => {};
</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>

130
src/views/warehouse/prewarehousing/PreStoragePackage.vue

@ -50,15 +50,30 @@
<template #default="slotProps">
<template v-if="slotProps.scope.column.label === '操作'">
<!-- 查看二维码 -->
<el-text @click="() => handleShowQrCode(slotProps.scope)"> 查看二维码 </el-text>
<el-text
@click="() => handleShowQrCode(slotProps.scope)"
v-if="slotProps.scope.row.conditions !== 3"
>
查看二维码
</el-text>
<!-- 入库 -->
<el-text
v-if="Number(slotProps.scope.row.inWarehouse) !== 1"
v-if="
Number(slotProps.scope.row.inWarehouse) !== 1 && slotProps.scope.row.conditions == 1
"
@click="() => handleIncoming(slotProps.scope)"
>
入库
</el-text>
<el-text
v-if="
Number(slotProps.scope.row.inWarehouse) !== 1 && slotProps.scope.row.conditions == 3
"
@click="() => Lessthantruckloadstorage(slotProps.scope.row)"
>
手动入库
</el-text>
</template>
</template>
</tablecmt>
@ -125,7 +140,7 @@ import {
showOrderPackgeCode,
$_showOrderPackgeCodeByCode,
} from '@/api/distribution/distributionStockArticle';
import { getList, getInOrder } from '@/api/warehouse/PreStoragePackage';
import { getList, getInOrder, $_inOrderByZero } from '@/api/warehouse/PreStoragePackage';
import { ElMessage, ElMessageBox } from 'element-plus';
import { getShowAdvancePackgeCode } from '@/api/waybill/orderPackageListDetails';
//
@ -217,13 +232,11 @@ const onLoad = async (params = {}) => {
try {
// loading
details.loadingObj.list = true;
const { orderCode, waybillNumber, distrCarNumber } = $route.query;
const { distrCarNumber } = $route.query;
const submitData = {
...details.page,
...details.query,
...params,
orderCode,
waybillNumber,
distrCarNumber,
};
@ -363,7 +376,15 @@ const handleShowQrCode = async ({ row }) => {
/** 批量查看二维码 */
const handleBatchShowQrCode = async () => {
if (details.selectionList.length == 0) return ElMessage.error({ message: '请先选择包件' });
try {
let _state = details.selectionList.every(item => item.conditions != 3);
console.log(_state, 'state');
if (!_state) {
ElMessage.warning('所选数据包含零担,零担暂不支持二维码查看');
return;
}
details.loadingObj.pageLoading = true;
let checkcode = [];
@ -421,9 +442,46 @@ const handleIncoming = ({ row }) => {
}
});
};
const Lessthantruckloadstorage = async row => {
console.log(row);
ElMessageBox.prompt('请填写入库数量', '零担入库', {
confirmButtonText: '确定',
cancelButtonText: '取消',
inputValue: row.quantity, //
inputValidator: value => {
if (Number(value) > row.quantity) {
return `入库数量不能超过${row.quantity}`;
}
return true;
},
})
.then(async ({ value }) => {
try {
let data = [
{
id: row.id,
unloadNum: value,
},
];
details.loadingObj.pageLoading = true;
let _res = await $_inOrderByZero(data);
console.log(_res, '_res');
if (_res.data.code == 200) {
ElMessage.success(_res.data.msg);
initOnLoad();
}
} catch (e) {
console.log(e, 'error');
} finally {
details.loadingObj.pageLoading = false;
}
})
.catch(() => {
//
});
};
function ProhibitSelection(val, index) {
console.log(val, 'vvv');
if (val.inWarehouse == 1) {
return false;
} else {
@ -431,9 +489,39 @@ function ProhibitSelection(val, index) {
}
}
/** 批量入库 */
const handleBatchImcoming = () => {
if (details.selectionList.length === 0) return ElMessage.warning('请选择要批量入库的数据');
//
const Lessthantruckloadbulkwarehousing = () => {
ElMessageBox.confirm('是否确认批量零担入库?入库数量为预约数量。', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
})
.then(async () => {
try {
let data = [];
data = details.selectionList.map(item => {
return {
id: item.id,
unloadNum: item.quantity,
};
});
details.loadingObj.pageLoading = true;
let _res = await $_inOrderByZero(data);
console.log(_res, '_res');
if (_res.data.code == 200) {
ElMessage.success(_res.data.msg);
initOnLoad();
}
} catch (e) {
console.log(e, 'error');
} finally {
details.loadingObj.pageLoading = false;
}
})
.catch(() => {});
};
//
const Batchstoragecustomizedproducts = () => {
const isParamSame = details.selectionList.every(
({ distrCarNumber }) => distrCarNumber === details.selectionList[0].distrCarNumber
);
@ -474,6 +562,28 @@ const handleBatchImcoming = () => {
}
});
};
/** 批量入库 */
const handleBatchImcoming = () => {
if (!details.selectionList.length) {
ElMessage.warning('请选择要批量入库的数据');
return;
}
let _state =
details.selectionList.every(item => item.conditions === 1) ||
details.selectionList.every(item => item.conditions === 3);
if (!_state) {
ElMessage.warning('只能选择同一种类型批量入库');
return;
}
//
if (details.selectionList.every(item => item.conditions === 1)) {
Batchstoragecustomizedproducts();
} else {
//
Lessthantruckloadbulkwarehousing();
}
};
</script>
<style scoped lang="scss">

Loading…
Cancel
Save