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.
122 lines
3.4 KiB
122 lines
3.4 KiB
<template>
|
|
<view :class="dataContent.scaned?'scan_view':''" style="background-color: #ffffff;margin-bottom: 1px; ">
|
|
<view class="uni-flex uni-row space-between" style="align-items: center">
|
|
<view>
|
|
<pack v-if="isShowPack && dataContent.packingNumber" :packingCode="dataContent.packingNumber"></pack>
|
|
<batch v-if="isShowBatch && dataContent.batch" :batch="dataContent.batch"></batch>
|
|
<location title="来源库位" v-if="isShowFromLocation" :locationCode="dataContent.locationCode"></location>
|
|
<to-location title="目标库位" v-if="isShowToLocation" :locationCode="dataContent.toLocationCode">
|
|
</to-location>
|
|
</view>
|
|
<view>
|
|
<!-- <qty v-if="dataContent.record==null ||dataContent.record==undefined " :dataContent="dataContent"
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty> -->
|
|
<qty v-if="dataContent.handleQty==0 || dataContent.handleQty==undefined" :dataContent="dataContent"
|
|
:isShowStdPack="isShowStdPack" :isShowStatus="isShowStatus"></qty>
|
|
<compare-qty v-else :dataContent="dataContent" :recommendQty="Number( dataContent.qty)"
|
|
:handleQty="Number (dataContent.handleQty)" :isShowStdPack="isShowStdPack">
|
|
</compare-qty>
|
|
<view class="uni-flex uni-row" style="vertical-align:center" v-if="isDevlement()">
|
|
<text style="font-size: 30rpx;color: #2979ff; " @click="copy">复制采购</text>
|
|
<text style="font-size: 30rpx;color: #2979ff;" @click="copyPro">|制品</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- <u-line></u-line> -->
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import pack from '@/mycomponents/balance/pack.vue'
|
|
import location from '@/mycomponents/balance/location.vue'
|
|
import toLocation from '@/mycomponents/balance/toLocation.vue'
|
|
import batch from '@/mycomponents/balance/batch.vue'
|
|
import qty from '@/mycomponents/qty/qty.vue'
|
|
import recommendQty from '@/mycomponents/qty/recommendQty.vue'
|
|
import compareQty from '@/mycomponents/qty/compareQty.vue'
|
|
|
|
export default {
|
|
components: {
|
|
pack,
|
|
location,
|
|
toLocation,
|
|
batch,
|
|
qty,
|
|
recommendQty,
|
|
compareQty,
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
props: {
|
|
dataContent: {
|
|
type: Object,
|
|
default: {}
|
|
},
|
|
isShowPack: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowBatch: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowFromLocation: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowStdPack: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowStatus: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
isShowToLocation: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
},
|
|
watch: {
|
|
|
|
},
|
|
methods: {
|
|
copy() {
|
|
// HPQ;V1.0;ICE115F11161AG;PP20230427000026;B20230427002;Q100
|
|
var content = "HPQ;V1.0;I" + this.dataContent.itemCode + ";P" + this.dataContent.packingNumber + ";B" +
|
|
this.dataContent.batch + ";Q" + this.dataContent.qty
|
|
this.$copyText(content).then(
|
|
res => {
|
|
uni.showToast({
|
|
title: '复制成功',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
)
|
|
},
|
|
copyPro() {
|
|
// HPQ;V1.0;ICE115F11161AG;PP20230427000026;B20230427002;Q100
|
|
var content = "HMQ;V1.0;I" + this.dataContent.itemCode + ";P" + this.dataContent.packingNumber + ";B" +
|
|
this.dataContent.batch + ";Q" + this.dataContent.qty
|
|
this.$copyText(content).then(
|
|
res => {
|
|
uni.showToast({
|
|
title: '复制成功',
|
|
icon: 'none'
|
|
})
|
|
}
|
|
)
|
|
},
|
|
isDevlement() {
|
|
return getApp().globalData.isDevelopment;
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|
|
|