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.

832 lines
27 KiB

<template>
<basic-container>
<div class="avue-crud">
<el-row :hidden="!search" style="margin-bottom: 1%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
:data="data"
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.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: 1%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
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.columnTakeOver">
<!-- 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}">
<!-- <el-button type="primary" text icon="el-icon-view" @click="handleView(row)">查看</el-button>-->
<el-button type="primary" text icon="el-icon-edit" @click="handleCallDelivery('3',row)">编辑</el-button>
<!-- <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>-->
</template>
</el-table-column>
</el-table>
</el-row>
<el-row style="margin-bottom: 1%">
<!-- 列表模块 -->
<el-table ref="table" v-loading="loading"
@selection-change="selectionChange"
:data="data"
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.columnTakeClice">
<!-- table字段 -->
<el-table-column v-if="item.hide!==true"
:prop="item.prop"
:label="item.label"
:width="item.width"
:key="index">
</el-table-column>
</template>
<!-- &lt;!&ndash; 操作栏模块 &ndash;&gt;-->
<!-- <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;-->
<!-- <el-button type="primary" text icon="el-icon-edit" @click="handleCallDelivery('3',row)">编辑</el-button>-->
<!-- &lt;!&ndash; <el-button type="primary" text icon="el-icon-delete" @click="rowDel(row)">删除</el-button>&ndash;&gt;-->
<!-- </template>-->
<!-- </el-table-column>-->
</el-table>
</el-row>
2 years ago
<h3>包件信息</h3>
<el-row>
<!-- 列表模块 -->
<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>
<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.columnParcels">
<!-- 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}">
<el-button type="primary" text icon="el-icon-view" @click="handleTrajectory(row)">查看轨迹</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" v-if="row.materialId == '' || row.materialId == '-1'" @click="handleMaterial(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>
</el-table>
</el-row>
<el-row>
<div class="avue-crud__pagination" style="width:100%">
<!-- 分页模块 -->
<el-pagination align="right"
background
@size-change="sizeChange"
@current-change="currentChange"
:current-page="page.currentPage"
:page-sizes="[10, 20, 30, 40, 50, 100]"
:page-size="page.pageSize"
layout="total, sizes, prev, pager, next, jumper"
:total="page.total">
</el-pagination>
</div>
</el-row>
<!-- 物料选择模块 -->
<el-dialog :title="titleMaterial"
v-model="materialBox"
width="40%"
:before-close="beforeClose"
append-to-body>
<el-form :disabled="view" ref="form" :model="formMaterial" label-width="80px">
<el-form-item label="物料名称" prop="typeService">
<el-select
v-model="formMaterial.materialId"
filterable
remote
reserve-keyword
placeholder="请输入物料名称"
remote-show-suffix
:remote-method="remoteMethodName"
@change="getMethodName($event,'1')"
:loading="loading"
>
<el-option
v-for="item in optionsName"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="物料编码" prop="serviceNumber">
<el-select
v-model="formMaterial.materialCode"
filterable
remote
reserve-keyword
placeholder="请输入物料编码"
remote-show-suffix
:remote-method="remoteMethodCode"
@change="getMethodName($event,'2')"
:loading="loading"
>
<el-option
v-for="item in optionsCode"
:key="item.id"
:label="item.productCode"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item label="物料单位" prop="orderCode">
<!-- <el-input v-model="formMaterial.unit" placeholder="请输入物料单位"/>-->
<el-select v-model="formMaterial.materialUnit" clearable placeholder="请选择单位">
<el-option
v-for="item in logpmUnit"
:key="item.dictKey"
:label="item.dictValue"
:value="item.dictKey">
</el-option>
</el-select>
</el-form-item>
<el-form-item label="SKU" prop="mallName">
<el-input v-model="formMaterial.sku" placeholder="请输入SKU"/>
</el-form-item>
</el-form>
<!-- 表单按钮 -->
<template #footer>
<span v-if="!view" class="dialog-footer">
<el-button type="primary" icon="el-icon-circle-check" @click="handleSubmitMethod"> </el-button>
<el-button icon="el-icon-circle-close" @click="materialBox = false"> </el-button>
</span>
</template>
</el-dialog>
<el-dialog v-model="dialogFormCustomer" title="修改客户信息">
<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>
</template>
</el-dialog>
<el-dialog
title="二维码"
:visible.sync="dialogVisible"
width="30%"
v-model="dialogVisible">
<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>
</div>
</basic-container>
</template>
<script>
import {
getList,
getDetail,
add,
update,
remove,
addStock,
getQueryQRCode
} from '@/api/distribution/distributionStockArticle';
import { getListOwn, updateParcelList } from '@/api/distribution/distributionParcelList';
import { addCallDelivery } from "@/api/distribution/distrilbutionCallDelivery";
import { addClient } from "@/api/distribution/distributionClientMessage";
import { addService } from "@/api/distribution/distributionServiceLog";
import option from "@/option/distribution/distributionStockArticle";
import { mapGetters } from "vuex";
import { getDictionaryBiz } from '@/api/system/dict';
import { getListMaterial } from '@/api/basic/basicMaterial';
export default {
data () {
return {
height: 0,
// 弹框标题
title: '',
// 是否展示弹框
box: false,
// 是否显示查询
search: true,
// 加载中
loading: true,
// 是否为查看模式
view: false,
// 查询信息
query: {},
// 弹框标题
titleMaterial: '',
optionsName: [],
optionsCode: [],
logpmUnit:[],
// 是否展示弹框
materialBox: false,
// 分页信息
page: {
currentPage: 1,
pageSize: 10,
total: 40
},
// 表单数据
form: {},
formMaterial: {},
formCall: {},// 通知
formService: {}, // 服务
formCustomer: {}, // 客户
// 选择行
selectionList: [],
// 表单配置
option: option,
// 表单列表
data: [],
dataPare: [],
distributionType: [],
dialogTableVisible: false,
dialogVisible:false, //二维码控制
qrCodeObj:[], //二维码图片
dialogFormVisible: false,
dialogFormCustomer: false,
dialogFormService: false,
formLabelWidth: '120px',
handler:true, //首次
trade:false, // 商
municipal:true, // 市
taker:true, // 自提
}
},
mounted () {
this.init();
this.onLoad(this.page);
},
watch:{
'$route.query.id':{
handler(newVal, oldVal) {
// console.log(newVal, oldVal);
this.onLoad(this.page);
this.onLoadOwn(this.page);
},
deep: true,
immediate: true
}
},
computed: {
...mapGetters(["permission"]),
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)
};
},
ids () {
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.id);
});
return ids.join(",");
}
},
methods: {
//提交物品数据
handleSubmitMethod(){
// console.log(">>>",this.formMaterial);
const regex = /^\d+$/;
let asm = {
id: this.formMaterial.id,
// materialId: this.formMaterial.materialId,
}
if (regex.test(this.formMaterial.materialId)) {
// console.log("全是数字");
asm.materialId = this.formMaterial.materialId
} else {
// console.log("包含非数字字符");
asm.materialId = this.formMaterial.materialCode;
}
// console.log(">>>",asm);
updateParcelList(asm).then(() => {
this.materialBox = false;
this.onLoadOwn(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
this.formMaterial = {};
})
},
getMethodName(row,num){
// console.log("名称选择事件",row);
switch (num) {
case '1':
let a = this.optionsName.find( i => i.id == row);
this.formMaterial.materialCode = a.productCode;
this.formMaterial.materialUnit = a.logpmUnit;
this.formMaterial.sku = a.sku;
break;
case '2':
let b = this.optionsCode.find( i => i.id == row);
this.formMaterial.materialId = b.name;
this.formMaterial.materialUnit = b.logpmUnit;
this.formMaterial.sku = b.sku ;
break;
}
},
async remoteMethodName (query){
if (query) {
this.loading = true;
//查询物料数据
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ name: query }).then();
console.log("物料信息",asd.data.data);
this.optionsName =asd.data.data.records;
this.loading = false;
} else {
this.optionsName = [];
}
},
async remoteMethodCode (query){
if (query) {
this.loading = true
let asd = await getListMaterial(this.page.currentPage,this.page.pageSize,{ productCode: query }).then();
console.log("物料编号信息",asd.data.data);
this.optionsCode =asd.data.data.records;
this.loading = false;
} else {
this.optionsCode = []
}
},
handleMoke(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/reservation/reservationFrom',
query:{
id: this.ids,
name: '添加预约单'
}
});
},
handleStockList(){
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/inventory/distributionStockArticleFrom',
query: {
id : this.ids,
name : "转库存单"
}
});
//
// this.$confirm("确定将选择的订单转为库存品吗?", {
// confirmButtonText: "确定",
// cancelButtonText: "取消",
// type: "warning"
// })
// .then(() => {
// return addStock(this.ids);
// })
// .then(() => {
// this.selectionClear();
// this.onLoad(this.page);
// this.$message({
// type: "success",
// message: "操作成功!"
// });
// });
},
//确定通知提货按钮
callFordelivery(inde){
switch (inde) {
case '1':
console.log(this.formCall);
this.formCall.waybillNumber = this.ids;
addCallDelivery(this.formCall).then(() => {
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormVisible = false;
this.formCall={}
});
break;
case '2':
// console.log("服务类型",this.formService);
addService(this.formService).then(() =>{
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormService = false;
this.formService={}
})
break;
case '3':
// console.log("客户信息!!!",this.formCustomer);
this.formCustomer.stockArticleId = this.$route.query.id;
console.log("客户信息!!!",this.formCustomer);
addClient(this.formCustomer).then(() =>{
this.$message({
type: "success",
message: "操作成功!"
});
this.dialogFormCustomer = false;
this.formCustomer={}
this.onLoad(this.page);
})
break;
}
},
//提货跳转
handlebill(row){
console.log(">>>>",this.ids);
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$router.push({
path: '/distribution/inventory/distrilbutionBillLading',
query:{
id: this.ids,
}
});
},
//通知提货
handleCallDelivery(ind,row){
switch (ind) {
case '1':
let ids = [];
this.selectionList.forEach(ele => {
ids.push(ele.orderCode);
});
this.formCall.waybill = ids;
this.dialogFormVisible = true;
break;
case '2':
this.dialogFormService = true;
break;
case '3':
this.dialogFormCustomer = true;
console.log("<><>",row);
this.formCustomer.name = row.customerName;
this.formCustomer.phone = row.customerTelephone;
this.formCustomer.address = row.customerAddress;
break;
}
},
init () {
this.height = this.setPx(document.body.clientHeight - 580);
getDictionaryBiz('distribution_type').then(res => {
this.distributionType = res.data.data;
});
getDictionaryBiz('logpm_unit').then(res => { //单位
this.logpmUnit = res.data.data;
});
},
searchHide () {
this.search = !this.search;
},
searchChange () {
this.onLoad(this.page);
},
searchReset () {
this.query = {};
this.page.currentPage = 1;
this.onLoad(this.page);
},
handleSubmit () {
if (!this.form.id) {
add(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
} else {
update(this.form).then(() => {
this.box = false;
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
})
}
},
//全部
handleEntire(){
this.handler = true;
this.taker = true;
this.trade = false;
},
//商配
handleTrade(){
// this.handler = true;
this.trade = true;
},
//商配
handleMunicipal(){
// this.handler = true;
// this.taker = true;
},
//自提
handlePickUpStore(){
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;
});
}, //自提的通知
handleInform(index){
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;
});
},
handleAdd () {
this.title = '新增'
this.form = {}
this.box = true
},
handleEdit (row) {
this.title = '编辑'
this.box = true
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleView (row) {
this.title = '查看'
this.view = true;
this.box = true;
getDetail(row.id).then(res => {
this.form = res.data.data;
});
},
handleMaterial(row){
console.log("row>>>",row);
this.titleMaterial = "补充物料"
this.materialBox = true;
this.formMaterial.id = row.id;
},
handleQRCode (row) {
// this.title = '查看'
// this.view = true;
// this.box = true;
this.dialogVisible = true;
let qr ={
id : row.id,
qrCode: row.orderPackageCode
}
getQueryQRCode(qr).then(res => {
// this.form = res.data.data;
this.qrCodeObj = [];
console.log("查看二维码",res.data);
let url = window.URL.createObjectURL(res.data); // 获取返回参数中的需要的值data
console.log("什么鬼什么鬼;;;",url);
this.qrCodeObj.push(url);
});
},
handleTrajectory (row) {
console.log(">>>>",row);
this.$message.warning("暂无法显示!!!");
// this.title = '查看'
// this.view = true;
// this.box = true;
// this.dialogVisible = true;
// getDetail(row.id).then(res => {
// this.form = res.data.data;
// });
},
handleDelete () {
if (this.selectionList.length === 0) {
this.$message.warning("请选择至少一条数据");
return;
}
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(this.ids);
})
.then(() => {
this.selectionClear();
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
rowDel (row) {
this.$confirm("确定将选择数据删除?", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
})
.then(() => {
return remove(row.id);
})
.then(() => {
this.onLoad(this.page);
this.$message({
type: "success",
message: "操作成功!"
});
});
},
beforeClose (done) {
done()
this.form = {};
this.view = false;
},
selectionChange (list) {
// console.log("添加阿斯顿发生",list);
this.selectionList = list;
},
selectionClear () {
this.selectionList = [];
// this.$refs.table.clearSelection();
},
currentChange (currentPage) {
this.page.currentPage = currentPage;
this.onLoad(this.page);
},
sizeChange (pageSize) {
this.page.pageSize = pageSize;
this.onLoad(this.page);
},
onLoad (page, params = {}) {
this.loading = true;
this.query.id = this.$route.query.id;
getList(page.currentPage, 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();
});
} ,
onLoadOwn (page, params = {}) {
this.loading = true;
getListOwn(page.currentPage, page.pageSize, {stockArticleId : this.$route.query.id}).then(res => {
console.log("包件明细》》》》》",res.data.data);
const data = res.data.data;
this.page.total = data.total;
this.dataPare = data.records;
2 years ago
this.dataPare.some( i =>{
if(i.conditions == '1'){
i.conditions = '定制品'
}else{
i.conditions = '库存品'
}
})
this.loading = false;
this.selectionClear();
});
}
}
};
</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>