|
|
|
@ -8,7 +8,7 @@
|
|
|
|
|
>
|
|
|
|
|
<el-card style="margin: 5px;">
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="0" v-if="isLinkDisabled">
|
|
|
|
|
<el-row :gutter="0" v-if="isLinkDisabled">
|
|
|
|
|
<el-col :span="24" align="right">
|
|
|
|
|
<div class="inv-hos-title">
|
|
|
|
|
<span
|
|
|
|
@ -37,6 +37,10 @@
|
|
|
|
|
type="warning">
|
|
|
|
|
</el-alert>
|
|
|
|
|
|
|
|
|
|
<div class="scroll-alert" style="margin-top: 15px;">
|
|
|
|
|
<div class="scroll-text">{{ msgTip }}</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-button-group
|
|
|
|
|
style="display: flex; margin: 0px 0 15px 0; float: right"
|
|
|
|
@ -129,12 +133,14 @@
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
:disabled="corpOrderIdDisabled"
|
|
|
|
|
filterable
|
|
|
|
|
@change="changeInvRemind"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in curWorkPlaces"
|
|
|
|
|
:key="item.workplaceId"
|
|
|
|
|
:label="item.workplaceName"
|
|
|
|
|
:value="item.workplaceId"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.workplaceName }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
|
|
@ -283,6 +289,7 @@ import {filterNoPage, remoteFilter} from "@/api/basic/sicker/skPersonApi";
|
|
|
|
|
import dialogInvProduct from "@/views/inout/DialogSelectInvProduct";
|
|
|
|
|
import {listPage} from "@/api/basic/sysWorkplaceManage";
|
|
|
|
|
import {printSplitLabel} from "@/api/collect/splitCreateOrder";
|
|
|
|
|
import {findInvRemind} from "@/api/inout/splitCode";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "ioCreateOrder",
|
|
|
|
@ -333,7 +340,7 @@ export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
isLinkDisabled: false,
|
|
|
|
|
userInfo:{
|
|
|
|
|
userInfo: {
|
|
|
|
|
inv: this.$store.getters.locInvName,
|
|
|
|
|
deptName: this.$store.getters.locDeptName,
|
|
|
|
|
userName: this.$store.getters.name,
|
|
|
|
@ -485,6 +492,7 @@ export default {
|
|
|
|
|
result: "",
|
|
|
|
|
scanResultType: "success",
|
|
|
|
|
msgTip: "工位存量提醒:",
|
|
|
|
|
splitType: null,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -495,7 +503,50 @@ export default {
|
|
|
|
|
DialogSelectUnit, DialogSelectSpace, selectRlDialog, dialogInvProduct
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
changeInvRemind(val) {
|
|
|
|
|
let post = {
|
|
|
|
|
workPlaceCode: val
|
|
|
|
|
}
|
|
|
|
|
findInvRemind(post).then((response) => {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.msgTip = response.data
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
successCloseData() {
|
|
|
|
|
let workPlaceCode = this.orderFormData.workPlaceCode
|
|
|
|
|
this.orderFormData = {
|
|
|
|
|
billNo: null,
|
|
|
|
|
corpOrderId: null,
|
|
|
|
|
action: null,
|
|
|
|
|
invCode: null,
|
|
|
|
|
fromCorp: null,
|
|
|
|
|
fromCorpName: null,
|
|
|
|
|
fromName: null,
|
|
|
|
|
fromInvCode: null,
|
|
|
|
|
remark: null,
|
|
|
|
|
fromType: 2,
|
|
|
|
|
errMsg: null,
|
|
|
|
|
checkPreInOrders: null,
|
|
|
|
|
checkPreInInvCode: null,
|
|
|
|
|
checkPreInSpaceCode: null,
|
|
|
|
|
curSpaceCode: null,
|
|
|
|
|
preSpaceCode: null,
|
|
|
|
|
preCurSpaceCode: null, //单据
|
|
|
|
|
sickerAdNum: null,
|
|
|
|
|
workPlaceCode: null,
|
|
|
|
|
fifoSplit: 1,
|
|
|
|
|
}
|
|
|
|
|
this.orderFormData.workPlaceCode = workPlaceCode
|
|
|
|
|
this.scanCode = "";
|
|
|
|
|
this.corpOrderIdDisabled = false;
|
|
|
|
|
this.refreshCodesPanel()
|
|
|
|
|
},
|
|
|
|
|
//获取用户仓库列表
|
|
|
|
|
findInvListByUser() {
|
|
|
|
|
this.curInvOptions = [];
|
|
|
|
@ -616,7 +667,9 @@ export default {
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
// this.$message.success("成功");
|
|
|
|
|
const codeDetailComponent = this.$refs.IoCreateOrderCodeDetail.getOrderDetails();
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
this.clearOrder();
|
|
|
|
|
} else {
|
|
|
|
|
// this.$message.error(response.message);
|
|
|
|
@ -890,6 +943,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
//添加条码
|
|
|
|
|
addCode() {
|
|
|
|
|
if (this.$isBlank(this.orderFormData.workPlaceCode)) {
|
|
|
|
|
this.$message.warning("请选择工位!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.originCode = "";
|
|
|
|
|
this.sictomText = "";
|
|
|
|
|
this.orderFormData.corpOrderId = this.orderFormData.corpOrderId.trim();
|
|
|
|
@ -1156,7 +1213,9 @@ export default {
|
|
|
|
|
this.retractLoading = false
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.$message.success("撤回成功!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1182,7 +1241,9 @@ export default {
|
|
|
|
|
this.codeLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1195,7 +1256,9 @@ export default {
|
|
|
|
|
this.checkLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1254,7 +1317,11 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功,等待处理,请刷新后查看!");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
console.log(this.closeDialog())
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1276,7 +1343,10 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1295,7 +1365,10 @@ export default {
|
|
|
|
|
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1335,7 +1408,11 @@ export default {
|
|
|
|
|
this.submitLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功");
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
this.successCloseData()
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1357,7 +1434,9 @@ export default {
|
|
|
|
|
saveOrderWeb(tQuery).then((response) => {
|
|
|
|
|
this.saveLoading = false
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
if (this.closeDialog != undefined) {
|
|
|
|
|
this.closeDialog();
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -1528,7 +1607,7 @@ export default {
|
|
|
|
|
const resultParts = ["扫码解析结果:" + data.code];
|
|
|
|
|
|
|
|
|
|
if (data.udi) {
|
|
|
|
|
resultParts.push("DI标识: " + data.udi);
|
|
|
|
|
resultParts.push("层级标识: " + data.udi);
|
|
|
|
|
}
|
|
|
|
|
if (data.batchNo) {
|
|
|
|
|
resultParts.push("批次号: " + data.batchNo);
|
|
|
|
@ -1546,7 +1625,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
printLabel() {
|
|
|
|
|
let query = {
|
|
|
|
|
labelId: 5,
|
|
|
|
|
labelId: 7,
|
|
|
|
|
}
|
|
|
|
|
printSplitLabel(query).then((response) => {
|
|
|
|
|
const binaryData = [];
|
|
|
|
@ -1676,7 +1755,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.init();
|
|
|
|
|
if (this.$route.query.workplaceId != null){
|
|
|
|
|
if (this.$route.query.workplaceId != null) {
|
|
|
|
|
this.corpOrderIdDisabled = true
|
|
|
|
|
this.isLinkDisabled = true
|
|
|
|
|
this.workplaceId = this.$route.query.workplaceId
|
|
|
|
@ -1688,6 +1767,32 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
.scroll-alert {
|
|
|
|
|
width: 100%; /* 或者你需要的宽度 */
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
/*border: 1px solid #f56c6c; !* 类似于 Element UI 警告框的边框 *!*/
|
|
|
|
|
background-color: rgba(255, 235, 59, 0.1); /* 类似于 Element UI 警告框的背景色 */
|
|
|
|
|
padding: 10px;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.scroll-text {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-left: 100%; /* 初始位置在容器右侧 */
|
|
|
|
|
animation: scroll 10s linear infinite; /* 滚动动画 */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes scroll {
|
|
|
|
|
from {
|
|
|
|
|
transform: translateX(0);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: translateX(-100%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.query-form-item {
|
|
|
|
|
margin-right: 5px;
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|