feat(wms):更新修复进展
parent
f82ae7e0c8
commit
508d06b493
|
|
@ -3,7 +3,18 @@
|
||||||
<div class="hidden">
|
<div class="hidden">
|
||||||
<button ref="printButtonRef" v-print="printObj" type="button"></button>
|
<button ref="printButtonRef" v-print="printObj" type="button"></button>
|
||||||
<div id="wmsReceiptOrderPrint" class="color-#303133">
|
<div id="wmsReceiptOrderPrint" class="color-#303133">
|
||||||
<h2 class="text-center">入库单</h2>
|
<div class="relative mb-8px">
|
||||||
|
<h2 class="text-center">入库单</h2>
|
||||||
|
<div v-if="printData.no" class="absolute right-0 top-0">
|
||||||
|
<Barcode
|
||||||
|
:content="printData.no"
|
||||||
|
:display-value="false"
|
||||||
|
:format="BarcodeFormatEnum.CODE39"
|
||||||
|
:height="40"
|
||||||
|
:width="180"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="mb-12px grid grid-cols-3 gap-x-24px gap-y-8px text-14px">
|
<div class="mb-12px grid grid-cols-3 gap-x-24px gap-y-8px text-14px">
|
||||||
<div>入库单号:{{ printData.no || '-' }}</div>
|
<div>入库单号:{{ printData.no || '-' }}</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -86,6 +97,8 @@ import {
|
||||||
formatSumPrice,
|
formatSumPrice,
|
||||||
formatSumQuantity
|
formatSumQuantity
|
||||||
} from '@/views/wms/utils/format'
|
} from '@/views/wms/utils/format'
|
||||||
|
import Barcode from '@/views/mes/wm/barcode/components/Barcode.vue'
|
||||||
|
import { BarcodeFormatEnum } from '@/views/mes/utils/constants'
|
||||||
|
|
||||||
/** WMS 入库单打印 */
|
/** WMS 入库单打印 */
|
||||||
defineOptions({ name: 'WmsReceiptOrderPrint' })
|
defineOptions({ name: 'WmsReceiptOrderPrint' })
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,18 @@
|
||||||
<div class="hidden">
|
<div class="hidden">
|
||||||
<button ref="printButtonRef" v-print="printObj" type="button"></button>
|
<button ref="printButtonRef" v-print="printObj" type="button"></button>
|
||||||
<div id="wmsShipmentOrderPrint" class="color-#303133">
|
<div id="wmsShipmentOrderPrint" class="color-#303133">
|
||||||
<h2 class="text-center">出库单</h2>
|
<div class="relative mb-8px">
|
||||||
|
<h2 class="text-center">出库单</h2>
|
||||||
|
<div v-if="printData.no" class="absolute right-0 top-0">
|
||||||
|
<Barcode
|
||||||
|
:content="printData.no"
|
||||||
|
:display-value="false"
|
||||||
|
:format="BarcodeFormatEnum.CODE39"
|
||||||
|
:height="40"
|
||||||
|
:width="180"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="mb-12px grid grid-cols-3 gap-x-24px gap-y-8px text-14px">
|
<div class="mb-12px grid grid-cols-3 gap-x-24px gap-y-8px text-14px">
|
||||||
<div>出库单号:{{ printData.no || '-' }}</div>
|
<div>出库单号:{{ printData.no || '-' }}</div>
|
||||||
<div>
|
<div>
|
||||||
|
|
@ -86,6 +97,8 @@ import {
|
||||||
formatSumPrice,
|
formatSumPrice,
|
||||||
formatSumQuantity
|
formatSumQuantity
|
||||||
} from '@/views/wms/utils/format'
|
} from '@/views/wms/utils/format'
|
||||||
|
import Barcode from '@/views/mes/wm/barcode/components/Barcode.vue'
|
||||||
|
import { BarcodeFormatEnum } from '@/views/mes/utils/constants'
|
||||||
|
|
||||||
/** WMS 出库单打印 */
|
/** WMS 出库单打印 */
|
||||||
defineOptions({ name: 'WmsShipmentOrderPrint' })
|
defineOptions({ name: 'WmsShipmentOrderPrint' })
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue