Browse Source

itemcode 2024/6/26 14:43:15

hella_vue3
zhang_li 3 months ago
parent
commit
0e0e0323e4
  1. 4
      src/mycomponents/job/jobComMainDetailCard.vue
  2. 3
      src/pages/deliver/coms/comScanDeliverPack.vue
  3. 10
      src/pages/deliver/job/deliverJob.vue

4
src/mycomponents/job/jobComMainDetailCard.vue

@ -1,13 +1,13 @@
<template> <template>
<view class=""> <view class="">
<view class="task_text" style="border-top: 1px solid #dedede; padding-top: 20rpx"> <view class="task_text" style="border-top: 1px solid #dedede; padding-top: 20rpx">
<itemCompareQty :dataContent="dataContent" :handleQty="dataContent.handleQty" :isShowPackUnit="false" :objTextStyle="{ fontWeight: 'bold', fontSize: '40rpx' }"></itemCompareQty> <!-- <itemCompareQty :dataContent="dataContent" :handleQty="dataContent.handleQty" :isShowPackUnit="false" :objTextStyle="{ fontWeight: 'bold', fontSize: '40rpx' }"></itemCompareQty> -->
<div> <div>
<pack v-if="isShowPack && dataContent.packingNumber != null" :packingCode="dataContent.packingNumber"> </pack> <pack v-if="isShowPack && dataContent.packingNumber != null" :packingCode="dataContent.packingNumber"> </pack>
<batch v-if="isShowBatch && dataContent.batch != null" :batch="dataContent.batch"></batch> <batch v-if="isShowBatch && dataContent.batch != null" :batch="dataContent.batch"></batch>
<div class="u-flex justify-between u-p-b-16"> <div class="u-flex justify-between u-p-b-16">
<location v-if="isShowFromLocation && dataContent.fromLocationCode" title="来源库位" :locationCode="dataContent.fromLocationCode"> </location> <location v-if="isShowFromLocation && dataContent.fromLocationCode" title="来源库位" :locationCode="dataContent.fromLocationCode"> </location>
<to-location v-if="isShowToLocation" title="目标库位" :locationCode="dataContent.toLocationCode"> </to-location> <to-location v-if="isShowToLocation" title="目标库位" :locationCode="dataContent.locationCode"> </to-location>
</div> </div>
<view class="card_view" v-if="isShowDeliverType"> <view class="card_view" v-if="isShowDeliverType">
<text class="card_packing_code card_content">发货类型</text> <text class="card_packing_code card_content">发货类型</text>

3
src/pages/deliver/coms/comScanDeliverPack.vue

@ -294,6 +294,9 @@ const createBatchInfo = (data, balance, packageInfo) => {
handleQty: Number(data.qty), handleQty: Number(data.qty),
Records: [], Records: [],
detail: { detail: {
fromLocationCode: fromLocationCode.value,
toLocationCode: toLocationCode.value,
itemCode: data.itemCode,
handleQty: Number(data.qty), handleQty: Number(data.qty),
packingNumber: data.packingNumber, packingNumber: data.packingNumber,
qty: 0, qty: 0,

10
src/pages/deliver/job/deliverJob.vue

@ -111,11 +111,11 @@ const getList = (type) => {
action: 'in', action: 'in',
value: status.value value: status.value
}) })
// filters.push({ filters.push({
// column: 'accept_user_id', column: 'accept_user_id',
// action: '==', action: '==',
// value: store.id value: store.id
// }) })
if (businessType.value && businessType.value.length > 0) { if (businessType.value && businessType.value.length > 0) {
// :businessType=Deliver businessType=ZZBJDeliver // :businessType=Deliver businessType=ZZBJDeliver
filters.push({ filters.push({

Loading…
Cancel
Save