From 20235a873f123a83f7763c0327e5845caa32c9b9 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期四, 03 四月 2025 16:15:19 +0800
Subject: [PATCH] 入出库订单打印,拣货单打印,搜索条件增加

---
 zy-asrs-admin/src/components/order/order/orderOut.vue |   33 +++++++++++++++++++++++++++++----
 1 files changed, 29 insertions(+), 4 deletions(-)

diff --git a/zy-asrs-admin/src/components/order/order/orderOut.vue b/zy-asrs-admin/src/components/order/order/orderOut.vue
index 8b776d7..52cbacb 100644
--- a/zy-asrs-admin/src/components/order/order/orderOut.vue
+++ b/zy-asrs-admin/src/components/order/order/orderOut.vue
@@ -1,5 +1,5 @@
 <script setup>
-import { getCurrentInstance, ref, computed, reactive, defineProps } from 'vue';
+import {getCurrentInstance, ref, computed, reactive, defineProps, nextTick} from 'vue';
 import { useRouter } from "vue-router";
 import { get, post, postBlob, postForm } from '@/utils/request.js'
 import { message, Modal } from 'ant-design-vue';
@@ -8,6 +8,7 @@
 import { formatMessage } from '@/utils/localeUtils.js';
 import useTableSearch from '@/utils/tableUtils.jsx';
 import ShowOrderDetlComponent from '@/components/orderDetl/show.vue';
+import OrderPrint from '@/components/print/orderPrint/index.vue'
 import {
     DownOutlined,
     UploadOutlined,
@@ -237,6 +238,26 @@
     })
 };
 
+const printChild = ref(null);
+// 鎵撳嵃璁㈠崟
+const handlePrint = async (record) => {
+  let printData = [];
+  const resp = await get("/api/orderDetl/orderId/" + record.__v_raw.id, {});
+  const result = resp.data;
+  result.data.forEach((item) => {
+    let newItem = {};
+    newItem.matnr = item.mat$.matnr
+    newItem.maktx = item.mat$.maktx
+    newItem.specs = item.mat$.specs
+    newItem.batch = item.batch
+    newItem.anfme = item.anfme
+    printData.push(newItem)
+  })
+  printChild.value.printData = printData;
+  printChild.value.orderNo = record.__v_raw.orderNo
+  printChild.value.open = true;
+}
+
 const onSearch = () => {
     // console.log('search');
     getPage()
@@ -438,9 +459,12 @@
             <template #bodyCell="{ column, text, record }">
                 <template v-if="column.dataIndex === 'oper'">
                     <div style="display: flex;justify-content: space-evenly;">
-                        <a-button type="link" primary @click="showDetl(record)">{{ formatMessage('page.order.orderDetl',
-                            '璁㈠崟鏄庣粏')
-                            }}</a-button>
+                      <a-button type="link" primary @click="showDetl(record)">{{ formatMessage('page.order.orderDetl',
+                          '璁㈠崟鏄庣粏')
+                        }}</a-button>
+                      <a-button type="link" primary @click="handlePrint(record)">{{ formatMessage('page.order.orderDetl',
+                          '鎵撳嵃璁㈠崟')
+                        }}</a-button>
                         <a-button type="link" primary @click="handleEdit(record)">{{ formatMessage('page.edit', '缂栬緫')
                             }}</a-button>
                         <a-button type="link" danger @click="handleDel([record])">{{ formatMessage('page.delete', '鍒犻櫎')
@@ -453,6 +477,7 @@
         <ShowOrderDetlComponent ref="showOrderDetlChild" />
 
     </div>
+  <OrderPrint ref="printChild" />
 </template>
 
 <style></style>

--
Gitblit v1.9.1