8 changed files with 664 additions and 594 deletions
@ -1,439 +1,441 @@ |
|||||
<template> |
<template> |
||||
<view class="page-wraper"> |
<view class="page-wraper"> |
||||
<view class=""> |
<view class=""> |
||||
<com-blank-view @goScan='showFromLocationPopup' v-if="detailSource.length==0"></com-blank-view> |
<com-blank-view @goScan='showFromLocationPopup' v-if="detailSource.length==0"></com-blank-view> |
||||
</view> |
</view> |
||||
<view class="page-wraper" v-if="detailSource.length>0"> |
<view class="page-wraper" v-if="detailSource.length>0"> |
||||
<view class="page-main"> |
<view class="page-main"> |
||||
<scroll-view scroll-y="true" class="page-main-scroll"> |
<scroll-view scroll-y="true" class="page-main-scroll"> |
||||
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
<view class="detail-list" v-for="(item, index) in detailSource" :key="item.id"> |
||||
<view class=""> |
<view class=""> |
||||
<record-com-detail-card :dataContent="item" :index="index" :settingParam="jobContent" |
<record-com-detail-card :dataContent="item" :index="index" :settingParam="jobContent" |
||||
@removeItem="removeItem(index,item)" @updateData="updateData" @removePack="removePack"> |
@removeItem="removeItem(index,item)" @updateData="updateData" @removePack="removePack"> |
||||
</record-com-detail-card> |
</record-com-detail-card> |
||||
</view> |
</view> |
||||
<u-line /> |
<u-line /> |
||||
</view> |
</view> |
||||
</scroll-view> |
</scroll-view> |
||||
</view> |
</view> |
||||
|
|
||||
<requiredLocation v-if="showToLoaction" title="目标库位" :locationCode="toLocationCode" @getLocation='getToLocationCode' |
<requiredLocation v-if="showToLoaction" title="目标库位" :locationCode="toLocationCode" |
||||
:locationTypeList="tolocationTypeList"></requiredLocation> |
@getLocation='getToLocationCode' :locationTypeList="tolocationTypeList"></requiredLocation> |
||||
|
|
||||
<view class="page-footer"> |
<view class="page-footer"> |
||||
<view class="uni-flex u-col-center space-between padding_10" |
<view class="uni-flex u-col-center space-between padding_10" |
||||
style="background-color:ghostwhite; width: 100%; "> |
style="background-color:ghostwhite; width: 100%; "> |
||||
<view class=""> |
<view class=""> |
||||
</view> |
</view> |
||||
<view class=" uni-flex uni-row"> |
<view class=" uni-flex uni-row"> |
||||
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button> |
<button class="btn_single_commit" hover-class="btn_commit_after" @click="commit">提交</button> |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
</view> |
</view> |
||||
<win-scan-button @goScan='openScanPopup'></win-scan-button> |
<win-scan-button @goScan='openScanPopup'></win-scan-button> |
||||
</view> |
</view> |
||||
<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult'></win-scan-pack-and-location> |
<win-scan-pack-and-location ref="scanPopup" @getResult='getScanResult'></win-scan-pack-and-location> |
||||
<comMessage ref="comMessage"></comMessage> |
<comMessage ref="comMessage"></comMessage> |
||||
<win-scan-location ref="scanLocationCode" title="来源库位" @getLocation='getLocation' |
<win-scan-location ref="scanLocationCode" title="来源库位" @getLocation='getLocation' |
||||
:locationTypeList="fromlocationTypeList"></win-scan-location> |
:locationTypeList="fromlocationTypeList"></win-scan-location> |
||||
</view> |
</view> |
||||
</template> |
</template> |
||||
|
|
||||
<script> |
<script> |
||||
import { |
import { |
||||
putawayRequestSubmit, |
putawayRequestSubmit, |
||||
putawayRecordSubmit |
putawayRecordSubmit |
||||
} from '@/api/request2.js'; |
} from '@/api/request2.js'; |
||||
|
|
||||
import { |
import { |
||||
goHome, |
goHome, |
||||
updateTitle, |
updateTitle, |
||||
getCurrDateTime, |
getCurrDateTime, |
||||
getPackingNumberAndBatch |
getPackingNumberAndBatch |
||||
} from '@/common/basic.js'; |
} from '@/common/basic.js'; |
||||
import { |
import { |
||||
getInventoryStatusDesc, |
getInventoryStatusDesc, |
||||
getDirectoryItemArray |
getDirectoryItemArray |
||||
} from '@/common/directory.js'; |
} from '@/common/directory.js'; |
||||
|
|
||||
import { |
import { |
||||
getDetailOption, |
getDetailOption, |
||||
getDetailRemoveOption, |
getDetailRemoveOption, |
||||
getDetailEditRemoveOption |
getDetailEditRemoveOption |
||||
} from '@/common/array.js'; |
} from '@/common/array.js'; |
||||
|
|
||||
import { |
import { |
||||
getBusinessType, |
getBusinessType, |
||||
createItemInfo, |
createItemInfo, |
||||
createDetailInfo, |
createDetailInfo, |
||||
calcHandleQty |
calcHandleQty |
||||
} from '@/common/record.js'; |
} from '@/common/record.js'; |
||||
|
|
||||
import { |
import { |
||||
getManagementPrecisions |
getManagementPrecisions |
||||
} from '@/common/balance.js'; |
} from '@/common/balance.js'; |
||||
|
|
||||
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
import winScanButton from '@/mycomponents/scan/winScanButton.vue' |
||||
import winScanPack from '@/mycomponents/scan/winScanPack.vue' |
import winScanPack from '@/mycomponents/scan/winScanPack.vue' |
||||
import requiredLocation from '@/mycomponents/location/requiredLocation.vue' |
import requiredLocation from '@/mycomponents/location/requiredLocation.vue' |
||||
import comBlankView from '@/mycomponents/common/comBlankView.vue' |
import comBlankView from '@/mycomponents/common/comBlankView.vue' |
||||
import winScanLocation from "@/mycomponents/scan/winScanLocation.vue" |
import winScanLocation from "@/mycomponents/scan/winScanLocation.vue" |
||||
import comMessage from '@/mycomponents/common/comMessage.vue' |
import comMessage from '@/mycomponents/common/comMessage.vue' |
||||
import winScanPackAndLocation from "@/mycomponents/scan/winScanPackAndLocation.vue" |
import winScanPackAndLocation from "@/mycomponents/scan/winScanPackAndLocation.vue" |
||||
import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue' |
import recordComDetailCard from '@/mycomponents/record/recordComDetailCard.vue' |
||||
|
|
||||
export default { |
export default { |
||||
components: { |
components: { |
||||
winScanButton, |
winScanButton, |
||||
winScanPack, |
winScanPack, |
||||
requiredLocation, |
requiredLocation, |
||||
comBlankView, |
comBlankView, |
||||
winScanLocation, |
winScanLocation, |
||||
comMessage, |
comMessage, |
||||
winScanPackAndLocation, |
winScanPackAndLocation, |
||||
recordComDetailCard |
recordComDetailCard |
||||
}, |
}, |
||||
data() { |
data() { |
||||
return { |
return { |
||||
id: '', |
id: '', |
||||
receiptJob: {}, |
receiptJob: {}, |
||||
received: false, |
received: false, |
||||
jobContent: {}, //任务内容 |
jobContent: {}, //任务内容 |
||||
detailSource: [], //绑定在页面上的数据源 |
detailSource: [], //绑定在页面上的数据源 |
||||
locationTypeList: [], |
locationTypeList: [], |
||||
businessTypeInfo: {}, |
businessTypeInfo: {}, |
||||
fromLocationInfo: {}, |
fromLocationInfo: {}, |
||||
fromLocationCode: "", |
fromLocationCode: "", |
||||
toLocationCode: "", |
toLocationCode: "", |
||||
isShowLocation: false, |
isShowLocation: false, |
||||
fromlocationTypeList: [], |
fromlocationTypeList: [], |
||||
tolocationTypeList: [], |
tolocationTypeList: [], |
||||
inInventoryStatus: "", //目标入库库存状态 |
inInventoryStatus: "", //目标入库库存状态 |
||||
outInventoryStatus: "", //来源出库库存状态 |
outInventoryStatus: "", //来源出库库存状态 |
||||
businessType: {}, |
businessType: {}, |
||||
fromType: "", |
fromType: "", |
||||
showToLoaction:true |
showToLoaction: true |
||||
}; |
}; |
||||
}, |
}, |
||||
onLoad(option) { |
onLoad(option) { |
||||
this.fromType = option.fromType |
this.fromType = option.fromType |
||||
if(this.fromType=="requestType"){
this.showToLoaction=false |
if (this.fromType == "requestType") { |
||||
updateTitle("原料上架申请")
}else { |
this.showToLoaction = false |
||||
updateTitle("原料上架记录") |
updateTitle("原料上架申请") |
||||
this.showToLoaction=true |
} else { |
||||
} |
updateTitle("原料上架记录") |
||||
var typeCode = "PurchasePutaway" |
this.showToLoaction = true |
||||
getBusinessType(typeCode, res => { |
|
||||
if (res.success) { |
} |
||||
this.businessType = res.businessType; |
var typeCode = "PurchasePutaway" |
||||
this.fromlocationTypeList = res.fromlocationTypeList; |
getBusinessType(typeCode, res => { |
||||
this.tolocationTypeList = res.tolocationTypeList; |
if (res.success) { |
||||
this.showFromLocationPopup(); |
this.businessType = res.businessType; |
||||
} else { |
this.fromlocationTypeList = res.fromlocationTypeList; |
||||
this.$refs.comMessage.showBreakMessage(res.message ); |
this.tolocationTypeList = res.tolocationTypeList; |
||||
} |
this.showFromLocationPopup(); |
||||
}); |
} else { |
||||
}, |
this.$refs.comMessage.showBreakMessage(res.message); |
||||
//返回首页 |
} |
||||
onNavigationBarButtonTap(e) { |
}); |
||||
if (e.index === 0) { |
}, |
||||
goHome(); |
//返回首页 |
||||
} |
onNavigationBarButtonTap(e) { |
||||
}, |
if (e.index === 0) { |
||||
//拦截返回按钮事件 |
goHome(); |
||||
onBackPress(e) {}, |
} |
||||
|
}, |
||||
onPullDownRefresh() {}, |
//拦截返回按钮事件 |
||||
|
onBackPress(e) {}, |
||||
mounted() { |
|
||||
}, |
onPullDownRefresh() {}, |
||||
methods: { |
|
||||
getScanResult(result) { |
mounted() {}, |
||||
let balance = result.balance; |
methods: { |
||||
let label = result.label; |
getScanResult(result) { |
||||
let pack = result.package; |
let balance = result.balance; |
||||
var item = this.detailSource.find(res => { |
let label = result.label; |
||||
if (res.itemCode == balance.itemCode) { |
let pack = result.package; |
||||
return res |
var item = this.detailSource.find(res => { |
||||
} |
if (res.itemCode == balance.itemCode) { |
||||
}) |
return res |
||||
if (item == undefined) { |
} |
||||
var itemp = createItemInfo(balance, pack); |
}) |
||||
let newDetail = createDetailInfo(balance, pack); // |
if (item == undefined) { |
||||
itemp.subList.push(newDetail); |
var itemp = createItemInfo(balance, pack); |
||||
this.detailSource.push(itemp) |
let newDetail = createDetailInfo(balance, pack); // |
||||
} else { |
itemp.subList.push(newDetail); |
||||
var detail = item.subList.find(r => { |
this.detailSource.push(itemp) |
||||
if (r.packingNumber == balance.packingNumber && |
} else { |
||||
r.batch == balance.batch && |
var detail = item.subList.find(r => { |
||||
r.locationCode == balance.locationCode && |
if (r.packingNumber == balance.packingNumber && |
||||
r.inventoryStatus == balance.inventoryStatus) { |
r.batch == balance.batch && |
||||
return r; |
r.locationCode == balance.locationCode && |
||||
} |
r.inventoryStatus == balance.inventoryStatus) { |
||||
}) |
return r; |
||||
if (detail == undefined) { |
} |
||||
let newDetail = createDetailInfo(balance, pack); |
}) |
||||
item.subList.push(newDetail); |
if (detail == undefined) { |
||||
} else { |
let newDetail = createDetailInfo(balance, pack); |
||||
if (detail.scaned == true) { |
item.subList.push(newDetail); |
||||
this.showErrorMessage("箱码[" + balance.packingNumber + "批次[" + balance.batch + "]已经在列表中") |
} else { |
||||
} |
if (detail.scaned == true) { |
||||
} |
this.showErrorMessage("箱码[" + balance.packingNumber + "批次[" + balance.batch + "]已经在列表中") |
||||
} |
} |
||||
this.calcHandleQty(); |
} |
||||
|
} |
||||
}, |
this.calcHandleQty(); |
||||
|
|
||||
showErrorMessage(message) { |
}, |
||||
this.$refs.comMessage.showErrorMessage(message, res => { |
|
||||
if (res) { |
showErrorMessage(message) { |
||||
|
this.$refs.comMessage.showErrorMessage(message, res => { |
||||
} |
if (res) { |
||||
}); |
|
||||
}, |
} |
||||
calcHandleQty() { |
}); |
||||
for (let item of this.detailSource) { |
}, |
||||
item.qty = 0; |
calcHandleQty() { |
||||
for (let detail of item.subList) { |
for (let item of this.detailSource) { |
||||
if (detail != undefined) { |
item.qty = 0; |
||||
item.qty += Number(detail.qty) |
for (let detail of item.subList) { |
||||
} |
if (detail != undefined) { |
||||
} |
item.qty += Number(detail.qty) |
||||
} |
} |
||||
this.$forceUpdate(); |
} |
||||
}, |
} |
||||
|
this.$forceUpdate(); |
||||
updateData() { |
}, |
||||
this.calcHandleQty(); |
|
||||
}, |
updateData() { |
||||
removeItem(index, item) { |
this.calcHandleQty(); |
||||
this.detailSource.splice(index, 1) |
}, |
||||
}, |
removeItem(index, item) { |
||||
|
this.detailSource.splice(index, 1) |
||||
removePack() { |
}, |
||||
for (var i = 0; i < this.detailSource.length; i++) { |
|
||||
var item = this.detailSource[i]; |
removePack() { |
||||
if (item.subList.length == 0) { |
for (var i = 0; i < this.detailSource.length; i++) { |
||||
this.detailSource.splice(i, 1) |
var item = this.detailSource[i]; |
||||
} |
if (item.subList.length == 0) { |
||||
} |
this.detailSource.splice(i, 1) |
||||
this.updateData(); |
} |
||||
}, |
} |
||||
|
this.updateData(); |
||||
openScanPopup() { |
}, |
||||
if (this.fromLocationCode == "") { |
|
||||
this.showFromLocationPopup(); |
openScanPopup() { |
||||
return |
if (this.fromLocationCode == "") { |
||||
} |
this.showFromLocationPopup(); |
||||
this.$refs.scanPopup.openScanPopupForType(this.fromLocationCode, this.businessType); |
return |
||||
}, |
} |
||||
showFromLocationPopup() { |
this.$refs.scanPopup.openScanPopupForType(this.fromLocationCode, this.businessType); |
||||
this.$nextTick(() => { |
}, |
||||
this.$refs.scanLocationCode.openScanPopup(); |
showFromLocationPopup() { |
||||
}) |
this.$nextTick(() => { |
||||
|
this.$refs.scanLocationCode.openScanPopup(); |
||||
}, |
}) |
||||
closeScanPopup() { |
|
||||
this.$refs.scanPopup.closeScanPopup(); |
}, |
||||
}, |
closeScanPopup() { |
||||
|
this.$refs.scanPopup.closeScanPopup(); |
||||
scanPopupGetFocus() { |
}, |
||||
this.$refs.scanPopup.getfocus(); |
|
||||
}, |
scanPopupGetFocus() { |
||||
|
this.$refs.scanPopup.getfocus(); |
||||
scanLocationCode(location, code) { |
}, |
||||
this.toLocationCode = code |
|
||||
this.toLocationCode = location; |
scanLocationCode(location, code) { |
||||
|
this.toLocationCode = code |
||||
}, |
this.toLocationCode = location; |
||||
|
|
||||
commit() { |
}, |
||||
if (this.showToLoaction &&this.toLocationCode == "") { |
|
||||
this.showMessage("请先选择目标库位") |
commit() { |
||||
return; |
if (this.showToLoaction && this.toLocationCode == "") { |
||||
} |
this.showMessage("请先选择目标库位") |
||||
|
return; |
||||
uni.showLoading({ |
} |
||||
title: "提交中....", |
|
||||
mask: true |
uni.showLoading({ |
||||
}); |
title: "提交中....", |
||||
|
mask: true |
||||
if(this.fromType=="requestType"){ |
}); |
||||
var params = this.setParams(false) |
|
||||
console.log("提交" + JSON.stringify(params)) |
if (this.fromType == "requestType") { |
||||
// putawayRequestSubmit(params).then(res => { |
var params = this.setParams(false) |
||||
// uni.hideLoading() |
console.log("提交" + JSON.stringify(params)) |
||||
// if (res.data) { |
// putawayRequestSubmit(params).then(res => { |
||||
// this.showCommitSuccessMessage("提交成功<br>生成采购收货记录" + res.data, ) |
// uni.hideLoading() |
||||
// } else { |
// if (res.data) { |
||||
// this.showErrorMessage("提交失败[" + res.msg + "]") |
// this.showCommitSuccessMessage("提交成功<br>生成采购收货记录" + res.data, ) |
||||
// } |
// } else { |
||||
// }).catch(error => { |
// this.showErrorMessage("提交失败[" + res.msg + "]") |
||||
// uni.hideLoading() |
// } |
||||
// this.showErrorMessage(error) |
// }).catch(error => { |
||||
// }) |
// uni.hideLoading() |
||||
}else { |
// this.showErrorMessage(error) |
||||
//记录有目标库位,需要查询管理模式 |
// }) |
||||
var itemCodes = [] |
} else { |
||||
this.detailSource.forEach(item => { |
//记录有目标库位,需要查询管理模式 |
||||
itemCodes.push(item.itemCode) |
var itemCodes = [] |
||||
}) |
this.detailSource.forEach(item => { |
||||
//获取管理模式,封装参数 |
itemCodes.push(item.itemCode) |
||||
getManagementPrecisions(itemCodes, this.toLocationCode, res => { |
}) |
||||
if (res.success) { |
//获取管理模式,封装参数 |
||||
this.managementList = res.list; |
getManagementPrecisions(itemCodes, this.toLocationCode, res => { |
||||
var params = this.setParams(true) |
if (res.success) { |
||||
console.log("提交参数", JSON.stringify(params)); |
this.managementList = res.list; |
||||
|
var params = this.setParams(true) |
||||
// putawayRecordSubmit(params).then(res => { |
console.log("提交参数", JSON.stringify(params)); |
||||
// uni.hideLoading() |
|
||||
// if (res.data) { |
// putawayRecordSubmit(params).then(res => { |
||||
// this.showCommitSuccessMessage("提交成功<br>生成采购收货记录" + res.data, ) |
// uni.hideLoading() |
||||
// } else { |
// if (res.data) { |
||||
// this.showErrorMessage("提交失败[" + res.msg + "]") |
// this.showCommitSuccessMessage("提交成功<br>生成采购收货记录" + res.data, ) |
||||
// } |
// } else { |
||||
// }).catch(error => { |
// this.showErrorMessage("提交失败[" + res.msg + "]") |
||||
// uni.hideLoading() |
// } |
||||
// this.showErrorMessage(error) |
// }).catch(error => { |
||||
// }) |
// uni.hideLoading() |
||||
} else { |
// this.showErrorMessage(error) |
||||
uni.hideLoading(); |
// }) |
||||
this.showErrorMessage(res.message); |
} else { |
||||
} |
uni.hideLoading(); |
||||
}); |
this.showErrorMessage(res.message); |
||||
} |
} |
||||
}, |
}); |
||||
|
} |
||||
setParams(queryModel) { |
}, |
||||
var subList = [] |
|
||||
var creator = this.$store.state.user.id |
setParams(queryModel) { |
||||
this.detailSource.forEach(item => { |
var subList = [] |
||||
item.subList.forEach(detail => { |
var creator = this.$store.state.user.id |
||||
if (detail.scaned) { |
this.detailSource.forEach(item => { |
||||
// var subItem = {}; |
item.subList.forEach(detail => { |
||||
// Object.assign(subItem, detail) |
if (detail.scaned) { |
||||
if (queryModel) { |
// var subItem = {}; |
||||
var info = getPackingNumberAndBatch(this.managementList, detail.itemCode, |
// Object.assign(subItem, detail) |
||||
detail.packingNumber, detail.batch); |
if (queryModel) { |
||||
detail.toPackingNumber = info.packingNumber;; |
var info = getPackingNumberAndBatch(this.managementList, detail.itemCode, |
||||
detail.toContainerNumber = detail.containerNumber |
detail.packingNumber, detail.batch); |
||||
detail.toBatch = info.batch; |
detail.toPackingNumber = info.packingNumber;; |
||||
detail.toInventoryStatus = detail.inventoryStatus |
detail.toContainerNumber = detail.containerNumber |
||||
detail.toLocationCode = this.toLocationCode |
detail.toBatch = info.batch; |
||||
} else { |
detail.toInventoryStatus = detail.inventoryStatus |
||||
detail.toPackingNumber = detail.packingNumber; |
detail.toLocationCode = this.toLocationCode |
||||
detail.toContainerNumber = detail.containerNumber |
} else { |
||||
detail.toBatch = detail.toBatch; |
detail.toPackingNumber = detail.packingNumber; |
||||
detail.toInventoryStatus = detail.inventoryStatus |
detail.toContainerNumber = detail.containerNumber |
||||
detail.toLocationCode = "" |
detail.toBatch = detail.toBatch; |
||||
} |
detail.toInventoryStatus = detail.inventoryStatus |
||||
|
detail.toLocationCode = "" |
||||
subList.push(detail) |
} |
||||
} |
|
||||
}) |
subList.push(detail) |
||||
}) |
} |
||||
this.jobContent.subList = subList |
}) |
||||
this.jobContent.creator = creator; |
}) |
||||
return this.jobContent; |
this.jobContent.subList = subList |
||||
}, |
this.jobContent.creator = creator; |
||||
|
return this.jobContent; |
||||
|
}, |
||||
showMessage(message) { |
|
||||
this.$refs.comMessage.showMessage(message, res => { |
|
||||
if (res) {} |
showMessage(message) { |
||||
}); |
this.$refs.comMessage.showMessage(message, res => { |
||||
}, |
if (res) {} |
||||
showErrorMessage(message) { |
}); |
||||
this.$refs.comMessage.showErrorMessage(message, res => { |
}, |
||||
if (res) { |
showErrorMessage(message) { |
||||
|
this.$refs.comMessage.showErrorMessage(message, res => { |
||||
} |
if (res) { |
||||
}); |
|
||||
}, |
} |
||||
|
}); |
||||
showScanMessage(message) { |
}, |
||||
this.$refs.comMessage.showScanMessage(message); |
|
||||
}, |
showScanMessage(message) { |
||||
|
this.$refs.comMessage.showScanMessage(message); |
||||
afterCloseMessage() { |
}, |
||||
this.scanPopupGetFocus(); |
|
||||
}, |
afterCloseMessage() { |
||||
|
this.scanPopupGetFocus(); |
||||
closeScanMessage() { |
}, |
||||
this.scanPopupGetFocus(); |
|
||||
}, |
closeScanMessage() { |
||||
getLocation(location, code) { |
this.scanPopupGetFocus(); |
||||
this.getFromLocationCode(location, code) |
}, |
||||
}, |
getLocation(location, code) { |
||||
getFromLocationCode(location, code) { |
this.getFromLocationCode(location, code) |
||||
this.fromLocationInfo = location; |
}, |
||||
this.fromLocationCode = code; |
getFromLocationCode(location, code) { |
||||
this.openScanPopup(); |
this.fromLocationInfo = location; |
||||
}, |
this.fromLocationCode = code; |
||||
getToLocationCode(location, code) { |
this.openScanPopup(); |
||||
if (this.fromLocationCode == code) { |
}, |
||||
uni.showToast({ |
getToLocationCode(location, code) { |
||||
title: "来源库位[" + this.fromLocationCode + "]不能与目标库位[" + code + "]一致", |
if (this.fromLocationCode == code) { |
||||
duration: 2000 |
uni.showToast({ |
||||
}) |
title: "来源库位[" + this.fromLocationCode + "]不能与目标库位[" + code + "]一致", |
||||
return |
duration: 2000 |
||||
} |
}) |
||||
this.toLocationCode = code; |
return |
||||
}, |
} |
||||
|
this.toLocationCode = code; |
||||
showCommitSuccessMessage(hint) { |
}, |
||||
this.$refs.comMessage.showSuccessMessage(hint, res => { |
|
||||
this.fromLocationCode = ''; |
showCommitSuccessMessage(hint) { |
||||
|
this.$refs.comMessage.showSuccessMessage(hint, res => { |
||||
}) |
this.fromLocationCode = ''; |
||||
}, |
|
||||
|
}) |
||||
updateData() { |
}, |
||||
this.calcHandleQty(); |
|
||||
for (var i = 0; i < this.detailSource.length; i++) { |
updateData() { |
||||
let item = this.detailSource[i]; |
this.calcHandleQty(); |
||||
if (item.qty == 0) { |
for (var i = 0; i < this.detailSource.length; i++) { |
||||
this.detailSource.splice(i, 1) |
let item = this.detailSource[i]; |
||||
} |
if (item.qty == 0) { |
||||
} |
this.detailSource.splice(i, 1) |
||||
} |
} |
||||
} |
} |
||||
} |
} |
||||
</script> |
} |
||||
|
} |
||||
<style scoped lang="scss"> |
</script> |
||||
page { |
|
||||
width: 100%; |
<style scoped lang="scss"> |
||||
height: 100%; |
page { |
||||
background-color: #fff; |
width: 100%; |
||||
} |
height: 100%; |
||||
|
background-color: #fff; |
||||
.page-wraper { |
} |
||||
display: flex; |
|
||||
flex-direction: column; |
.page-wraper { |
||||
width: 100%; |
display: flex; |
||||
height: 100%; |
flex-direction: column; |
||||
} |
width: 100%; |
||||
|
height: 100%; |
||||
|
} |
||||
.page-main { |
|
||||
flex: 1; |
|
||||
position: relative; |
.page-main { |
||||
} |
flex: 1; |
||||
|
position: relative; |
||||
.page-main-scroll { |
} |
||||
position: absolute; |
|
||||
left: 0; |
.page-main-scroll { |
||||
right: 0; |
position: absolute; |
||||
top: 0; |
left: 0; |
||||
bottom: 0; |
right: 0; |
||||
} |
top: 0; |
||||
|
bottom: 0; |
||||
.page-main-list { |
} |
||||
/* height: 80rpx; |
|
||||
line-height: 80rpx; */ |
.page-main-list { |
||||
text-align: center; |
/* height: 80rpx; |
||||
background: #e0e0e0; |
line-height: 80rpx; */ |
||||
|
text-align: center; |
||||
} |
background: #e0e0e0; |
||||
</style> |
|
||||
|
} |
||||
|
</style> |
||||
|
Loading…
Reference in new issue