工位上货问题

20240912_adapter_z
yewj 7 months ago
parent 2a39d0724a
commit 2e40ee4406

@ -1,7 +1,7 @@
<template>
<el-row class="tac">
<el-col :span="2">
<!-- <h5>默认颜色</h5>-->
<!-- <h5>默认颜色</h5>-->
<el-menu
:default-active="menuActive"
class="el-menu-vertical-demo"
@ -42,53 +42,51 @@
:name="item.name"
>
<component :is="item.component" v-bind="item.componentProps" />
<component :is="item.component" v-bind="item.componentProps"/>
</el-tab-pane>
</el-tabs>
<!-- <el-tabs :tab-position="tabPosition" style="height: 100%">-->
<!-- <el-tab-pane label="处理单据" style="height: 100%" @click="addTab('DealOrderBlank')">-->
<!-- <DealOrderBlank>-->
<!-- </DealOrderBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位上货"style="height: 100%" @click="addTab('IoCreateOrderBlankReturn')">-->
<!-- <IoCreateOrderBlankReturn-->
<!-- :splitType="'return'"-->
<!-- >-->
<!-- </IoCreateOrderBlankReturn>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位退货" style="height: 100%" @click="addTab('IoCreateOrderBlankOut')">-->
<!-- <IoCreateOrderBlankOut-->
<!-- :splitType="'out'"-->
<!-- >-->
<!-- </IoCreateOrderBlankOut>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位存量" style="height: 100%" @click="addTab('ioSplitFifoCodeBlank')">-->
<!-- <ioSplitFifoCodeBlank>-->
<!-- </ioSplitFifoCodeBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="待处理单" style="height: 100%" @click="addTab('CollectOrderAllotBlank')">-->
<!-- <CollectOrderAllotBlank>-->
<!-- </CollectOrderAllotBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="已完成单" style="height: 100%" @click="addTab('CollectOrderEndBlank')">-->
<!-- <CollectOrderEndBlank>-->
<!-- </CollectOrderEndBlank>-->
<!-- </el-tab-pane>-->
<!-- </el-tabs>-->
<!-- <el-tabs :tab-position="tabPosition" style="height: 100%">-->
<!-- <el-tab-pane label="处理单据" style="height: 100%" @click="addTab('DealOrderBlank')">-->
<!-- <DealOrderBlank>-->
<!-- </DealOrderBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位上货"style="height: 100%" @click="addTab('IoCreateOrderBlankReturn')">-->
<!-- <IoCreateOrderBlankReturn-->
<!-- :splitType="'return'"-->
<!-- >-->
<!-- </IoCreateOrderBlankReturn>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位退货" style="height: 100%" @click="addTab('IoCreateOrderBlankOut')">-->
<!-- <IoCreateOrderBlankOut-->
<!-- :splitType="'out'"-->
<!-- >-->
<!-- </IoCreateOrderBlankOut>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="工位存量" style="height: 100%" @click="addTab('ioSplitFifoCodeBlank')">-->
<!-- <ioSplitFifoCodeBlank>-->
<!-- </ioSplitFifoCodeBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="待处理单" style="height: 100%" @click="addTab('CollectOrderAllotBlank')">-->
<!-- <CollectOrderAllotBlank>-->
<!-- </CollectOrderAllotBlank>-->
<!-- </el-tab-pane>-->
<!-- <el-tab-pane label="已完成单" style="height: 100%" @click="addTab('CollectOrderEndBlank')">-->
<!-- <CollectOrderEndBlank>-->
<!-- </CollectOrderEndBlank>-->
<!-- </el-tab-pane>-->
<!-- </el-tabs>-->
</el-col>
</el-row>
</template>
<script>
@ -101,8 +99,13 @@ import ioSplitFifoCodeBlank from "@/views/collect/ioSplitFifoCodeBlank.vue";
export default {
components:{
DealOrderBlank,IoCreateOrderBlankReturn,IoCreateOrderBlankOut,ioSplitFifoCodeBlank,CollectOrderAllotBlank,CollectOrderEndBlank
components: {
DealOrderBlank,
IoCreateOrderBlankReturn,
IoCreateOrderBlankOut,
ioSplitFifoCodeBlank,
CollectOrderAllotBlank,
CollectOrderEndBlank
},
name: 'CollectOrderTabs',
data() {
@ -110,66 +113,60 @@ export default {
tabPosition: 'left',
editableTabsValue: 'DealOrderBlank',
componentTables: [
{
number: 0,
title: '处理单据',
name: 'DealOrderBlank',
component: DealOrderBlank,
//
componentProps: {
title: '这是单据的标题'
}
},
{
number: 1,
title: '工位上货',
name: 'IoCreateOrderBlankOut',
component: IoCreateOrderBlankOut,
//
componentProps: {
splitType: 'out'
}
},
{
number: 2,
title: '工位退货',
name: 'IoCreateOrderBlankReturn',
component: IoCreateOrderBlankReturn,
//
componentProps: {
splitType: 'return'
}
},
{
number: 3,
title: '工位存量',
name: 'ioSplitFifoCodeBlank',
component: ioSplitFifoCodeBlank,
//
componentProps: {
}
},
{
number: 4,
title: '待处理单',
name: 'CollectOrderAllotBlank',
component: CollectOrderAllotBlank,
//
componentProps: {
}
},
{
number: 5,
title: '已完成单',
name: 'CollectOrderEndBlank',
component: CollectOrderEndBlank,
//
componentProps: {
}
}],
{
number: 0,
title: '处理单据',
name: 'DealOrderBlank',
component: DealOrderBlank,
//
componentProps: {
title: '这是单据的标题'
}
},
{
number: 1,
title: '工位上货',
name: 'IoCreateOrderBlankOut',
component: IoCreateOrderBlankOut,
//
componentProps: {
fromSplitType: 'out'
}
},
{
number: 2,
title: '工位退货',
name: 'IoCreateOrderBlankReturn',
component: IoCreateOrderBlankReturn,
//
componentProps: {
fromSplitType: 'return'
}
},
{
number: 3,
title: '工位存量',
name: 'ioSplitFifoCodeBlank',
component: ioSplitFifoCodeBlank,
//
componentProps: {}
},
{
number: 4,
title: '待处理单',
name: 'CollectOrderAllotBlank',
component: CollectOrderAllotBlank,
//
componentProps: {}
},
{
number: 5,
title: '已完成单',
name: 'CollectOrderEndBlank',
component: CollectOrderEndBlank,
//
componentProps: {}
}],
editableTabs: [{
number: 0,
title: '处理单据',
@ -184,16 +181,16 @@ export default {
tabIndex: 0,
menuActive: 0
}
},
},
methods: {
upodateMenuActive(tab, event){
upodateMenuActive(tab, event) {
const foundTab = this.findTabByName(tab.name);
if (foundTab) {
//
this.menuActive = foundTab.number;
}
},
clickMenuItem(val){
clickMenuItem(val) {
//
let item = this.componentTables[(val)]
@ -203,7 +200,7 @@ export default {
this.editableTabsValue = foundTab.name;
} else {
//
this.addTab(item)
this.addTab(item)
}
},
@ -214,7 +211,7 @@ export default {
return tab;
},
addTab(item) {
++this.tabIndex;
++this.tabIndex;
this.editableTabs.push(item);
this.editableTabsValue = item.name;
},
@ -238,7 +235,7 @@ export default {
this.editableTabs = tabs.filter(tab => tab.name !== targetName);
}
}
}
}
</script>
<style scoped>

@ -362,7 +362,7 @@ export default {
type: Object,
required: true,
},
splitType: {//splitType
fromSplitType: {//splitType
type: Object,
required: true,
},
@ -559,7 +559,7 @@ export default {
this.$refs.inputRef.focus();
},
successCloseData() {
let workPlaceCode = this.orderFormData.workPlaceCode
let tempData = JSON.parse(JSON.stringify(this.orderFormData));
this.orderFormData = {
billNo: null,
corpOrderId: null,
@ -583,19 +583,18 @@ export default {
fifoSplit: 1,
}
this.orderFormData.workPlaceCode = workPlaceCode
this.orderFormData.workPlaceCode = tempData.workPlaceCode
this.orderFormData.mainAction = tempData.mainAction
this.orderFormData.action = tempData.action
this.orderFormData.fromCorp = tempData.fromCorp
this.orderFormData.fromDeptCode = tempData.fromDeptCode
this.orderFormData.fromInvCode = tempData.fromInvCode
this.orderFormData.fromInvCode = tempData.fromInvCode
this.orderFormData.deptCode = tempData.deptCode
this.orderFormData.invCode = tempData.invCode
this.scanCode = "";
this.corpOrderIdDisabled = false;
this.splitType = this.splitType;
if (this.splitType == "search") {
} else if (this.splitType == "out") {
this.orderFormData.action = 'SC72197936495755';
} else if (this.splitType == "return") {
this.orderFormData.action = 'SC72249388338364';
}
this.orderFormData.fromCorp = "72198012799726";
this.refreshCodesPanel()
},
//
@ -1761,6 +1760,7 @@ export default {
init() {
//
this.codeFormData.code = "";
if (this.splitType == "search") {
} else if (this.splitType == "out") {
@ -1835,7 +1835,9 @@ export default {
inputer.focus();
},
created() {
this.splitType = this.splitType;
this.splitType = this.$route.query.splitType;
if (this.splitType == null)
this.splitType = this.fromSplitType
this.init();
if (this.$route.query.workplaceId != null) {
this.corpOrderIdDisabled = true

@ -362,7 +362,7 @@ export default {
type: Object,
required: true,
},
splitType: {//splitType
fromSplitType: {//splitType
type: Object,
required: true,
},
@ -559,7 +559,7 @@ export default {
this.$refs.inputRef.focus();
},
successCloseData() {
let workPlaceCode = this.orderFormData.workPlaceCode
let tempData = JSON.parse(JSON.stringify(this.orderFormData));
this.orderFormData = {
billNo: null,
corpOrderId: null,
@ -583,19 +583,18 @@ export default {
fifoSplit: 1,
}
this.orderFormData.workPlaceCode = workPlaceCode
this.orderFormData.workPlaceCode = tempData.workPlaceCode
this.orderFormData.mainAction = tempData.mainAction
this.orderFormData.action = tempData.action
this.orderFormData.fromCorp = tempData.fromCorp
this.orderFormData.fromDeptCode = tempData.fromDeptCode
this.orderFormData.fromInvCode = tempData.fromInvCode
this.orderFormData.fromInvCode = tempData.fromInvCode
this.orderFormData.deptCode = tempData.deptCode
this.orderFormData.invCode = tempData.invCode
this.scanCode = "";
this.corpOrderIdDisabled = false;
this.splitType = this.splitType;
if (this.splitType == "search") {
} else if (this.splitType == "out") {
this.orderFormData.action = 'SC72197936495755';
} else if (this.splitType == "return") {
this.orderFormData.action = 'SC72249388338364';
}
this.orderFormData.fromCorp = "72198012799726";
this.refreshCodesPanel()
},
//
@ -610,7 +609,7 @@ export default {
this.orderFormData.invWarehouseCode == null
) {
//this.orderFormData.invCode = this.curInvOptions[0].code;
// this.getBusTypeByInv();
this.getBusTypeByInv();
this.findCurSpaceList(this.orderFormData.invCode);
this.findCurWorkPlaces();
}
@ -1761,6 +1760,7 @@ export default {
init() {
//
this.codeFormData.code = "";
if (this.splitType == "search") {
} else if (this.splitType == "out") {
@ -1835,7 +1835,9 @@ export default {
inputer.focus();
},
created() {
this.splitType = this.splitType;
this.splitType = this.$route.query.splitType;
if (this.splitType == null)
this.splitType = this.fromSplitType
this.init();
if (this.$route.query.workplaceId != null) {
this.corpOrderIdDisabled = true

Loading…
Cancel
Save