|
|
|
@ -29,14 +29,14 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-alert
|
|
|
|
|
style="margin-top: 15px"
|
|
|
|
|
style="margin-top: 15px;font-size: 20px"
|
|
|
|
|
:title="msgTip"
|
|
|
|
|
:closable="false"
|
|
|
|
|
type="warning">
|
|
|
|
|
</el-alert>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-button-group
|
|
|
|
|
style="display: flex; margin: 0px 0 15px 0; float: right"
|
|
|
|
@ -129,12 +129,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 +285,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",
|
|
|
|
@ -484,7 +487,7 @@ export default {
|
|
|
|
|
isSuccess: false,
|
|
|
|
|
result: "",
|
|
|
|
|
scanResultType: "success",
|
|
|
|
|
msgTip: "工位存量提醒:",
|
|
|
|
|
msgTip: "当前工位存量提醒:",
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
@ -495,7 +498,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 +662,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);
|
|
|
|
@ -858,7 +906,7 @@ export default {
|
|
|
|
|
let query = {
|
|
|
|
|
key: val,
|
|
|
|
|
status: 1,
|
|
|
|
|
invCode: this.orderFormData.invCode,
|
|
|
|
|
// invCode: this.orderFormData.invCode,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 100,
|
|
|
|
|
}
|
|
|
|
@ -890,6 +938,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 +1208,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 +1236,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 +1251,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 +1312,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 +1338,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 +1360,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 +1403,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 +1429,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 +1602,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 +1620,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
printLabel() {
|
|
|
|
|
let query = {
|
|
|
|
|
labelId: 5,
|
|
|
|
|
labelId: 7,
|
|
|
|
|
}
|
|
|
|
|
printSplitLabel(query).then((response) => {
|
|
|
|
|
const binaryData = [];
|
|
|
|
@ -1688,6 +1762,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;
|
|
|
|
|