新增出入库优化

prod
曹晨晨 2 years ago
parent bfb6b7eb28
commit 9064b1351c

@ -188,11 +188,15 @@
<el-row v-if="documentShow">
<el-col :span="11">
<el-form-item prop="acceptance" label="预验收单据:">
<el-input
style="width:90%"
:disabled="true"
v-model="orderFormData.checkPreInOrders"
></el-input>
<el-select style="width: 90%" v-model="orderFormData.checkPreInOrders" multiple placeholder="请选入单据">
<el-option
v-for="(item,index) in orderFormData.checkPreInOrders"
:key="item.index"
:label="item"
:value="item"
>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
@ -292,6 +296,7 @@
<dialog-create-order-select
@giveselectbox="giveselectbox"
:closeDialogtwo="closeDialogtwo"
:checkPreInOrders="orderFormData.checkPreInOrders"
>
</dialog-create-order-select>
</el-dialog>
@ -399,9 +404,9 @@ export default {
action: [
{ required: true, message: "请选择单据类型", trigger: "change" },
],
acceptance:[
{required: true, message: "请选入预验收单据", trigger: "blur"},
]
acceptance: [
{ required: true, message: "请选入预验收单据", trigger: "blur" },
],
},
isScan: true,
scanText: "扫码录入:",
@ -430,8 +435,8 @@ export default {
viewBizVisible: false,
viewCodeVisible: false,
viewCodeDetailVisible: false,
documentShow:false,//
documentShow: false, //
};
},
components: {
@ -459,15 +464,16 @@ export default {
})
.catch(() => {});
},
//
//
giveselectbox(val) {
this.orderFormData.checkPreInOrders = val;
},
this.orderFormData.checkPreInOrders = JSON.parse(JSON.stringify(val))
},
//
changeInv() {
this.orderFormData.action = null;
if(this.documentShow=true){
this.documentShow=false
this.orderFormData.checkPreInOrders=null
if ((this.documentShow = true)) {
this.documentShow = false;
}
this.getBusTypeByInv();
},
@ -547,6 +553,8 @@ export default {
//
actionChange(item) {
this.orderFormData.checkPreInOption=null
this.orderFormData.checkPreInOrders=null
this.curAction = this.getActionItem(item);
if (
(this.curAction.checkEnable && this.curAction.checkWebNew) ||
@ -568,14 +576,13 @@ export default {
this.orderFormData.fromInvCode = null;
this.findFromInvList();
}
if(this.curAction.scanPreIn = true && this.curAction.backPreinType == 1){
this.documentShow=true
}
else{
this.documentShow=false
if (
(this.curAction.scanPreIn = true && this.curAction.backPreinType == 1)
) {
this.documentShow = true;
} else {
this.documentShow = false;
}
this.giveselectbox();
},
//

@ -117,15 +117,20 @@
<el-divider style="margin: 15px"></el-divider>
<el-table
ref="multipleTable"
@select="select"
@select-all="handleAll"
:header-cell-class-name="leftheaderStyle"
@selection-change="handleSelectionChange"
v-loading="loading"
:data="list"
style="width: 100%"
highlight-current-row
border
@row-click="handleSelectionChange"
>
<!-- <el-table-column type="selection" width="55"></el-table-column> -->
<el-table-column
type="selection"
:selectable="checkSelection"
width="55"
></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="扫码单据类型"
@ -245,6 +250,10 @@ export default {
type: Function,
required: true,
},
checkPreInOrders: {
type: Array,
required: true,
},
},
data() {
return {
@ -361,8 +370,9 @@ export default {
resultTotal: 0,
resultDetailLoading: false,
resultDetailList: [],
selectboxs: [],
selectbox: "",
multipleSelection: [],
selectbox: [],
selectRow: null,
};
},
components: {},
@ -402,20 +412,23 @@ export default {
//
combine() {
this.closeDialogtwo();
this.$emit("giveselectbox", this.currentRow.billNo);
this.$emit("giveselectbox", this.selectbox);
},
// //
// select(selection,row){
// // console.log(row);
// this.selectboxs.push(row)
// let nerArr = JSON.parse(JSON.stringify(this.selectboxs))
// let qwe = nerArr.map(item=>{
// //
// return item.billNo
// })
// this.selectbox=qwe
// },
//
checkSelection(row, index) {
let flag = true;
if (this.checkPreInOrders.length === 0) {
flag = true;
} else {
if (this.checkPreInOrders.includes(row.billNo)) {
flag = false;
} else {
flag = true;
}
}
return flag;
},
//
closeLocalDialog() {},
hideSearch() {
@ -432,10 +445,21 @@ export default {
})
.catch(() => {});
},
//
handleSelectionChange(val) {
this.currentRow = val;
console.log(this.currentRow.billNo);
this.getOrderDetails();
let checkboxs = JSON.parse(JSON.stringify(val));
this.multipleSelection = checkboxs.map((item) => {
return item.billNo;
});
let hebin = [...this.checkPreInOrders, ...this.multipleSelection];
let boxarry = Array.from(new Set(hebin));
this.selectbox = boxarry;
},
//
handleAll(selection) {
if(selection.length==0){
this.$refs.multipleTable.clearSelection()
}
},
//
getOrderDetails() {
@ -726,4 +750,5 @@ export default {
</script>
<style type="text/scss" lang="scss">
</style>

@ -35,9 +35,7 @@ module.exports = {
proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy
[process.env.VUE_APP_BASE_API]: {
target: `http://192.168.0.66:9150/UDI_WMS_MC/`,
target: `http://192.168.0.166:9991/`,
changeOrigin: true,
pathRewrite: {
["^" + process.env.VUE_APP_BASE_API]: "",

Loading…
Cancel
Save