You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
217 lines
5.8 KiB
217 lines
5.8 KiB
1 year ago
|
<template>
|
||
|
<view class="page-wraper">
|
||
|
<view class="">
|
||
|
<com-blank-view @goScan='showFromLocationPopup' v-if="detailSource.length==0"></com-blank-view>
|
||
|
</view>
|
||
|
<view class="page-wraper" v-if="detailSource.length>0">
|
||
|
<view class="page-main">
|
||
|
<scroll-view scroll-y="true" class="page-main-scroll">
|
||
|
<uni-data-picker style="padding: 20rpx; background-color:#fff;" class='uni-data-picker'
|
||
|
placeholder="请选择出库原因" popup-title="出库原因" :localdata="reasonList" v-model="reason">
|
||
|
</uni-data-picker>
|
||
|
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id">
|
||
|
<view class="">
|
||
|
<record-com-detail-card :dataContent="item" :index="index" @removeItem="removeItem(index,item)"
|
||
|
@updateData="updateData" :isShowLocation="true" @removePack="removePack">
|
||
|
</record-com-detail-card>
|
||
|
</view>
|
||
|
<u-line />
|
||
|
</view>
|
||
|
</scroll-view>
|
||
|
</view>
|
||
|
<view class="page-footer">
|
||
|
<view class="uni-flex u-col-center space-between padding_10"
|
||
|
style="background-color:ghostwhite; width: 100%; ">
|
||
|
<view class="">
|
||
|
</view>
|
||
|
<view class=" uni-flex uni-row">
|
||
|
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
<win-scan-button @goScan='openScanPopup'></win-scan-button>
|
||
|
</view>
|
||
|
|
||
|
<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult' :title="'箱码'"></win-scan-pack-and-location>
|
||
|
<win-scan-location ref="scanFromLocationCode" title="来源库位" @getLocation='getLocation'
|
||
|
:locationTypeList="fromLocationTypeArray"></win-scan-location>
|
||
|
<com-message ref="comMessage"></com-message>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import comEmptyView from '@/mycomponents/common/comEmptyView.vue'
|
||
|
import winScanButton from '@/mycomponents/scan/winScanButton.vue'
|
||
|
import requiredLocation from '@/mycomponents/location/requiredLocation.vue'
|
||
|
import comBlankView from '@/mycomponents/common/comBlankView.vue'
|
||
|
import winScanLocation from "@/mycomponents/scan/winScanLocation.vue"
|
||
|
import winScanPackAndLocation from "@/mycomponents/scan/winScanPackAndLocation.vue"
|
||
|
import comMessage from '@/mycomponents/common/comMessage.vue'
|
||
|
import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue'
|
||
|
import {
|
||
|
getBalanceByUniquecode,
|
||
|
} from '@/api/request.js';
|
||
|
|
||
|
import {
|
||
|
getBusinessType,
|
||
|
} from '@/common/record.js';
|
||
|
|
||
|
import {
|
||
|
getDirectoryItemArray,
|
||
|
getUnPlannedIssuseReasonList,
|
||
|
} from '@/common/directory.js';
|
||
|
|
||
|
import {
|
||
|
createItemInfo,
|
||
|
createDetailInfo,
|
||
|
calcHandleQty
|
||
|
} from '@/common/record.js';
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
comEmptyView,
|
||
|
winScanButton,
|
||
|
requiredLocation,
|
||
|
comBlankView,
|
||
|
winScanLocation,
|
||
|
winScanPackAndLocation,
|
||
|
comMessage,
|
||
|
recordComDetailCard
|
||
|
},
|
||
|
props: {},
|
||
|
data() {
|
||
|
return {
|
||
|
fromLocationCode: "",
|
||
|
fromLocationInfo: {},
|
||
|
fromLocationTypeArray: [],
|
||
|
fromInventoryStatus: [],
|
||
|
toInventoryStatus: [],
|
||
|
businessType: {}, //业务类型
|
||
|
detailSource: [], //绑定在页面上的数据源
|
||
|
reason: "",
|
||
|
reasonList: [],
|
||
|
fromType:""
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
var typeCode = "UnplannedDeliver"
|
||
|
getBusinessType(typeCode, res => {
|
||
|
if (res.success) {
|
||
|
this.businessType = res.businessType;
|
||
|
this.fromLocationTypeArray = res.fromlocationTypeList;
|
||
|
this.showFromLocationPopup();
|
||
|
} else {
|
||
|
this.$refs.comMessage.showBreakMessage(res.message );
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
|
||
|
onLoad(option) {
|
||
|
this.fromType = option.fromType
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
openScanPopup() {
|
||
|
if (this.fromLocationCode == "") {
|
||
|
this.showFromLocationPopup();
|
||
|
return
|
||
|
}
|
||
|
this.$refs.scanPopup.openScanPopupForType(this.fromLocationCode, this.businessType);
|
||
|
},
|
||
|
showFromLocationPopup() {
|
||
|
this.$nextTick(() => {
|
||
|
this.$refs.scanFromLocationCode.openScanPopup();
|
||
|
})
|
||
|
|
||
|
},
|
||
|
getLocation(location) {
|
||
|
this.getfromLocationCode(location)
|
||
|
},
|
||
|
getfromLocationCode(location) {
|
||
|
this.fromLocationInfo = location;
|
||
|
this.fromLocationCode = location.code;
|
||
|
this.openScanPopup();
|
||
|
},
|
||
|
getScanResult(result) {
|
||
|
this.getDataSource(result)
|
||
|
},
|
||
|
|
||
|
getDataSource(result) {
|
||
|
let balance = result.balance;
|
||
|
let label = result.label;
|
||
|
let pack = result.package;
|
||
|
var item = this.detailSource.find(res => {
|
||
|
if (res.itemCode == label.itemCode) {
|
||
|
return res
|
||
|
}
|
||
|
})
|
||
|
if (item == undefined) {
|
||
|
var itemp = createItemInfo(balance,pack);
|
||
|
let newDetail = createDetailInfo(balance,pack); //
|
||
|
itemp.details.push(newDetail);
|
||
|
this.detailSource.push(itemp)
|
||
|
} else {
|
||
|
var detail = item.details.find(r => {
|
||
|
if (r.packingNumber == result.packingNumber &&
|
||
|
r.batch == result.batch &&
|
||
|
r.locationCode == result.locationCode &&
|
||
|
r.inventoryStatus == result.inventoryStatus &&
|
||
|
r.scaned == true) {
|
||
|
return r;
|
||
|
}
|
||
|
})
|
||
|
|
||
|
if (detail == undefined) {
|
||
|
let newDetail = createDetailInfo(balance,pack);
|
||
|
item.details.push(newDetail);
|
||
|
} else {
|
||
|
this.showErrorMessage(result.packingNumber + "已经在列表中")
|
||
|
}
|
||
|
}
|
||
|
this.calcHandleQty();
|
||
|
|
||
|
},
|
||
|
|
||
|
calcHandleQty() {
|
||
|
calcHandleQty(this.detailSource);
|
||
|
this.$forceUpdate();
|
||
|
},
|
||
|
|
||
|
showErrorMessage(message) {
|
||
|
this.$refs.comMessage.showErrorMessage(message, res => {
|
||
|
if (res) {
|
||
|
|
||
|
}
|
||
|
});
|
||
|
},
|
||
|
updateData() {
|
||
|
this.calcHandleQty();
|
||
|
},
|
||
|
removePack() {
|
||
|
for (var i = 0; i < this.detailSource.length; i++) {
|
||
|
var item = this.detailSource[i];
|
||
|
if (item.details.length == 0) {
|
||
|
this.detailSource.splice(i, 1)
|
||
|
}
|
||
|
}
|
||
|
this.updateData();
|
||
|
},
|
||
|
removeItem(index, item) {
|
||
|
this.detailSource.splice(index, 1)
|
||
|
},
|
||
|
commit() {
|
||
|
if (this.reason == '') {
|
||
|
this.showErrorMessage("请选择出库原因")
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
console.log("提交", this.reason)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|