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

363 lines
11 KiB
Vue

<template>
<div>
<el-form :inline="true" :model="query" class="query-form" size="mini">
<el-form-item class="query-form-item">
<el-input clearable v-model="query.code" placeholder="搜索"></el-input>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="search" @click="onSubmit"
>查询
</el-button
>
<el-button type="primary" icon="search" @click="deleteDialog"
>删除
</el-button
>
</el-button-group>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="codeArry"
style="width: 100%"
ref="multipleTable"
:row-style="rowStyle"
tooltip-effect="dark"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index" fixed></el-table-column>
<el-table-column label="条码" prop="code" fixed></el-table-column>
<!-- <el-table-column
label="供应商"
prop="supId"
show-overflow-tooltip
></el-table-column>-->
<el-table-column
label="数量"
prop="count"
width="220"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作" fixed="right" width="250">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="deleteCode(scope.$index, scope.row)"
>减一
</el-button>
<!--<el-button
type="text"
size="small"
@click.native.stop="bindRl(scope.row)"
>选择产品
</el-button>
<el-button
type="text"
size="small"
@click.native.stop="handleUnitClick(scope.row)"
>选择供应商
</el-button>-->
</template>
</el-table-column>
</el-table>
<el-pagination
:current-page="query.page"
:page-size="query.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
<el-dialog
title="选择供应商"
:visible.sync="dialogTableVisible"
v-if="dialogTableVisible"
width="70%"
append-to-body
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<DialogSelectUnit
:codeId="curRow"
v-on:selectSupUnit="selectSupUnit"
v-on:closeBindDialog="closeBindDialog"
></DialogSelectUnit>
</el-dialog>
<el-dialog
title="绑定产品ID"
:visible.sync="selectRlVisible"
width="80%"
v-if="selectRlVisible"
append-to-body
:close-on-click-modal="false"
:close-on-press-escape="false"
>
<selectRlDialog
:curRow="curRow"
v-on:selectBindRl="selectBindRl"
v-on:closeBindDialog="closeBindDialog"
></selectRlDialog>
</el-dialog>
</div>
</template>
<script>
import {
errorCodeList,
deleteCodesTempById,
deleteCodes, updateCodeBindSup,
} from "../../api/warehouse/order";
import draggable from "vuedraggable";
import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl";
export default {
name: "idQuery",
props: {
idQuery: {
type: Object,
required: true,
},
getOrderList: {
type: Function,
required: true
}
},
data() {
return {
query: {
code: "",
corpOrderId: "",
page: 1,
limit: 20,
},
codeArry: [],
total: 0,
loading: true,
index: null,
formLoading: false,
formVisible: false,
deleteLoading: false,
orderNo: null,
curRow: null,
multipleSelection: [],
selectRlVisible: false,
dialogTableVisible: false,
};
},
components: {
draggable, DialogSelectUnit, selectRlDialog
},
methods: {
handleSelectionChange(val) {
this.multipleSelection = val;
},
onReset() {
this.$router.push({
path: "",
});
this.query = {
code: "",
page: 1,
limit: 20,
};
this.getCodeList();
},
onSubmit() {
this.$router.push({
path: "",
query: this.query,
});
this.query.page = 1;
this.getCodeList();
},
handleSizeChange(val) {
this.query.limit = val;
this.getCodeList();
},
handleCurrentChange(val) {
this.query.page = val;
this.getCodeList();
},
deleteDialog() {
if (this.multipleSelection.length === 0) {
this.$message.warning("请选择需要删除的条码")
return;
}
this.$confirm("是否删除所选条码?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.onDelete();
})
.catch(() => {
});
},
deleteCode(index, row) {
this.$confirm("是否确定移除一个条码?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
}).then(() => {
this.loading = true;
let tQuery = {
id: row.id
}
deleteCodesTempById(tQuery)
.then((response) => {
if (response.code === 20000) {
if ((this.codeArry.length - 1) === 0) {
this.getOrderList();
}
this.getCodeList();
} else {
this.$message.error(response.message);
}
this.loading = false;
}).catch(() => {
this.loading = false;
})
}).catch((error) => {
});
},
onDelete() {
var selectData = this.multipleSelection;
var codeList = [];
selectData.forEach((obj, index) => {
codeList.push(obj.id);
});
var tquery = {
codes: codeList,
};
deleteCodes(tquery).then((response) => {
if (response.code === 20000) {
this.getCodeList();
this.$message({
type: "success",
message: "删除成功!",
});
} else {
this.$message.error("删除失败!");
}
});
},
getCodeList() {
this.loading = true;
this.query.orderId = this.idQuery.id;
errorCodeList(this.query) //查找该单号下的所有条码
.then((response) => {
this.loading = false;
this.codeArry = response.data.list || [];
this.total = response.data.total || 0;
})
.catch(() => {
this.loading = false;
this.codeArry = [];
this.total = 0;
});
},
intentBack() {
// this.$router.push({path:'../readme/detail',query:{id:row.corpOrderId}});
this.$router.go(-1);
},
//绑定数据
bindRl(val) {
debugger
this.curRow = val;
this.selectRlVisible = true;
},
handleUnitClick(row) {
this.curRow = row;
this.dialogTableVisible = true;
},
selectSupUnit(row) {
let query = {
id: this.curRow.id,
supId: row.erpId,
};
updateCodeBindSup(query).then((response) => {
if (response.code == 20000) {
this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId;
this.getCodeList();
} else {
this.$message.error(response.message);
}
}).catch(() => {
});
},
selectBindRl(row) {
let query = {
id: this.curRow.id,
relId: row.id,
};
updateCodeBindSup(query).then((response) => {
if (response.code == 20000) {
this.$message.success("绑定成功");
this.idQuery.id = this.curRow.orderId;
this.getCodeList();
} else {
this.$message.error(response.message);
}
}).catch(() => {
});
},
closeBindDialog(val) {
this.selectRlVisible = false;
this.dialogTableVisible = false;
},
rowStyle({row, rowIndex}) {
let rowBackground = {};
if (row.supId == null || row.relId == null) {
//rowBackground.background="#f6f5ee";
rowBackground.color = '#f60303';
}
return rowBackground;
},
},
filters: {},
mounted() {
document.body.ondrop = function (event) {
event.preventDefault();
event.stopPropagation();
};
},
created() {
// 将参数拷贝进查询对象
let query = this.$route.query;
this.orderNo = query.id;
this.query = Object.assign(this.query, query);
this.query.limit = parseInt(this.query.limit);
this.query.corpOrderId = query.id;
this.query.code = null;
// 加载表格数据
this.getCodeList();
},
};
</script>
<style type="text/scss" lang="scss">
</style>