| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921 |
- <template>
- <gui-page :custom-header="true" :header-class="['gui-theme-background-color']">
- <template #gHeader>
- <view style="height:44px;" class="gui-flex gui-nowrap gui-rows gui-align-items-center">
- <!-- 使用组件实现返回按钮及返回首页按钮 -->
- <text style="font-size:44rpx;" class="gui-header-leader-btns gui-color-white font-icons"
- @tap="goBack"></text>
- <!-- 导航文本此处也可以是其他自定义内容 -->
- <text
- class="gui-h4 gui-blod gui-flex1 gui-text-center gui-ellipsis gui-color-white gui-primary-text">出货单信息</text>
- <!-- 此处加一个右侧展位元素与左侧同宽,实现标题居中 -->
- <!-- 实际宽度请根据自己情况设置 -->
- <view style="width:40px;" />
- <!-- 如果右侧有其他内容可以利用条件编译和定位来实现-->
- </view>
- </template>
- <template #gBody>
- <view class="list-content">
- <view class="scan">
- <view class="scan-card">
- <uni-easyinput ref="easyinput" v-model="scanNumber" :input-border="false" :clearable="false"
- type="text" focus @focus="handleInputFocus" placeholder="扫描内部标签" @confirm="handleKeydown" />
- <text class="font-icons icon-scan" @click="handleMapass"></text>
- </view>
- </view>
- <view class="card-list-flexbox">
- <text class="card-list-title" :style="[isPad?'font-size: 18px':'font-size: 14px']">出货单信息详情</text>
- <view class="card-list-item">
- <text>出货货号</text>
- <text>{{ formData?.saleOutNo }}</text>
- </view>
- <view class="card-list-item">
- <text>客户</text>
- <text>{{ formData?.customerName }}</text>
- </view>
- <view class="card-list-item">
- <text>生产订单</text>
- <text>{{ formData?.detail?.workOrderNo }}</text>
- </view>
- <view class="card-list-item">
- <text>出货数量</text>
- <text>{{ formData?.detail?.deliveredQty }}</text>
- </view>
- <view class="card-list-item">
- <text>产品名称</text>
- <text>{{ formData?.detail?.materialName }}</text>
- </view>
- <view class="card-list-item">
- <text>数量</text>
- <text>{{ formData?.detail?.insideQty }} *
- {{ formData?.detail?.pieceQty }}</text>
- </view>
- <!-- <view class="card-list-item">
- <text>内包数量</text>
- <text>{{ formData?.shipmentHeadBaseVO?.insourcingQty }}</text>
- </view>
- <view class="card-list-item">
- <text>装箱件数</text>
- <text>{{ formData?.shipmentHeadBaseVO?.encasementQty }}</text>
- </view> -->
- <view class="card-list-item">
- <text>客户订单</text>
- <text>{{ formData?.detail?.erpOrderNo }}</text>
- </view>
- <!-- <view class="card-list-item" v-if="computedBoxOrderState" @click="handleNavigateToDetailsPage()">
- <div style="width: 100%;display: flex;justify-content: space-between;color: orange;">
- <text class="font-icons"> 当前出货单存在未装箱内容点</text>
- <text class="font-icons" style="text-align: right;"></text>
- </div>
- </view> -->
- </view>
- <view class="collapsed-panel" v-if="cardList.length > 0">
- <template v-for="item in cardList" :key="item.id">
- <div class="content" @click="handleNavigateToDetailsPage(item)">
- <div :class="['panel-row', highLightField?.id === item.id?'printer':'']">
- <span>外箱码</span>
- <span>{{ item.labelContent }}</span>
- </div>
- <div :class="['panel-row', highLightField?.id === item.id?'printer':'']">
- <span>装箱件数</span>
- <span>{{ item.pieceQty }}</span>
- </div>
- <span :class="['font-icons', highLightField?.id === item.id?'printer':'']"></span>
- </div>
- </template>
- </view>
- <view v-else>
- <view class="bg-image">
- <image src="@/static/empty.png" mode="heightFix" />
- <text>这里什么都没有...</text>
- </view>
- </view>
- </view>
- <view class="operation-panel">
- <button type="primary" :disabled="!highLightField" style="width: calc(100% - 8px);margin: 0 4px;"
- @click="handleShipmentBoxPrinter">外箱标签补打</button>
- </view>
- <uni-popup ref="errorTip" type="dialog">
- <uni-popup-dialog type="error" cancel-text="关闭" confirm-text="确认" title="提示" :content="errorTipMessage"
- @confirm="handleCloseErrorTipsModal" @close="handleCloseErrorTipsModal" />
- </uni-popup>
- </template>
- </gui-page>
- </template>
- <script>
- import {
- computed,
- defineComponent,
- onBeforeMount,
- ref
- } from 'vue'
- import tsc from '@/unit/CHITEN_SDK_APP/tsc.js'
- export default defineComponent({
- setup(options) {
- const touchNum = ref(0)
- const scanNumber = ref('');
- const errorState = ref(0)
- const easyinput = ref()
- const errorTip = ref('')
- const errorTipMessage = ref('')
- const parseData = JSON.parse(options?.params) ?? {}
- const formData = ref()
- const cardList = ref([])
- const highLightField = ref()
- const bluetooth = ref()
- const blueConfig = ref({
- loopBuffer: 0,
- currentTime: 1,
- lastData: 0,
- onBufferSize: 20,
- printerNum: 1,
- currentPrint: 1,
- isLabelSend: false
- })
- // // 是否显示 “当前出货单存在未装箱内容点” 提示信息
- // const computedBoxOrderState = computed(() => {
- // const forData = formData.value?.shippingLabelRespVOS ?? [];
- // let returnState = false;
- // for (let i = 0; i < forData.length; i++) {
- // if (forData[i].type * 1 === 2) {
- // returnState = true;
- // break;
- // }
- // }
- // return returnState;
- // })
- const search = function() {
- uni.$reqGet('getSaleOutOrderLabelList', {
- id: parseData?.detail.id,
- })
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- cardList.value = data ?? [];
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = 0
- }
- })
- }
- onBeforeMount(async () => {
- // #ifdef APP-PLUS
- const bluetoothConfig = uni.getStorageSync('bluetoothConfig')
- if ([null, '', undefined].includes(bluetoothConfig)) {
- bluetooth.value = {
- 'isOpenBle': false,
- 'deviceId': '',
- 'serviceId': '',
- 'writeId': '',
- 'notifyId': ''
- }
- setTimeout(() => {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = '蓝牙打印机未连接'
- errorState.value = -1
- errorTip.value.open()
- }, 800)
- } else {
- bluetooth.value = JSON.parse(bluetoothConfig)
- }
- // #endif
- formData.value = parseData
- await search();
- })
- const handleMapass = function() {
- // #ifdef APP-PLUS
- const mpaasScanModule = uni.requireNativePlugin('Mpaas-Scan-Module')
- mpaasScanModule.mpaasScan({
- // 扫码识别类型,参数可多选,qrCode、barCode,不设置,默认识别所有
- 'scanType': ['qrCode', 'barCode'],
- // 是否隐藏相册,默认false不隐藏
- 'hideAlbum': false
- },
- (ret) => {
- if (ret.resp_code === 1000) {
- uni.$reqPost('transferTrayCode', {
- qrCode: ret.resp_result,
- wmsSaleOutOrderId: parseData?.detail.id
- })
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- // 打印内箱码/袋标码
- handlePrinter(data);
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = 0
- }
- })
- }
- })
- // #endif
- }
- // 扫描完成品标签输入框回车事件
- const handleKeydown = function(e) {
- uni.$reqPost('transferTrayCode', {
- qrCode: e,
- wmsSaleOutOrderId: parseData?.detail.id
- })
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- // 打印内箱码/袋标码
- handlePrinter(data);
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = 0
- }
- })
- }
- // 校验是否可以打印外箱码
- const handleValidateOtherBoxPrint = function(qrCodeList) {
- uni.$reqPost("transferOuterBoxCheckPrint", qrCodeList)
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- // 可以进行装箱操作
- if (data) {
- uni.$reqPost("transferOuterBoxCode", {
- id: parseData?.detail.id,
- shippingLabelIdList: qrCodeList
- })
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- await search();
- // 打印外箱
- await labelOuterBoxTest(data);
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = -1
- }
- })
- } else {
- setTimeout(async () => {
- await search();
- }, 300)
- }
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = 0
- }
- })
- }
- // 打印内箱码/袋标码
- const handlePrinter = async function(data) {
- let qrCodeList = cardList.value.find(ret => !ret.id)?.shippingLabelId ?? []
- // 校验标签码是否重复
- if (qrCodeList.includes(data?.shippingLabelId)) {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- qrCodeList = null;
- errorTipMessage.value = "不允许录入两条相同的标签号"
- errorTip.value.open()
- errorState.value = -1
- } else {
- qrCodeList.push(data?.shippingLabelId);
- }
- // 标签重复,不执行下一步操作
- if (!qrCodeList) return;
- // 校验是否可以打外箱标签码
- await handleValidateOtherBoxPrint(qrCodeList);
- await setInputFocus()
- // 打印
- await labelInnerTest(data)
- blueConfig.value.currentPrint = 1
- blueConfig.value.printNum = 2
- const timer = setInterval(() => {
- if (blueConfig.value.isLabelSend === false &&
- blueConfig.value.currentPrint === 2) {
- blueConfig.value.currentPrint += 1
- labelExternalTest(data)
- }
- if (blueConfig.value.currentPrint === blueConfig
- .value.printNum) {
- clearInterval(timer);
- }
- }, 1500)
- }
- // 外箱标签补打
- const handleShipmentBoxPrinter = function() {
- if (highLightField.value?.labelContent) {
- uni.$reqGet("getShippingLabelPrintData", {
- id: highLightField.value.id
- })
- .then(async ({
- code,
- data,
- msg
- }) => {
- if (code === 0) {
- // 打印
- await labelOuterBoxTest(data);
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = msg
- errorTip.value.open()
- errorState.value = -1
- }
- })
- } else {
- // #ifdef APP-PLUS
- plus.device.beep(2)
- // #endif
- errorTipMessage.value = "此标签还未装箱!"
- errorTip.value.open()
- errorState.value = -1
- }
- }
- const Send = function(buff) {
- var currentTime = blueConfig.value.currentTime
- var loopBuffer = blueConfig.value.loopBuffer
- var lastData = blueConfig.value.lastData
- var onBufferSize = blueConfig.value.onBufferSize
- var printNum = blueConfig.value.printerNum
- var currentPrint = blueConfig.value.currentPrint
- var buf
- var dataView
- if (currentTime < loopBuffer) {
- buf = new ArrayBuffer(onBufferSize)
- dataView = new DataView(buf)
- for (let i = 0; i < onBufferSize; ++i) {
- dataView.setUint8(i, buff[(currentTime - 1) * onBufferSize + i])
- }
- } else {
- buf = new ArrayBuffer(lastData)
- dataView = new DataView(buf)
- for (let i = 0; i < lastData; ++i) {
- dataView.setUint8(i, buff[(currentTime - 1) * onBufferSize + i])
- }
- }
- plus.bluetooth.writeBLECharacteristicValue({
- deviceId: bluetooth.value.deviceId,
- serviceId: bluetooth.value.serviceId,
- characteristicId: bluetooth.value.writeId,
- value: buf,
- success: function(res) {
- if (currentPrint <= printNum) {
- wx.showToast({
- title: '数据打印中',
- icon: 'loading'
- })
- }
- // 将complete中处理数据的代码挪过来,增加30ms延迟, 解决蓝牙打印数据传输10007问题
- setTimeout(() => {
- currentTime += 1
- if (currentTime <= loopBuffer) {
- blueConfig.value.isLabelSend = true
- blueConfig.value.currentTime = currentTime
- Send(buff)
- }
- // end
- if (currentTime === loopBuffer) {
- blueConfig.value.currentPrint += 1
- blueConfig.value.isLabelSend = false
- }
- }, 10)
- },
- fail: function(e) {
- wx.showToast({
- title: '打印第' + currentPrint + '张失败' + 'error: code ' + e
- ?.code + ', message ' + e?.message,
- icon: 'none',
- duration: 4000
- })
- },
- complete: function() {}
- })
- }
- const prepareSend = function(buff) {
- var time = blueConfig.value.onBufferSize
- var loopBuffer = parseInt(buff.length / time)
- var lastData = parseInt(buff.length % time)
- blueConfig.value.loopBuffer = loopBuffer + 1
- blueConfig.value.lastData = lastData
- blueConfig.value.currentTime = 1
- Send(buff)
- }
- const labelInnerTest = function(ret) {
- var command = tsc.dlabelPrinter.createNew()
- command.setBackFeed(4)
- command.setOffset(-2)
- // (480 * 200)dots
- command.setSize(60, 25)
- command.setCls()
- command.setGap(6, 2)
- command.setSpeed(1.5)
- // row1
- command.setText(4, 0, '1', 0, 1, 1, '(C)Customer P/N:')
- command.setText(172, 0, '1', 0, 1, 1, ret.c)
- command.setText(278, 0, '1', 0, 1, 1, '(D)QTY(EA):')
- command.setText(378, 0, '1', 0, 1, 1, ret.qty)
- // row2
- command.setText(4, 20, '1', 0, 1, 1, '(G)LOT NO:')
- const strList = ret.lotNo?.split('');
- let lotNo = ''
- let lotNo2 = ''
- if (strList.length > 16) {
- lotNo = ret.lotNo?.substring(0, 16)
- lotNo2 = ret.lotNo?.substring(16)
- command.setText(102, 20, '1', 0, 1, 1, lotNo)
- command.setText(102, 40, '1', 0, 1, 1, lotNo2)
- } else {
- command.setText(102, 20, '1', 0, 1, 1, ret.lotNo)
- }
- command.setText(270, 20, '1', 0, 1, 1, '(J)ExpDate:')
- const timeList = ret.expDate?.split('');
- let timeText = ''
- let timeText2 = ''
- if (timeList.length > 9) {
- timeText = ret.expDate?.substring(0, 9)
- timeText2 = ret.expDate?.substring(9)
- command.setText(380, 20, '1', 0, 1, 1, timeText)
- command.setText(380, 40, '1', 0, 1, 1, timeText2)
- } else {
- command.setText(380, 20, '1', 0, 1, 1, ret.expDate)
- }
- // row3
- command.setText(128, 60, '1', 0, 1, 1, '(E)Manuf:')
- command.setText(218, 60, '1', 0, 1, 1, ret.manuf)
- command.setText(128, 78, 'TSS24.BF2', 0, 1, 1, '存储条件:')
- // let strList2 = []
- // let strText = ''
- // if (ret.storageEnvironmentName) {
- // strList2 = ret.storageEnvironmentName?.split(' ')
- // strText = strList2[0] + ' ' + strList2[1]
- // } else {
- // strText = '';
- // }
- command.setText(208, 94, 'TSS24.BF2', 0, 1, 1, '温度 ' + ret.temperature)
- command.setText(208, 112, 'TSS24.BF2', 0, 1, 1, '湿度 ' + ret.humidity)
- // command.setText(208, 94, 'TSS24.BF2', 0, 1, 1, strText)
- // row4
- command.setQrcode(4, 64, 'H', 4, 'A', ret.lotNo2)
- command.setQrcode(318, 54, 'M', 3, 'A', ret.qrCode1)
- command.setText(128, 160, '1', 0, 1, 1, 'C.O.O.CN')
- command.setText(128, 178, '2', 0, 1, 1, 'ROHS 2.0 HF')
- command.setPagePrint()
- blueConfig.value.isLabelSend = true
- prepareSend(command.getData())
- }
- const labelExternalTest = function(ret) {
- var command = tsc.dlabelPrinter.createNew()
- command.setBackFeed(6)
- // (640 * 320)dots
- command.setSize(80, 40)
- command.setCls()
- command.setGap(6)
- command.setSpeed(1.5)
- // row1
- command.setText(4, 0, '1', 0, 1, 1, '(A)Cust PO:')
- command.setText(120, 0, '1', 0, 1, 1, ret.a)
- // row2
- command.setText(4, 15, '1', 0, 1, 1, '(C)Customer P/N:')
- command.setText(165, 15, '1', 0, 1, 1, ret.c)
- command.setText(280, 12, '1', 0, 1, 1, 'C.O.O.CN')
- // row3
- command.setText(4, 30, '1', 0, 1, 1, '(E)Manuf:')
- command.setText(100, 30, '1', 0, 1, 1, ret.manuf)
- // command.setText(300, 45, 'TSS24.BF2', 0, 1, 1, '量产模具生产')
- // row4
- command.setText(4, 45, '1', 0, 1, 1, '(H)Date Code:')
- command.setText(140, 45, '1', 0, 1, 1, ret.h)
- command.setText(280, 30, '2', 0, 1, 1, 'ROHS 2.0 HF')
- // row5
- command.setText(4, 60, '1', 0, 1, 1, '(J)ExpDate:')
- command.setText(120, 60, '1', 0, 1, 1, ret.expDate)
- command.setText(270, 60, '1', 0, 1, 1, '(B)Line NO:')
- command.setText(385, 60, '1', 0, 1, 1, ret.b)
- // row6
- command.setText(4, 75, '1', 0, 1, 1, '(G)LOT NO:')
- const strList = ret.lotNo?.split('');
- let lotNo = ''
- let lotNo2 = ''
- if (strList.length > 16) {
- lotNo = ret.lotNo?.substring(0, 16)
- lotNo2 = ret.lotNo?.substring(16)
- command.setText(102, 75, '1', 0, 1, 1, lotNo)
- command.setText(102, 90, '1', 0, 1, 1, lotNo2)
- } else {
- command.setText(102, 75, '1', 0, 1, 1, ret.lotNo)
- }
- command.setText(270, 75, '1', 0, 1, 1, '(D)QTY(EA):')
- command.setText(385, 75, '1', 0, 1, 1, ret.qty)
- // row3
- // row3
- command.setText(90, 110, 'TSS24.BF2', 0, 1, 1, '存储条件:')
- // let strList2 = []
- // let strText = ''
- // if (ret.storageEnvironmentName) {
- // strList2 = ret.storageEnvironmentName?.split(' ')
- // strText = strList2[0] + ' ' + strList2[1]
- // } else {
- // strText = '';
- // }
- command.setText(90, 135, 'TSS24.BF2', 0, 1, 1, '温度 ' + ret.temperature)
- command.setText(90, 150, 'TSS24.BF2', 0, 1, 1, '湿度 ' + ret.humidity)
- // command.setText(90, 135, 'TSS24.BF2', 0, 1, 1, strText)
-
- command.setText(230, 110, '1', 0, 1, 1, '(F)MPN:')
- command.setText(315, 110, '1', 0, 1, 1, ret.f)
- command.setText(4, 195, '1', 0, 1, 1, '(K)ERP LOT:')
- // QR
- command.setQrcode(4, 100, 'Q', 3, 'A', ret.lotNo2)
- command.setQrcode(470, 0, 'Q', 3, 'A', ret.qrCode1)
- command.setBarCode(4, 210, '39', 50, 1, 0, 1, 2, ret.k)
- // row5
- command.setText(230, 125, '1', 0, 1, 1, '(I)ManufID:')
- command.setText(340, 125, '1', 0, 1, 1, ret.i)
- command.setText(230, 140, '1', 0, 1, 1, '(L)ADH:')
- command.setText(315, 140, '1', 0, 1, 1, ret.l)
- // row5
- command.setText(275, 190, 'TSS24.BF2', 0, 1, 1, '原胶LOT NO:')
- command.setText(410, 195, '2', 0, 1, 1, ret.rawIncomingReceiptMaterialLots)
- // row6
- command.setText(275, 230, '1', 0, 1, 1, 'ADHManufDate:')
- command.setText(410, 230, '1', 0, 1, 1, ret.rawProduceDate)
- command.setText(275, 250, '1', 0, 1, 1, 'ADHExpDate:')
- command.setText(400, 250, '1', 0, 1, 1, ret.rawExpirationDate)
- command.setPagePrint()
- blueConfig.value.isLabelSend = true
- prepareSend(command.getData())
- }
- const labelOuterBoxTest = function(ret) {
- var command = tsc.dlabelPrinter.createNew()
- command.setBackFeed(6)
- command.setSize(100, 100)
- command.setCls()
- command.setGap(6)
- command.setSpeed(1.5)
- // row1
- command.setText(180, 0, 'TSS24.BF2', 0, 1, 2, '苏州市东苏发五金粘胶制品有限公司')
- // command.setText(180, 0, 'TSS24.BF2', 0, 1, 2, ret.customerName)
- // row2
- command.setText(24, 60, 'TSS24.BF2', 0, 1, 1, '(A)Cust PO:')
- command.setText(182, 60, 'TSS24.BF2', 0, 1, 1, ret.a)
- command.setText(398, 60, 'TSS24.BF2', 0, 1, 1, '(B)Line NO:')
- command.setText(568, 60, 'TSS24.BF2', 0, 1, 1, ret.b)
- command.setText(24, 100, 'TSS24.BF2', 0, 1, 1, '(C)Customer P/N:')
- command.setText(224, 100, 'TSS24.BF2', 0, 1, 1, ret.c)
- command.setText(398, 100, 'TSS24.BF2', 0, 1, 1, '(D)QTY(EA):')
- command.setText(568, 100, 'TSS24.BF2', 0, 1, 1, ret.qty)
- command.setText(24, 140, 'TSS24.BF2', 0, 1, 1, '(E)Manuf:')
- command.setText(132, 140, 'TSS24.BF2', 0, 1, 1, ret.manuf)
- command.setText(398, 140, 'TSS24.BF2', 0, 1, 1, '(F)MPN:')
- command.setText(478, 140, 'TSS24.BF2', 0, 1, 1, ret.f)
- command.setText(24, 180, 'TSS24.BF2', 0, 1, 1, '(I)ManufID:')
- command.setText(182, 180, 'TSS24.BF2', 0, 1, 1, ret.i)
- command.setText(24, 220, 'TSS24.BF2', 0, 1, 1, '(J)ExpDate:')
- command.setText(162, 220, 'TSS24.BF2', 0, 1, 1, ret.expDate)
- command.setText(398, 220, 'TSS24.BF2', 0, 1, 1, '(H)Date Code:')
- command.setText(578, 220, 'TSS24.BF2', 0, 1, 1, ret.h)
- command.setText(24, 260, 'TSS24.BF2', 0, 1, 1, '(L)ADH:')
- command.setText(142, 260, 'TSS24.BF2', 0, 1, 1, ret.l)
- command.setText(24, 310, 'TSS24.BF2', 0, 1, 1, 'ADH LOT:')
- command.setText(142, 310, 'TSS24.BF2', 0, 1, 1, ret.rawBatch)
- command.setText(24, 350, 'TSS24.BF2', 0, 1, 1, 'ADHManufDate:')
- command.setText(184, 350, 'TSS24.BF2', 0, 1, 1, ret.rawProduceDate)
- command.setText(24, 390, 'TSS24.BF2', 0, 1, 1, 'ADHExpDate:')
- command.setText(184, 390, 'TSS24.BF2', 0, 1, 1, ret.rawExpirationDate)
- command.setText(24, 425, 'TSS24.BF2', 0, 1, 1, '(G)LOT ID:')
- command.setText(180, 425, 'TSS24.BF2', 0, 1, 1, '存储条件:')
- // let strList = []
- // let strText = ''
- // if (ret.storageEnvironmentName) {
- // strList = ret.storageEnvironmentName?.split(' ')
- // strText = strList[0] + ' ' + strList[1]
- // } else {
- // strText = '';
- // }
- command.setText(180, 455, 'TSS24.BF2', 0, 1, 1, '温度 ' + ret.temperature)
- command.setText(180, 485, 'TSS24.BF2', 0, 1, 1, '湿度 ' + ret.humidity)
- command.setQrcode(24, 455, 'H', 5, 'A', ret.lotNo2)
- command.setQrcode(498, 530, 'H', 4, 'A', ret.qrCode2)
- command.setText(24, 590, 'TSS24.BF2', 0, 1, 1, '(K):ERP LOT:')
- command.setBarCode(24, 630, '93', 90, 1, 0, 2, 4, ret.k)
- command.setText(498, 460, '3', 0, 1, 1, 'C.O.O.CN')
- command.setText(498, 490, '3', 0, 1, 1, 'ROHS 2.0 HF')
- command.setPagePrint()
- prepareSend(command.getData())
- }
- // 跳转
- const handleNavigateToDetailsPage = function(data) {
- highLightField.value = data;
- touchNum.value += 1;
- setTimeout(() => {
- if (touchNum.value >= 2 && highLightField.value?.id === data?.id) {
- uni.navigateTo({
- url: `/pages/workbranch/production/shipment/shipmentPackingDetails?params=${JSON.stringify({...parseData, insideRespVOList: data?.insideRespVOList })}`
- })
- }
- touchNum.value = 0;
- }, 400);
- }
- const goBack = function() {
- uni.$goBack('/pages/workbranch/production/shipment/shipmentPatchworkPage')
- }
- // 禁用软键盘
- const handleInputFocus = function() {
- // #ifdef APP-PLUS
- setTimeout(() => {
- uni.hideKeyboard()
- }, 100)
- // #endif
- }
- const setInputFocus = function() {
- scanNumber.value = ''
- easyinput.value.onBlur()
- easyinput.value.onFocus()
- }
- // 关闭错误信息弹窗
- const handleCloseErrorTipsModal = async function() {
- errorTip.value.close()
- if (errorState.value === 0) {
- await setInputFocus()
- }
- }
- return {
- highLightField,
- formData,
- cardList,
- handleKeydown,
- goBack,
- easyinput,
- scanNumber,
- errorTip,
- errorTipMessage,
- handleInputFocus,
- // computedBoxOrderState,
- handleShipmentBoxPrinter,
- handleCloseErrorTipsModal,
- handleNavigateToDetailsPage,
- }
- }
- })
- </script>
- <style lang="scss" scoped>
- .gui-header-leader-btns {
- color: black;
- margin-left: 24rpx;
- font-size: 24px !important;
- }
- .list-content {
- margin-top: 80px;
- min-height: calc(100vh - 80px);
- background-color: #edeeee;
- }
- .input-200 {
- width: 200px;
- padding-left: 10px;
- }
- .icon-scan {
- font-size: 20px;
- text-align: right;
- }
- .scan {
- height: 45px;
- width: calc(100% - 48px);
- margin: 12px;
- padding: 0 12px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- border-radius: 6px;
- background-color: white;
- .scan-card {
- width: 100%;
- display: grid;
- grid-template-rows: 1fr;
- grid-template-columns: 7fr 2fr;
- align-items: center;
- input {
- height: 35px;
- line-height: 35px;
- }
- text {
- width: 100%;
- text-align: right;
- }
- }
- }
- span,
- text {
- font-size: 12px;
- }
- .collapsed-panel {
- // height: calc(100vh - 190px);
- // min-height: 230px;
- margin: 5px 0 80px 0;
- padding: 0 8px;
- overflow-y: scroll;
- .content {
- position: relative;
- overflow-y: scroll;
- border-top: 2px dashed rgba(237, 238, 238, 1);
- .panel-row {
- // height: 32px;
- line-height: 32px;
- padding: 0 12px;
- display: flex;
- justify-content: space-between;
- background-color: #fbfbfb;
- span:nth-of-type(1) {
- min-width: 30%;
- }
- span:nth-of-type(2) {
- min-width: 30%;
- padding-right: 8px;
- text-align: right;
- word-wrap: break-word;
- overflow-y: scroll;
- }
- }
- .font-icons {
- position: absolute;
- right: 2px;
- top: 50%;
- transform: translate(0, -50%);
- }
- }
- }
- .card-list-flexbox {
- width: calc(100vw - 24px);
- height: 295px;
- margin: 0 12px;
- display: flex;
- justify-content: center;
- flex-direction: column;
- align-items: center;
- overflow-y: scroll;
- .card-list-title {
- width: 100%;
- height: 35px;
- line-height: 35px;
- margin: 0 4px 0 4px;
- border-radius: 4px 4px 0 0;
- text-align: center;
- color: white;
- background-color: rgba(0, 160, 233, 1.0);
- }
- .card-list-item,
- .card-list-item-operation {
- width: 100%;
- height: 35px;
- margin: 0 4px 3rpx 4px;
- border-radius: 4px;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- background-color: #fff;
- uni-text {
- font-size: 14px;
- height: 50rpx;
- text-align: left;
- padding: 0 8px;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .text-1 {
- flex: 1;
- height: 35px;
- justify-content: flex-start;
- }
- .text-2 {
- flex: 3;
- height: 35px;
- justify-content: flex-end;
- margin-right: 4px;
- padding: 2px 6px;
- }
- }
- }
- .printer {
- color: white;
- background-color: #00a0e9 !important;
- }
- .operation-panel {
- padding: 12px 0;
- position: fixed;
- bottom: 0;
- width: 100%;
- display: grid;
- grid-template-columns: 1fr;
- grid-template-rows: 1fr;
- background-color: white;
- .operation-title {
- height: 40px;
- line-height: 40px;
- padding: 0 14px;
- font-size: 16px;
- font-weight: bold;
- }
- }
- </style>
|