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.
361 lines
8.8 KiB
Vue
361 lines
8.8 KiB
Vue
2 years ago
|
<template>
|
||
|
<div>
|
||
|
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" max-height="350" height="350"
|
||
|
:row-style="rowStyle"
|
||
|
border
|
||
|
ref="multipleTable">
|
||
|
<el-table-column
|
||
2 years ago
|
type="selection"
|
||
|
width="55">
|
||
2 years ago
|
</el-table-column>
|
||
|
<el-table-column label="序号" type="index" width="55"></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="UDI码"
|
||
|
prop="code"
|
||
|
width="280"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="生产日期"
|
||
|
prop="produceDate"
|
||
|
width="120"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="失效日期"
|
||
|
prop="expireDate"
|
||
|
width="120"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="批次号"
|
||
|
prop="batchNo"
|
||
|
width="120"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="序列号"
|
||
|
prop="serialNo"
|
||
|
width="120"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="供应商"
|
||
|
prop="supName"
|
||
|
width="180"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="扫码数量"
|
||
|
prop="count"
|
||
|
width="80"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
|
<el-table-column
|
||
2 years ago
|
label="实际数量"
|
||
|
prop="reCount"
|
||
|
width="80"
|
||
|
show-overflow-tooltip
|
||
2 years ago
|
></el-table-column>
|
||
2 years ago
|
<el-table-column label="操作" width="240">
|
||
2 years ago
|
<template slot-scope="scope">
|
||
|
<el-button
|
||
2 years ago
|
type="text"
|
||
|
size="small"
|
||
|
@click.native.stop="deleteCode(scope.$index, scope.row)"
|
||
2 years ago
|
>减一
|
||
|
</el-button
|
||
|
>
|
||
|
<el-button
|
||
2 years ago
|
type="text"
|
||
|
size="small"
|
||
|
:disabled="scope.row.relId!=null"
|
||
|
@click.native.stop="bindRl(scope.row)"
|
||
2 years ago
|
>绑定产品
|
||
2 years ago
|
</el-button
|
||
|
>
|
||
|
<el-button
|
||
2 years ago
|
type="text"
|
||
|
size="small"
|
||
|
:disabled="scope.row.supId!=null"
|
||
|
@click.native.stop="handleUnitClick(scope.row)"
|
||
2 years ago
|
>绑定供应商
|
||
2 years ago
|
</el-button
|
||
|
>
|
||
|
<el-button
|
||
2 years ago
|
type="text"
|
||
|
size="small"
|
||
|
@click.native.stop="editCode(scope.row)"
|
||
2 years ago
|
>编辑
|
||
|
</el-button
|
||
|
>
|
||
|
</template>
|
||
|
</el-table-column>
|
||
|
</el-table>
|
||
|
<div class="block">
|
||
|
<pagination
|
||
2 years ago
|
v-show="total>0"
|
||
|
:total="total"
|
||
|
:page.sync="query.page"
|
||
|
:limit.sync="query.limit"
|
||
|
@pagination="getList"
|
||
2 years ago
|
/>
|
||
|
</div>
|
||
2 years ago
|
|
||
|
<!-- 绑定产品-->
|
||
|
<el-dialog
|
||
2 years ago
|
:title="selectRlTitle"
|
||
|
:visible.sync="selectRlVisible"
|
||
|
width="80%"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false"
|
||
|
v-if="selectRlVisible"
|
||
|
append-to-body
|
||
2 years ago
|
>
|
||
|
<selectRlDialog
|
||
2 years ago
|
:curRow="curRow"
|
||
|
:fromCorp="fromCorp"
|
||
|
v-on:selectBindRl="selectBindRl"
|
||
|
v-on:closeBindDialog="closeBindDialog"
|
||
2 years ago
|
></selectRlDialog>
|
||
|
</el-dialog>
|
||
|
|
||
|
|
||
|
<!-- 绑定供应商-->
|
||
|
<el-dialog
|
||
2 years ago
|
:title="selectUnitTitle"
|
||
|
:visible.sync="dialogTableVisible"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false"
|
||
|
v-if="dialogTableVisible"
|
||
|
width="80%"
|
||
|
append-to-body
|
||
2 years ago
|
>
|
||
|
<DialogSelectUnit
|
||
2 years ago
|
:codeId="curRow"
|
||
|
:fromCorp="fromCorp"
|
||
|
v-on:selectSupUnit="selectSupUnit"
|
||
|
v-on:closeBindDialog="closeBindDialog"
|
||
2 years ago
|
></DialogSelectUnit>
|
||
|
</el-dialog>
|
||
|
|
||
|
<el-dialog
|
||
2 years ago
|
:title="editTitle"
|
||
|
:visible.sync="editCodeVisible"
|
||
|
append-to-body width="70%"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false"
|
||
|
v-if="editCodeVisible"
|
||
2 years ago
|
>
|
||
|
<editCodeDialog
|
||
2 years ago
|
editTye="2"
|
||
|
:closeCodeDialog="closeCodeDialog"
|
||
|
:codeDetail="codeDetail">
|
||
2 years ago
|
</editCodeDialog>
|
||
|
</el-dialog>
|
||
|
|
||
|
|
||
2 years ago
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
2 years ago
|
import {deleteCodesTempById, errorCodeList, updateCodeBindSup} from "@/api/inout/order";
|
||
|
import selectRlDialog from "./DialogSelectRl";
|
||
|
import DialogSelectUnit from "./DialogSelectUnit";
|
||
|
import editCodeDialog from "./DialogEditCode";
|
||
|
import {parseTime} from "@/utils/coTools";
|
||
2 years ago
|
|
||
|
export default {
|
||
|
name: "IoAddCodeDetail",
|
||
|
props: {
|
||
|
idQuery: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
2 years ago
|
refreshPanel: {
|
||
|
type: Function,
|
||
|
required: true,
|
||
|
},
|
||
2 years ago
|
selectRlTitle: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
|
selectUnitTitle: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
},
|
||
|
editTitle: {
|
||
|
type: Object,
|
||
|
required: true,
|
||
|
}
|
||
|
|
||
2 years ago
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
loading: false,
|
||
|
query: {
|
||
|
code: "",
|
||
|
corpOrderId: "",
|
||
|
},
|
||
2 years ago
|
codeDetail: null,
|
||
2 years ago
|
codeArray: [],
|
||
|
total: 0,
|
||
|
curRow: null,
|
||
|
selectRlVisible: false,
|
||
|
dialogTableVisible: false,
|
||
|
editCodeVisible: false,
|
||
2 years ago
|
editOriginCodeVisible: false,
|
||
|
fromCorp: null,
|
||
2 years ago
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
getCodeList() {
|
||
|
this.loading = true;
|
||
2 years ago
|
this.query.orderId = this.idQuery.billNo;
|
||
2 years ago
|
errorCodeList(this.query) //查找该单号下的所有条码
|
||
2 years ago
|
.then((response) => {
|
||
|
this.codeArray = response.data.list || [];
|
||
|
this.total = response.data.total || 0;
|
||
|
for (let i = 0; i < this.codeArray.length; i++) {
|
||
|
this.codeArray[i].fromType = this.formData.fromType;
|
||
|
this.codeArray[i].billType = this.formData.billType;
|
||
|
}
|
||
|
this.tableSelection();
|
||
|
this.loading = false;
|
||
|
})
|
||
|
.catch(() => {
|
||
|
this.loading = false;
|
||
|
this.list = [];
|
||
|
this.total = 0;
|
||
|
});
|
||
2 years ago
|
},
|
||
|
|
||
|
deleteCode(index, row) {
|
||
|
this.$confirm("是否确定移除一个条码?", "提示", {
|
||
|
confirmButtonText: "确定",
|
||
|
cancelButtonText: "取消",
|
||
|
type: "warning",
|
||
|
}).then(() => {
|
||
|
this.loading = true;
|
||
|
let tQuery = {
|
||
|
id: row.id
|
||
|
}
|
||
|
deleteCodesTempById(tQuery)
|
||
2 years ago
|
.then((response) => {
|
||
|
if (response.code === 20000) {
|
||
|
this.refreshPanel();
|
||
|
} else {
|
||
|
this.$message.error(response.message);
|
||
|
}
|
||
|
this.loading = false;
|
||
|
});
|
||
2 years ago
|
}).catch(() => {
|
||
|
});
|
||
|
},
|
||
|
|
||
|
bindRl(val) {
|
||
|
this.curRow = val;
|
||
2 years ago
|
this.fromCorp = this.idQuery.fromCorp;
|
||
2 years ago
|
this.selectRlVisible = true;
|
||
|
},
|
||
|
|
||
|
handleUnitClick(row) {
|
||
|
this.curRow = row;
|
||
|
this.dialogTableVisible = true;
|
||
|
},
|
||
|
|
||
|
editCode(row) {
|
||
|
this.editTitle = "编辑条码";
|
||
|
this.codeDetail = row;
|
||
|
this.editCodeVisible = true;
|
||
|
},
|
||
|
|
||
|
rowStyle({row, rowIndex}) {
|
||
|
let rowBackground = {};
|
||
2 years ago
|
if (!this.$isNotBlank(row.supId) || !this.$isNotBlank(row.relId) ) {
|
||
2 years ago
|
rowBackground.color = '#f60303';
|
||
|
}
|
||
|
return rowBackground;
|
||
|
},
|
||
2 years ago
|
|
||
|
selectBindRl(row) {
|
||
|
let query = {
|
||
|
id: this.curRow.id,
|
||
|
relId: row.id,
|
||
|
mySupId: row.unitFk,
|
||
|
};
|
||
|
updateCodeBindSup(query).then((response) => {
|
||
|
if (response.code == 20000) {
|
||
|
this.$message.success("绑定成功");
|
||
|
this.orderFormData.id = this.curRow.orderId;
|
||
|
this.getCodeList();
|
||
|
} else {
|
||
|
if (response.code == 503) {
|
||
|
this.curRow = response.data;
|
||
|
this.orderFormData.id = this.curRow.orderId;
|
||
|
this.getCodeList();
|
||
|
this.selectUnitTitle = response.message;
|
||
|
this.handleUnitClick(response.data);
|
||
|
} else
|
||
|
this.$message.error(response.message);
|
||
|
}
|
||
|
}).catch(() => {
|
||
|
|
||
|
});
|
||
|
},
|
||
|
|
||
|
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(() => {
|
||
|
});
|
||
|
},
|
||
|
|
||
|
|
||
2 years ago
|
closeBindDialog() {
|
||
2 years ago
|
this.selectRlVisible = false;
|
||
|
this.dialogTableVisible = false;
|
||
2 years ago
|
this.refreshPanel();
|
||
2 years ago
|
},
|
||
|
|
||
|
closeCodeDialog() {
|
||
|
this.editCodeVisible = false;
|
||
|
this.editOriginCodeVisible = false;
|
||
2 years ago
|
this.refreshPanel();
|
||
2 years ago
|
},
|
||
|
|
||
|
repeatAddCode(editData) {
|
||
|
let tQuery = editData;
|
||
|
tQuery.orderId = this.orderFormData.id;
|
||
|
tQuery.actDate = parseTime(this.orderFormData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
|
||
|
tQuery.action = this.orderFormData.action;
|
||
|
this.closeCodeDialog();
|
||
|
|
||
|
},
|
||
|
|
||
2 years ago
|
},
|
||
|
created() {
|
||
2 years ago
|
if (this.idQuery.billNo != null)
|
||
|
this.getCodeList();
|
||
2 years ago
|
},
|
||
2 years ago
|
|
||
|
components: {
|
||
|
selectRlDialog, DialogSelectUnit, editCodeDialog
|
||
|
},
|
||
2 years ago
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|