qb 1 year ago
parent
commit
e2a151105a
  1. 11
      src/api/aftersales/aftersalesWorkOrder.js
  2. 1
      src/api/distribution/createTask.js
  3. 399
      src/views/aftersales/VueTemp.vue
  4. 317
      src/views/distribution/checkInventoryTask/createTask.vue
  5. 0
      src/views/distribution/checkInventoryTask/createTaskt.vue
  6. 12
      src/views/distribution/inventory/distributionStockListDetails.vue
  7. 3
      src/views/distribution/inventory/distributionStockListDiscuss.vue
  8. 3
      src/views/distribution/inventory/distributionStockListMarket.vue
  9. 3
      src/views/distribution/inventory/distributionStockListSelf.vue

11
src/api/aftersales/aftersalesWorkOrder.js

@ -1,5 +1,8 @@
import request from '@/axios';
export const getList = (current, size, params) => {
return request({
url: '/api/logpm-aftersales/aftersalesWorkOrder/list',
@ -73,3 +76,11 @@ export const update = (row) => {
})
}
// 表格初始化
export const $_getList = (params) => {
return request({
url: '/api/logpm-aftersales/aftersalesWorkOrder/list',
method: 'get',
params
})
}

1
src/api/distribution/createTask.js

@ -1,4 +1,3 @@
// /basicdataClient/dictList
import request from '@/axios';
/**

399
src/views/aftersales/VueTemp.vue

@ -1,5 +1,38 @@
<template>
<el-card class="box-card">
<div class="el-Cart-button">
<!-- 表格顶部左侧按钮 -->
<div class="el-Cart-button-left">
<el-button type="primary" @click="AddInfo"
><el-icon><Plus /></el-icon> </el-button
>
<el-button @click="handleDelete"
><el-icon><Delete /></el-icon> </el-button
>
<el-button @click="handleDelete"
><el-icon><Edit /></el-icon></el-button
>
<!-- <el-button link type="primary" icon="el-icon-view" @click="toggleSelection()"
>多选测试</el-button
> -->
</div>
<!-- 表格顶部右侧按钮 -->
<div class="el-Cart-button-right">
<!-- 刷新按钮 -->
<button @click="refresh">
<el-icon color="#ccc"><Refresh /></el-icon>
</button>
<!-- 功能按钮 -->
<button @click="menu = true">
<el-icon color="#ccc"><Operation /></el-icon>
</button>
<!-- 搜索按钮 -->
<button @click="search">
<el-icon color="#ccc"><Search /></el-icon>
</button>
</div>
</div>
<el-table
v-loading="loading"
element-loading-text="数据正在更新中..."
@ -49,28 +82,64 @@
</template>
<!-- 内容主体 -->
<template #default="props">
<span v-if="4">{{ props.row[item.prop] ? props.row[item.prop] : '/' }}</span>
<div :class="ElBtnClass" v-if="item.type == 3">
<el-button
:link="ElButtonS[0].link"
:class="ElButtonS[0].class"
:auto-insert-space="ElButtonS[0].space"
:size="ElButtonS[0].size"
:icon="ElButtonS[0].icon"
@click="ViewEvent(props.row)"
>明细</el-button
>
<!-- 按钮 -->
<div :class="ElBtnClass" v-if="item.type == 10">
<el-button @click="ViewEvent(props.row)">查看</el-button>
<el-button @click="ViewEvent(props.row)" >编辑</el-button>
<el-button @click="ViewEvent(props.row)" >回复</el-button>
<el-button @click="ViewEvent(props.row)" >删除</el-button>
</div>
<span v-if="item.type ==4">{{ props.row[item.prop] !=null? props.row[item.prop] : '/' }}</span>
</template>
</el-table-column>
</el-table-column>
</el-table>
<!-- 新增弹窗 -->
<el-dialog
v-model="Indexdialog"
title="Tips"
width="30%"
:before-close="handleClose"
>
<span>This is a message</span>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogVisible = false">Cancel</el-button>
<el-button type="primary" @click="dialogVisible = false">
Confirm
</el-button>
</span>
</template>
</el-dialog>
<div class="page">
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:page-sizes="pageList"
:disabled="disabled"
:background="background"
layout="total, sizes, prev, pager, next, jumper"
:total="total"
@size-change="PageSizeChange"
@current-change="SizeChange"
/>
</div>
</el-card>
</template>
<script setup>
import { $_getList } from "@/api/aftersales/aftersalesWorkOrder";
const currentPage = ref(1); //
const pageSize = ref(30); //
const total = ref(0); //
const pageList = ref([5, 10, 50, 100, 200]); //
const background = ref(true); //
const disabled = ref(false); // 使
const loading=ref(false);//
const Indexdialog=ref(false);//
//
const ElButtonS = ref([
// 1.link (-false ,-tre)
@ -87,49 +156,17 @@ const ElButtonS = ref([
icon: 'el-icon-view',
table: '详情',
},
{
link: false,
class: 'el-btn-view',
space: true,
size: 'small',
icon: 'el-icon-view',
table: '延期',
},
{
link: false,
class: 'el-btn-view',
space: true,
size: 'small',
icon: 'el-icon-view',
table: '编辑',
},
{
link: false,
class: 'el-btn-view',
space: true,
size: 'small',
icon: 'el-icon-view',
table: '对比数据',
},
]);
const ElData=ref([
{
name:'产品名称1',
currentUsageWarehouse:'北京仓库1'
},
{
name:'产品名称2',
currentUsageWarehouse:'北京仓库2'
}
])
const ElData=ref([])//
//
const ElmenuData = ref([
{
prop: 'name',
prop: 'workOrderType',
label: '异常类型',
type: 4,
values: '',
@ -140,7 +177,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'currentUsageWarehouse',
prop: 'discoveryNode',
label: '发现节点',
type: 1,
values: '',
@ -151,8 +188,8 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'model',
label: '异常工单',
prop: 'workOrderNumber',
label: '异常工单',
type: 1,
values: '',
width: '150',
@ -162,7 +199,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'purchaseAmount',
prop: 'waybillNumber',
label: '运单号',
type: 1,
values: '',
@ -173,7 +210,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'state',
prop: 'orderCode',
label: '订单自编号',
type: 1,
values: '',
@ -184,7 +221,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'user',
prop: 'trainNumber',
label: '车次号',
type: 1,
values: '',
@ -195,7 +232,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'deviceSerialNumber',
prop: 'first',
label: '一级品',
type: 1,
values: '',
@ -206,7 +243,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'userPosition',
prop: 'secondary',
label: '二级品',
type: 1,
values: '',
@ -217,7 +254,7 @@ const ElmenuData = ref([
header: true,
},
{
prop: 'isDeposit',
prop: 'vehicleRoute',
label: '车辆线路',
type: 1,
values: '',
@ -227,6 +264,182 @@ const ElmenuData = ref([
sortable: true,
header: true,
},
{
prop: 'deliverGoodsTime',
label: '送货时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'discoveryTime',
label: '发现时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'warehousingTime',
label: '入库时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'waybillMall',
label: '运单商场',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'deliveryTime',
label: '配送时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'deliveryDriver',
label: '配送司机',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'workOrderStatus',
label: '工单状态',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'customerServiceName',
label: '归属客服名称',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'overTime',
label: '完结时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'problemDescription',
label: '异常问题描述',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'personResponsible',
label: '责任人(库内作业环节)',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'processNumber',
label: '钉钉流程号',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'reviewedBy',
label: '审核人',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'auditTime',
label: '审核时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'entryTime',
label: '财务入账时间',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: 'remarks',
label: '备注',
type: 1,
values: '',
width: '180',
checkarr: [],
fixed: false,
sortable: true,
header: true,
},
{
prop: '',
label: '操作',
@ -240,10 +453,80 @@ const ElmenuData = ref([
},
]);
//
const OnLoad=()=>{
loading.value=true;//
let data={}
data.current=currentPage.value;//
data.size=pageSize.value;//
$_getList().then(res=>{
console.log(res,'页面初始化');
if(res.data.data.records.length){
ElData.value=res.data.data.records
loading.value=false;//
}
})
}
OnLoad()
const AddInfo=()=>{
Indexdialog.value=false;//
}
</script>
<style scoped lang='scss'>
.el-card{
height: 100%;
:deep(.el-card__body){
height: 100%;
display: flex;
flex-direction: column;
}
}
.page{
height: 30px;
flex: 1;
display: flex;
align-items: flex-end;
padding-bottom: 14px;
justify-content: flex-end;
}
:deep(.el-Cart-button) {
margin-bottom: 8px;
display: flex;
justify-content: space-between;
}
.el-Cart-button-right {
display: flex;
margin: 0 0px;
justify-content: space-between;
}
.el-Cart-button-right {
display: flex;
margin: 0 0px;
justify-content: space-between;
align-items: center;
button {
background-color: transparent;
border-radius: 50%;
width: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #ccc;
margin-right: 8px;
&:hover {
background-color: #172e601f;
i {
color: #0e2549;
}
}
//
&:last-child {
margin-right: 0;
}
}
}
</style>

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

@ -109,6 +109,15 @@
@click="DetailsNotCounted(props.row)"
>未盘点明细</el-button
>
<el-button
:link="ElButtonS[0].link"
:class="ElButtonS[0].class"
:auto-insert-space="ElButtonS[0].space"
:size="ElButtonS[0].size"
:icon="ElButtonS[0].icon"
@click="Discard(props.row)"
>废弃</el-button
>
<el-button
:link="ElButtonS[1].link"
:class="ElButtonS[1].class"
@ -239,7 +248,7 @@
<el-input
@change="InputSo(item)"
clearable
v-if="item.type == 5 || item.prop == 'categoryName'"
v-if="item.type == 5 || item.prop == 'categoryName' || item.prop == 'materialCode'"
v-model="item.values"
:placeholder="`请输入${item.label}`"
/>
@ -288,7 +297,7 @@
}}</span
>
<span v-if="item.type == 10">
<span v-if="item.type == 10 && item.prop !='materialCode'">
<el-input
clearable
:disabled="props.row.Checkbox"
@ -297,6 +306,25 @@
/>
</span>
<span v-if="item.type==10 && item.prop == 'materialCode'">
<!-- 下拉搜索 -->
<el-select v-if="props.row.wLinputState" v-model="props.row.Input" filterable placeholder="请输入物料编码" >
<el-option
v-for="item in Wloptions"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
<el-input v-else
@change='wLcheng(props.row,props.row)'
clearable
:disabled="props.row.Checkbox"
v-model="props.row.Input"
:placeholder="`请输入${item.label}`"
/>
</span>
<div :class="ElBtnClass" v-if="item.type == 3 && !NotCounted">
<el-button
:link="ElButtonS[2].link"
@ -588,7 +616,7 @@
row-key="name"
border
height="600"
style="width: 100%"
style="width:100%"
@select-all="contrastselectAll"
@select="contrastselectChange"
>
@ -602,7 +630,6 @@
width: 宽度
prop: 数据字段
-->
<el-table-column
:prop="item.prop"
:label="item.label"
@ -664,12 +691,15 @@ import {
$_questDetailIds,
$_exportGetContrastInfo,
$_getList,
postBatchDelete,
} 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';
const wLinput=ref(null);//
const wLinputState=ref(false);//
const SoInfoData = ref({}); //
const searchSo = ref(false); //
const ElData = ref([]); //
@ -848,7 +878,7 @@ const menuData = ref([
label: '操作',
type: 3,
values: '',
width: '400',
width: '430',
checkarr: [],
fixed: 'right',
search: false,
@ -978,7 +1008,7 @@ const InventoryDetails = ref([
head: true,
},
{
prop: 'updateUser',
prop: 'inventoryPerson',
label: '盘点人',
type: 4,
values: '',
@ -989,7 +1019,7 @@ const InventoryDetails = ref([
head: true,
},
{
prop: 'updateTime',
prop: 'inventoryDate',
label: '盘点时间',
type: 4,
values: '',
@ -1032,20 +1062,21 @@ const InventoryDetails = ref([
search: true,
head: true,
},
{
prop: 'brandName',
label: '品牌',
type: 4,
prop: 'categoryName',
label: '产品名称',
type: 10,
values: '',
width: '250',
width: '260',
checkarr: [],
fixed: false,
search: true,
head: true,
},
{
prop: 'categoryName',
label: '产品名称',
prop: 'materialCode',
label: '物料编码',
type: 10,
values: '',
width: '260',
@ -1055,11 +1086,11 @@ const InventoryDetails = ref([
head: true,
},
{
prop: 'materialCode',
label: '物料编码',
type: 5,
prop: 'brandName',
label: '品牌',
type: 4,
values: '',
width: '260',
width: '250',
checkarr: [],
fixed: false,
search: true,
@ -1101,6 +1132,28 @@ const contrast = ref([
search: true,
head: true,
},
{
prop: 'trayCode',
label: '托盘码',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'trayName',
label: '托盘名称',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'brandName',
label: '品牌',
@ -1178,17 +1231,6 @@ const contrast = ref([
search: false,
head: true,
},
{
prop: 'pallet',
label: '所在托盘号',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'positionCode',
label: '货区-货架-货位',
@ -1201,7 +1243,7 @@ const contrast = ref([
head: true,
},
{
prop: 'updateUser',
prop: 'inventoryPerson',
label: '盘点人',
type: 4,
values: '',
@ -1212,7 +1254,7 @@ const contrast = ref([
head: true,
},
{
prop: 'updateTime',
prop: 'inventoryDate',
label: '盘点时间',
type: 4,
values: '',
@ -1244,28 +1286,7 @@ const contrast = ref([
search: false,
head: true,
},
{
prop: 'trayCode',
label: '托盘码',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'trayName',
label: '托盘名称',
type: 4,
values: '',
width: '150',
checkarr: [],
fixed: false,
search: false,
head: true,
},
{
prop: 'groundingPositionCode',
label: '新货位',
@ -1420,57 +1441,57 @@ const InputSo = val => {
let data = {};
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',
});
}
});
// 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;
}
// 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') {
// if (val.prop != 'categoryName' || val.prop != 'materialCode') {
let dataS = {
questNum: row.value.questNum,
questId: row.value.id,
@ -1483,12 +1504,14 @@ const InputSo = val => {
Tctotal.value = res.data.data.total;
res.data.data.records.forEach(item => {
item.Checkbox = true;
item.wLinputState=false;
item.Input=null
});
TcPdloading.value = false;
console.log(res, '明细返回值222');
TcPD.value = res.data.data.records;
});
}
// }
};
//
const TcAddData = () => {
@ -1594,6 +1617,7 @@ const extension = val => {
//
const BatchDelete = () => {};
//
const InventoryDate = () => {
console.log(TcData.value, '延期');
@ -1617,6 +1641,7 @@ const InventoryDate = () => {
//
const InventoryModification = () => {
console.log(Tcrow.value,'Tcrow.value');
if (!Tcrow.value) {
ElMessage({
showClose: true,
@ -1635,8 +1660,10 @@ const InventoryModification = () => {
categoryName: item.categoryName,
questId: item.questId,
questNum: row.value.questNum,
name:item.Input
});
});
console.log(data, '要提交的数据');
$_updateDetailInfo(data).then(res => {
TcViewEvent(row.value); //
console.log(res, '修改成功之后的返回值');
@ -1686,6 +1713,8 @@ const TcViewEvent = (val,Inso) => {
Tctotal.value = res.data.data.total;
res.data.data.records.forEach(item => {
item.Checkbox = true;
item.wLinputState=false;
item.Input=null
});
TcPdloading.value = false;
console.log(res, '明细返回值');
@ -1711,7 +1740,34 @@ const ViewEvent = val => {
}
TcViewEvent(row.value);
};
//
const Discard=(val)=>{
console.log(val);
let data=[]
data.push(val.id)
let ids = data.join(',')
console.log(data);
ElMessageBox.confirm('是否废弃该盘点任务?')
.then(() => {
postBatchDelete({ids}).then(res=>{
console.log(res,'删除成功');
if(res.data.code==200){
ElMessage({
message: '删除成功.',
type: 'success',
})
}
IndexPd()
})
})
.catch(() => {
// catch error
})
}
//
const NotCountedFn = (row,Inso) => {
TcPdloading.value = true;
@ -1727,6 +1783,8 @@ const NotCountedFn = (row,Inso) => {
console.log(res, '未盘点明细返回值');
res.data.data.records.forEach(item => {
item.Checkbox = true;
item.wLinputState=false;
item.Input=null
});
TcPD.value = res.data.data.records;
Tctotal.value = res.data.data.total; //
@ -1994,7 +2052,6 @@ const StatusDetermination = () => {
const optionss = ref([])
const loadings = ref(false)
const list = ref([])
const remoteMethod = (query) => {
if (query !== '') {
@ -2020,6 +2077,55 @@ const Tclist = val => {
}
console.log(TcReaJoin.value, '处理好的数据');
};
//
const Wllist = ref([])
const WLCode = (query) => {
if (query !== '') {
optionss.value = Wllist.value.filter((item) => {
return item.label.toLowerCase().includes(query.toLowerCase())
})
} else {
optionss.value = []
}
}
//
const Wloptions = ref([])
//
const wLcheng=(val,info)=>{
console.log(val.undefined);
console.log(info,'信息');
$_materialList({
name:val.undefined
}).then(res=>{
console.log(res,'物料查询');
if(!res.data.data.records.length){
ElMessageBox.confirm('暂无数据是否新增?')
.then(() => {
TcDataaddition.value=true
})
.catch(() => {
// catch error
})
}else{
// productCode
// wLinputState.value=true;//
info.wLinputState=true;
// Wloptions.value
res.data.data.records.forEach(item=>{
Wloptions.value.push(
{
label:item.name,
value:item.name
}
)
})
}
})
}
//
const InventoryEditing = val => {
$_getList({
@ -2165,6 +2271,8 @@ const TcChenge = (event, val) => {
Tctotal.value = res.data.data.total;
res.data.data.records.forEach(item => {
item.Checkbox = true;
item.wLinputState=false;
item.Input=null
});
TcPdloading.value = false;
console.log(res, '明细返回值');
@ -2242,6 +2350,7 @@ const Refresh = () => {
//
const InventoryTask = () => {
formInventory.value={}
let select = [];
InventoryPopup.value = true; //
getDictList().then(res => {

0
src/views/distribution/checkInventoryTask/createTaska.vue → src/views/distribution/checkInventoryTask/createTaskt.vue

12
src/views/distribution/inventory/distributionStockListDetails.vue

@ -769,24 +769,23 @@ export default {
let query = {};
query.marketId = this.queryOwn.marketId;
query.materialId = this.queryOwn.materialId;
query.stockListId = this.$route.query.id;
console.log('tianjian ', query);
let b = await getListStock(page.currentPage, page.pageSize, Object.assign(params, query));
this.data1 = b.data.data.records;
console.log('出库明细>>>>', this.data1);
this.data1.forEach(i => {
if (i.outboundType == '1') {
if (i.outboundType == 1) {
i.outboundTypeName = '商配';
}
if (i.outboundType == '2') {
if (i.outboundType == 2) {
i.outboundTypeName = '市配';
}
if (i.outboundType == '3') {
if (i.outboundType == 3) {
i.outboundTypeName = '自提';
}
if (i.deliveryListCode == '-1') {
i.deliveryListCode = null;
}
});
console.log("处理的数据》》》",this.data1);
this.page1.total = b.data.data.total;
this.loading = false;
},
@ -819,6 +818,7 @@ export default {
this.query.serviceType = this.queryOwn.serviceType;
this.query.materialId = this.queryOwn.materialId;
this.query.warehouseId = this.queryOwn.warehouseId;
this.query.incomingBatch = this.$route.query.incomingBatch;
this.query.storeId =
!!this.queryOwn.storeId && this.queryOwn.storeId != '-1' ? this.queryOwn.storeId : null;
console.log('库存品参数<><><><', this.query);

3
src/views/distribution/inventory/distributionStockListDiscuss.vue

@ -1091,6 +1091,9 @@ export default {
path: '/distribution/inventory/distributionStockListDetails',
query: {
id: row.row.id,
marketId: row.row.marketId,
materialId: row.row.materialId,
incomingBatch: row.row.incomingBatch,
name: row.row.descriptionGoods + ' — 明细',
},
});

3
src/views/distribution/inventory/distributionStockListMarket.vue

@ -1082,6 +1082,9 @@ export default {
path: '/distribution/inventory/distributionStockListDetails',
query: {
id: row.row.id,
marketId: row.row.marketId,
materialId: row.row.materialId,
incomingBatch: row.row.incomingBatch,
name: row.row.descriptionGoods + ' — 明细',
},
});

3
src/views/distribution/inventory/distributionStockListSelf.vue

@ -1084,6 +1084,9 @@ export default {
path: '/distribution/inventory/distributionStockListDetails',
query: {
id: row.row.id,
marketId: row.row.marketId,
materialId: row.row.materialId,
incomingBatch: row.row.incomingBatch,
name: row.row.descriptionGoods + ' — 明细',
},
});

Loading…
Cancel
Save