You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1358 lines
44 KiB

2 years ago
<template>
<basic-container>
<div class="avue-crud">
<el-row v-if="!search" style="margin-bottom: 5%">
2 years ago
<!-- 列表模块 -->
<el-table
ref="table"
v-loading="loading"
:data="data"
height="20%"
style="width: 100%"
:border="option.border"
>
<template v-for="(item, index) in option.columnBasic">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
>
</el-table-column>
</template>
</el-table>
</el-row>
<!-- <el-row style="margin-bottom: 5%">
&lt;!&ndash; 列表模块 &ndash;&gt;
2 years ago
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
2 years ago
:data="data"
height="20%"
style="width: 100%"
:border="option.border">
<template v-for="(item,index) in option.columnTakeOver">
&lt;!&ndash; table字段 &ndash;&gt;
2 years ago
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
2 years ago
</el-table>
2 years ago
</el-row>
<el-row style="margin-bottom: 5%">
&lt;!&ndash; 列表模块 &ndash;&gt;
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
style="width: 100%"
:border="option.border">
<template v-for="(item,index) in option.columnStockUp">
&lt;!&ndash; table字段 &ndash;&gt;
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
</el-table>
</el-row>-->
2 years ago
<el-row>
<el-tabs
type="card"
class="demo-tabs"
style="width: 100%"
v-model="activeName"
@tab-click="handleClick"
>
<el-tab-pane label="自提列表" name="reservation">
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="data3"
:height="height"
style="width: 100%"
:border="option.border"
>
<!-- <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>-->
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column
v-if="option.index"
label="序号"
type="index"
width="60"
align="center"
>
</el-table-column>
<template v-for="(item, index) in option.columnReservationSelf">
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
>
</el-table-column>
</template>
<!-- 操作栏模块 -->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
<div class="avue-crud__pagination" style="width: 100%">
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page3.currentPage"
2 years ago
:page-sizes="[30, 50,80, 120]"
:page-size="page3.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page3.total"
>
</el-pagination>
</div>
</el-tab-pane>
2 years ago
<el-tab-pane label="订单列表" name="library">
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="dataPare"
:height="height"
style="width: 100%"
:border="option.border"
>
<!-- <el-table-column type="selection" v-if="option.selection" width="55" align="center"></el-table-column>-->
2 years ago
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column
v-if="option.index"
label="序号"
type="index"
width="60"
align="center"
>
2 years ago
</el-table-column>
<template v-for="(item, index) in option.columnStockOrder">
2 years ago
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
>
2 years ago
</el-table-column>
</template>
<!-- 操作栏模块 -->
<!-- <el-table-column prop="menu" label="操作" :width="220" align="center">-->
<!-- <template #="{row}">-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>&ndash;&gt;-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
2 years ago
</el-table>
<div class="avue-crud__pagination" style="width: 100%">
2 years ago
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
2 years ago
:page-sizes="[30, 50,80, 120]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total"
>
2 years ago
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="备货包件" name="outbound">
<el-button type="primary" text icon="el-icon-view" v-if =isStockUp @click="handleStockUp(row,'1')">备货</el-button>
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="data1"
:height="height"
style="width: 100%"
:border="option.border"
>
<el-table-column
type="selection"
v-if="option.selection"
width="55"
align="center"
></el-table-column>
2 years ago
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column
v-if="option.index"
label="序号"
type="index"
width="60"
align="center"
>
2 years ago
</el-table-column>
<template v-for="(item, index) in option.columnStockingBag">
2 years ago
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
>
2 years ago
</el-table-column>
</template>
<!-- 操作栏模块 -->
2 years ago
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
<el-button type="primary" text icon="el-icon-view" v-if=" row.stockupStatusName== '待备货' " @click="handleStockUp(row,'2')">备货</el-button>
<el-button type="primary" text icon="el-icon-view" @click="handleQRCode(row)">查看包条码</el-button>
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
2 years ago
</template>
</el-table-column>
2 years ago
</el-table>
<div class="avue-crud__pagination" style="width: 100%">
2 years ago
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page1.currentPage"
2 years ago
:page-sizes="[30, 50,80, 120]"
:page-size="page1.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page1.total"
>
2 years ago
</el-pagination>
</div>
</el-tab-pane>
<el-tab-pane label="库存品" name="enter">
<el-text type="primary" text icon="el-icon-view" @click="handleBatchDetail('2')">批量打印</el-text>
<el-table
ref="table"
v-loading="loading"
@selection-change="selectionChange"
:data="data2"
:height="height"
style="width: 100%"
:border="option.border"
>
<el-table-column
type="selection"
v-if="option.selection"
width="55"
align="center"
></el-table-column>
2 years ago
<el-table-column type="expand" v-if="option.expand" align="center"></el-table-column>
<el-table-column
v-if="option.index"
label="序号"
type="index"
width="70"
align="center"
>
2 years ago
</el-table-column>
<template v-for="(item, index) in option.columnInventory">
2 years ago
<!-- table字段 -->
<el-table-column
v-if="item.hide !== true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index"
>
2 years ago
</el-table-column>
</template>
<!-- 操作栏模块 -->
<el-table-column prop="menu" label="操作" :width="220" align="center">
<template #="{ row }">
<el-button type="primary" text icon="el-icon-view" v-if=" row.stockupStatusName== '已备货' " @click="onDetail(row)">明细</el-button>
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleEdit(row)">编辑</el-button>-->
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
2 years ago
</el-table>
<div class="avue-crud__pagination" style="width: 100%">
2 years ago
<!-- 分页模块 -->
<el-pagination
align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page2.currentPage"
2 years ago
:page-sizes="[30, 50,80, 120]"
:page-size="page2.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page2.total"
>
2 years ago
</el-pagination>
</div>
</el-tab-pane>
</el-tabs>
</el-row>
<!-- <el-row>
2 years ago
<div class="avue-crud__pagination" style="width:100%">
&lt;!&ndash; 分页模块 &ndash;&gt;
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
2 years ago
:page-sizes="[30, 50,80, 120]"
2 years ago
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>-->
<el-dialog title="二维码" :visible.sync="dialogVisible" width="780px" v-model="dialogVisible">
<div>
<div v-html="html"></div>
<!-- <div v-for="(item,index) in qrCodeObj">
<el-row>
<el-col :span="24" >
<el-image width="10" height="10" w-full :key="index" :src="item " alt="Preview Image"/>
</el-col>
</el-row>
</div> -->
</div>
<span slot="footer" class="dialog-footer">
<!-- <el-button type="primary" @click="ddd"> </el-button>-->
<el-button type="primary" @click="printTemplate"> </el-button>
<el-button type="primary" @click="dialogVisible = false"> </el-button>
<el-button @click="dialogVisible = false"> </el-button>
</span>
</el-dialog>
<el-dialog title="包条码" :visible.sync="dialogPack" width="780px" v-model="dialogPack">
<el-text type="primary" icon="el-icon-view" @click="handleBatchDetail('1')">批量打印</el-text>
<tablecmt
:columnList="columnInventoryBatch"
:tableData="packageCodeList"
:loading="loading"
@inputTxt="inputsc"
@timeCheck="timesc"
@btnCheck="btnsc"
@selectCheck="selectsc"
@selection="selectionChange"
>
<template #default="slotProps">
<el-text type="primary" text icon="el-icon-view" @click="handlePrintDetail(slotProps.scope.row)">打印</el-text>
</template>
</tablecmt>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page2.currentPage"
:page-sizes="[30, 50,80, 120]"
:page-size="page2.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page2.total">
</el-pagination>
</div>
<span slot="footer" class="dialog-footer">
<!-- <el-button type="primary" @click="ddd"> </el-button>-->
<!-- <el-button type="primary" @click="printTemplate"> </el-button>-->
<el-button type="primary" @click="dialogPack = false"> </el-button>
<el-button @click="dialogPack = false"> </el-button>
</span>
</el-dialog>
<el-dialog v-model="dialogHand" title="系统备货">
<el-form :model="form">
<el-form-item label="备货区域" :label-width="formLabelWidth" >
<el-select v-model="form.goodsAreaId" clearable placeholder="请选择备货区编号" @change="getForklift($event,'3')">
<el-option
v-for="item in goodsAreaIdData"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogHand = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery()"> 确定 </el-button>
</span>
</template>
</el-dialog>
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
2 years ago
<el-form :model="formCustomer">
<el-form-item label="姓名" :label-width="formLabelWidth">
<el-input v-model="formCustomer.name" autocomplete="off" />
</el-form-item>
<el-form-item label="电话" :label-width="formLabelWidth">
<el-input v-model="formCustomer.phone" autocomplete="off" />
</el-form-item>
<el-form-item label="地址" :label-width="formLabelWidth">
<el-input
v-model="formCustomer.address"
:rows="2"
type="textarea"
placeholder="请填写地址"
/>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="dialogFormCustomer = false">取消</el-button>
<!-- <el-button type="primary" @click="dialogFormVisible = false"> 确定 </el-button>-->
<el-button type="primary" @click="callFordelivery('3')"> 确定 </el-button>
</span>
2 years ago
</template>
</el-dialog>
2 years ago
</div>
</basic-container>
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
getDetailStockupOwnSelf,
getDetailReservationOwn,
getDetailOrderOwn,
getDetailInventoryOwn,
billStockList, getDetailOrderOwnSelf, getDetailInventoryOwnSelf, getListUser
} from '@/api/distribution/distributionStockup';
import option from '@/option/distribution/distributionStockup';
import { mapGetters } from 'vuex';
2 years ago
import { getDictionaryBiz } from '@/api/system/dict';
import { getParcelListOwn, getParcelListOwnSelf } from '@/api/distribution/distributionParcelList';
import { getDisStockList, getPrintDetail } from '@/api/distribution/disStockListDetail';
import { stockUp } from '@/api/basicdata/basicdataGoodsArea';
import { getStockDetail } from '@/api/distribution/distributionStock';
import { getStockTemplate, showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { getLodop } from '@/utils/LodopFuncs';
import dayjs from 'dayjs';
2 years ago
export default {
data() {
2 years ago
return {
html: '', // 页面包条码内容
dialogVisible: false, //二维码控制
dialogPack: false, //包件控制
2 years ago
height: 0,
activeName: 'reservation',
packageCodeList: [],
columnInventoryBatch:[
{
prop: '',
label: '序号',
type: 0,
values: '',
width: 55,
checkarr: [],
fixed: true,
},
{
prop: 'sku',
label: 'SKU',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: true,
sortable: true,
head: false,
},
{
prop: 'orderCode',
label: '订单编号',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'descriptionGoods',
label: '物料名称',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'cargoUnit',
label: '单位',
type: 1,
values: '',
width: '100',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'stockPackageCode',
label: '包条码',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'brandName',
label: '品牌',
type: 1,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: '',
label: '操作',
type: 6,
values: '',
width: '230',
checkarr: [],
fixed: 'right',
hide: true,
},
],
2 years ago
// 弹框标题
title: '',
// 是否展示弹框
box: false,
isStockUp: false,
2 years ago
// 是否显示查询
search: true,
// 加载中
loading: true,
2 years ago
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 分页信息
page: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40,
2 years ago
},
// 分页信息
page1: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40,
2 years ago
},
// 分页信息
page2: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40,
2 years ago
},
// 分页信息
page3: {
currentPage: 1,
2 years ago
pageSize: 30,
total: 40,
2 years ago
},
// 表单数据
form: {},
formCall: {}, // 通知
2 years ago
formService: {}, // 服务
formCustomer: {}, // 客户
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
data1: [],
data2: [],
dataPare: [],
data3: [],
distributionType: [],
serveTypeList: [],
deliveryWayList: [],
stockupStatusList: [],
dialogTableVisible: false,
dialogFormVisible: false,
dialogFormCustomer: false,
dialogHand: false,
goodsAreaIdData: [],
2 years ago
dialogFormService: false,
deptId: '',
2 years ago
formLabelWidth: '120px',
handler: true, //首次
trade: false, // 商
municipal: true, // 市
taker: true, // 自提
};
2 years ago
},
mounted() {
2 years ago
this.init();
},
watch: {
'$route.query.id': {
2 years ago
handler(newVal, oldVal) {
// console.log(newVal, oldVal);
this.init();
},
deep: true,
immediate: true,
},
2 years ago
},
computed: {
...mapGetters(['permission']),
2 years ago
permissionList() {
return {
addBtn: this.validData(this.permission.basicdataBrandCategory_add, false),
viewBtn: this.validData(this.permission.basicdataBrandCategory_view, false),
delBtn: this.validData(this.permission.basicdataBrandCategory_delete, false),
editBtn: this.validData(this.permission.basicdataBrandCategory_edit, false),
2 years ago
};
},
ids() {
2 years ago
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(',');
},
2 years ago
},
methods: {
showdrawer(value){
this.drawerShow=value
},
/**
* 弹窗的勾选回调用于更改头部数组
* 固定搭配只需要更换 columnList
*/
setnewcolum(newarr, headarr,type) {
// console.log(newarr,'+++++++++++')
if(type==1){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'checkList', headarr);
}else if(type==2){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'flexList', headarr);
}else if(type==3){
this.columnList = newarr;
this.$functions.setStorage(window.location.pathname+'sortlist', headarr);
}
},
selectionsc(value) {
console.log(value);
},
delectsolt(scope) {
const { row } = scope;
console.log(row);
},
editsolt(scope) {
const { row } = scope;
console.log(row);
},
btnsc(index, row) {
console.log(index, row);
},
selectsc(index, row) {
console.log(index, row);
// if(row.prop =='typeServiceName'){
// this.query['typeService'] = index;
// }else if(row.prop =='stockupStatusName'){
// this.query["stockupStatus"] = index;
// }else if(row.prop =='assignStatusName'){
// this.query["assignStatus"] = index;
// }else{
// this.query[row.prop] = index;
// }
// // this.query[row.prop] = index;
// this.onLoad(this.page);
},
timesc(index, row) {
console.log(index, row);
if (!!index){
index = dayjs(index).format('YYYY-MM-DD');
}
this.query[row.prop] = index
if (!index){
delete this.query[row.prop]
}
this.onLoad(this.page);
},
inputsc(index, row) {
console.log(index, row);
/* if(row.prop =='typeServiceName'){
this.query['typeService'] = index;
}else if(row.prop =='stockupStatusName'){
this.query["stockupStatus"] = index;
}else if(row.prop =='assignStatusName'){
this.query["assignStatus"] = index;
}else{
this.query[row.prop] = index;
}*/
this.query[row.prop] = index;
this.onLoad(this.page);
},
//批量打印
handleBatchDetail(type){
console.log("selectionList",this.selectionList);
if(this.selectionList.length == 0){
this.$message.warning("至少选择一条数据!!")
return ;
}
if(type== '1'){
//包条码批量
let checkcode=[]
this.selectionList.map(item=>{
console.log("item>>>",item);
checkcode.push(item.id)
})
let qr = {
ids: checkcode.join(','),
type: "2"
};
getPrintDetail(qr).then( res =>{
console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
}else if(type== '2'){
//包条码批量
let myMap = [];
this.selectionList.map(item=>{
if(!!item.stocklist){
myMap.push(item.stocklist);
}
})
let qr = {
ids: myMap.join(","),
type: "3"
};
console.log("><><>>",qr);
//库存品订单批量
getPrintDetail(qr).then( res =>{
// console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
}
},
//单独打印
handlePrintDetail(row){
console.log("单个答应》》》",row);
row.type = "1";
getPrintDetail(row).then( res =>{
console.log(",./");
this.dialogVisible = true;
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
})
},
onDetail(row){
this.selectionList = [];
console.log("row>><><><",row);
this.dialogPack = true;
//查询信息
let po = {
stockListId: row.stockListId,
reservationId: row.reservationId,
}
let s =[];
getDisStockList(po).then( res =>{
console.log("res>>>>库存包件码",res.data.data);
res.data.data.forEach(i => {
if(!!i){
let a = {};
a.sku = i.sku;
a.id = i.id;
a.orderCode = i.orderCode;
a.descriptionGoods = i.descriptionGoods;
a.cargoUnit = i.cargoUnit;
a.stockPackageCode = i.stockPackageCode;
a.brandName = i.brandName;
a.stockListId = i.stockListId;
a.reservationId = i.reservationId;
s.push(a);
}
});
this.packageCodeList = s;
})
},
//打印
printTemplate() {
let LODOP = getLodop();
console.log("LODOP>>>>>",LODOP);
// console.log("this.ids>>>>>",this.selectionList);
// if (this.selectionList.length === 0){
// this.$message.warning("请选择至少一条数据");
// return;
// }
getStockTemplate({ id: this.materialQRCode.id }).then(res => {
console.log('返回的数据', res.data.data);
let templateData = res.data.data;
// let templateData = "res.data.data";
// console.log(templateData);
LODOP.PRINT_INITA(1, 1, 900, 660, '测试预览功能');
LODOP.SET_PRINT_MODE('WINDOW_DEFPRINTER', 'Godex G500');
LODOP.SET_PRINT_STYLEA(0,"TextNeatRow",true);//允许标点溢出,且英文单词拆开
// // 设置打印整宽且不变形
LODOP.SET_PRINT_MODE('PRINT_PAGE_PERCENT', 'Auto-Width');
// // 设置打印后自动关闭
LODOP.SET_PRINT_MODE('AUTO_CLOSE_PREWINDOW', 1);
// // data就是一段html文本
LODOP.ADD_PRINT_HTM('0%', '0%', '100%', '100%', templateData);
// LODOP.PREVIEW(); //预览(预览打印无脚标)
LODOP.PRINT(); //直接打印
});
},
//查看包条码
handleQRCode(row) {
// this.title = '查看'
// this.view = true;
// this.box = true;
this.materialQRCode = row;
let qr = {
ids: row.id,
};
showOrderPackgeCode(qr).then(res => {
// this.orderPackageCode = res.data
console.log(res.data);
this.html=''
this.html=this.getHtmls(res.data.data.dataList,res.data.data.templateHtml)
});
this.dialogVisible = true;
},
//选择
getForklift(row,ty){
switch (ty){
case '3':
let f = this.goodsAreaIdData.find(i =>i.dictKey == row)
this.form.stockupArea = f.dictValue;
break;
}
},
//系统备货确定
callFordelivery(){
// console.log("确定操作",this.form);
let c = false;
let ids = [];
if (this.selectionList.length > 0) {
ids = this.selectionList.map(i => i.id).join(',');
this.selectionList.forEach( i =>{
if(!!i.stockupStatus){
c = true;
}
})
this.form.ids = ids.split(",");
}
if(c){
this.$message.warning("有已备货的数据!!")
return ;
}
this.form.stockupId = this.$route.query.id;
this.form.stockupType = "ZT";
console.log("ids",this.form);
getStockDetail( Object.assign(this.form)).then(res =>{
console.log("resd",res.data.data);
this.$message({
type: "success",
message: "操作成功!"
});
this.getStockUpParcelsList(this.page1);
this.form = {};
this.dialogHand = false;
});
},
//备货id
handleStockUp(row,type){
getListUser().then(res =>{ //查询当前人信息
console.log("res>>>",res.data.data);
this.deptId = res.data.data.deptId;
this.getStorageArea();
})
console.log("备货数据!!",row);
switch (type){
case '1':
if(this.selectionList.length === 0){
this.$message.warning("至少选择一条数据!!!");
return;
}
let ar = this.selectionList.find(i =>i.stockupStatusName === '已备货');
console.log("ar",ar);
if(!!ar){
this.$message.warning("有已备货的数据,请勿选择!!!");
return ;
}
break;
case '2':
let i = [];
i.push(row.id);
this.form.ids = i;
break;
}
this.dialogHand = true;
},
//备货区
async getStorageArea(){
let params ={
department: this.deptId
}
stockUp(params).then(res =>{
// console.log("res>>>",res.data.data);
let fo =[];
res.data.data.forEach(i =>{
let v = {
dictKey: i.id,
dictValue: i.name +'-'+i.headline
}
fo.push(v)
})
this.goodsAreaIdData = fo;
})
},
handleClick(tab, event) {
console.log(tab, event);
2 years ago
console.log(tab.props.name);
this.leibiao = tab.props.name;
if (this.leibiao == 'library') {
2 years ago
//订单
this.getOrderList(this.page);
} else if (this.leibiao == 'outbound') {
2 years ago
//包件
this.getStockUpParcelsList(this.page1);
} else if (this.leibiao == 'enter') {
2 years ago
//库存品
this.getInventoryList(this.page2);
}
},
init() {
2 years ago
this.height = this.setPx(document.body.clientHeight - 570);
getDictionaryBiz('distribution_type').then(res => {
//配送类型
2 years ago
this.distributionType = res.data.data;
});
// 费用类型字典
getDictionaryBiz('delivery_cost').then(res => {
this.clientType = res.data.data;
});
// console.log("配送方式123", this.deliveryWayList);
getDictionaryBiz('delivery_way').then(res => {
//配送方式
2 years ago
this.deliveryWayList = res.data.data;
console.log('配送方式123', this.deliveryWayList);
2 years ago
});
getDictionaryBiz('stockup_status').then(res => {
//配送方式
2 years ago
this.stockupStatusList = res.data.data;
});
getDictionaryBiz('addvalue_serve_type').then(res => {
//服务类型
2 years ago
this.serveTypeList = res.data.data;
});
this.onLoad(this.page);
},
searchHide() {
2 years ago
this.search = !this.search;
},
searchChange() {
2 years ago
this.onLoad(this.page);
},
searchReset() {
2 years ago
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit() {
2 years ago
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
2 years ago
}
},
//全部
handleEntire() {
2 years ago
this.handler = true;
this.taker = true;
this.trade = false;
},
//商配
handleTrade() {
2 years ago
// this.handler = true;
this.trade = true;
},
//商配
handleMunicipal() {
2 years ago
// this.handler = true;
// this.taker = true;
},
//自提
handlePickUpStore() {
2 years ago
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(
res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
}
);
2 years ago
}, //自提的通知
handleInform(index) {
2 years ago
this.loading = true;
// console.log("this.query",this.query);
let params = {};
this.query.typeService = '1';
switch (index) {
case '1':
this.query.notification = index;
break;
case '2':
this.query.notification = index;
break;
}
this.query.typeService = '1';
getList(this.page.currentPage, this.page.pageSize, Object.assign(params, this.query)).then(
res => {
const data = res.data.data;
this.page.total = data.total;
this.data = data.records;
this.loading = false;
this.selectionClear();
this.handler = false;
this.taker = false;
}
);
2 years ago
},
handleAdd() {
this.title = '新增';
this.form = {};
this.box = true;
2 years ago
},
handleEdit(row) {
this.title = '编辑';
this.box = true;
2 years ago
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView(row) {
this.title = '查看';
2 years ago
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleDelete() {
2 years ago
if (this.selectionList.length === 0) {
this.$message.warning('请选择至少一条数据');
2 years ago
return;
}
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
rowDel(row) {
this.$confirm('确定将选择数据删除?', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',
2 years ago
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: 'success',
message: '操作成功!',
2 years ago
});
});
},
beforeClose(done) {
done();
2 years ago
this.form = {};
this.view = false;
},
selectionChange(list) {
2 years ago
// console.log("添加阿斯顿发生",list);
this.selectionList = list;
},
selectionClear() {
2 years ago
this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange(currentPage) {
if (!!this.leibiao && this.leibiao == 'library') {
2 years ago
this.page.currentPage = currentPage;
this.getOrderList(this.page);
} else if (!!this.leibiao && this.leibiao == 'outbound') {
2 years ago
this.page1.currentPage = currentPage;
this.getStockUpParcelsList(this.page1);
} else if (!!this.leibiao && this.leibiao == 'enter') {
2 years ago
this.page2.currentPage = currentPage;
this.getInventoryList(this.page2);
} else {
2 years ago
this.page3.currentPage = currentPage;
this.getReservationList(this.page3);
}
},
sizeChange(pageSize) {
if (!!this.leibiao && this.leibiao == 'library') {
2 years ago
this.page.pageSize = pageSize;
this.getOrderList(this.page);
} else if (!!this.leibiao && this.leibiao == 'outbound') {
2 years ago
this.page1.pageSize = pageSize;
this.getStockUpParcelsList(this.page1);
} else if (!!this.leibiao && this.leibiao == 'enter') {
2 years ago
this.page2.pageSize = pageSize;
this.getInventoryList(this.page2);
} else {
2 years ago
this.page3.pageSize = pageSize;
this.getReservationList(this.page3);
}
},
onLoad(page, params = {}) {
this.loading = true;
2 years ago
this.query.id = this.$route.query.id;
getDetailStockupOwnSelf(this.$route.query.id).then(res => {
2 years ago
const data = res.data.data;
this.data[0] = data;
2 years ago
this.loading = false;
this.billStockListPage(page);
2 years ago
});
},
/**
* 查询备货任务关联的自提任务
* @param {*} page
*/
async billStockListPage(page) {
let a = await billStockList(page.currentPage, page.pageSize, { id: this.$route.query.id });
this.data3 = a.data.data.records;
console.log("自提任务》》》》》》",this.data3);
console.log("费用类型lll",this.clientType);
this.data3.forEach(i =>{
if(!!i.list){
i.collectFee = 0;
i.storageFee = 0;
i.transport = 0;
i.forklift = 0;
i.otherFee = 0;
i.list.forEach(a =>{
const { cost, money } = a; // 对象解构,获取a对象的cost和money属性
switch (cost) {
case '1': // 到付
i.collectFee = money ? parseInt(money) : 0;
break;
case '2': // 仓储费用
i.storageFee = money ? parseInt(money) : 0;
break;
case '3': // 搬运费
console.log("0=-0-=");
i.transport = money ? parseInt(money) : 0;
break;
case '4': // 叉车费
i.forklift = money ? parseInt(money) : 0;
break;
case '5': // 其他增值费
i.otherFee = money ? parseInt(money) : 0;
break;
}
})
}
});
// if (!!this.data3 && this.data3.length > 0) {
// this.data3.forEach(i => {
// let b = this.stockupStatusList.find(a => a.dictKey == i.stockupStatus);
// if (!!b) {
// i.stockupStatusName = b.dictValue;
// }
// });
// }
this.page3.total = a.data.data.total;
this.loading = false;
this.selectionClear();
},
2 years ago
//查询包件列表
async getStockUpParcelsList(page) {
let a = await getParcelListOwnSelf(page.currentPage, page.pageSize, { id: this.$route.query.id });
console.log('包件...', a.data);
2 years ago
const data = a.data.data;
this.data1 = data.records;
this.data1.forEach(i => {
let b = this.stockupStatusList.find(a => a.dictKey == i.stockupStatus);
if (!!b) {
2 years ago
i.stockupStatusName = b.dictValue;
}
if(i.stockupStatusName == '待备货'){
this.isStockUp = true;
}
});
this.page1.total = a.data.data.total;
this.loading = false;
this.selectionClear();
2 years ago
},
//查询订单列表
async getOrderList(page) {
let a = await getDetailOrderOwnSelf(page.currentPage, page.pageSize, {
id: this.$route.query.id,
});
// console.log("订单...",a.data);
2 years ago
const data = a.data.data;
this.dataPare = data.records;
this.dataPare.forEach(i => {
let b = this.stockupStatusList.find(a => a.dictKey == i.stockupStatus);
if (!!b) {
2 years ago
i.stockupStatusName = b.dictValue;
}
});
this.page.total = a.data.data.total;
this.loading = false;
this.selectionClear();
2 years ago
},
//查询库存品列表
async getInventoryList(page) {
let a = await getDetailInventoryOwnSelf(page.currentPage, page.pageSize, {
id: this.$route.query.id,
});
// console.log("库存品...",a.data);
2 years ago
const data = a.data.data;
this.data2 = data.records;
this.data2.forEach(i => {
let b = this.stockupStatusList.find(a => a.dictKey == i.stockupStatus);
if (!!b) {
2 years ago
i.stockupStatusName = b.dictValue;
}
});
this.page2.total = a.data.data.total;
this.loading = false;
this.selectionClear();
2 years ago
},
//转换类型
getOwnServer(row, name, list) {
// console.log(">>>>>",row,name,list);
// console.log(">>>>>",row);
// console.log(">>>>>",name);
// console.log(">>>>>",list);
row.forEach(i => {
// console.log(i,"-=-=-=-");
let a = list.find(s => s.dictKey == i);
// console.log("aaaa",a);
if (!!a) {
name += a.dictValue;
}
2 years ago
});
return name;
},
},
2 years ago
};
</script>
<style scoped>
.el-button--text {
margin-right: 15px;
}
.el-select {
width: 300px;
}
.el-input {
width: 300px;
}
.dialog-footer button:first-child {
margin-right: 10px;
}
</style>