From 8d4473d1b502ca5183981e04d3b2686b4f045ec6 Mon Sep 17 00:00:00 2001
From: spring <2396852758@qq.com>
Date: 星期一, 12 一月 2026 09:27:35 +0800
Subject: [PATCH] fix: 在PDA上文字不转码

---
 src/api/product/outbound.ts |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/src/api/product/outbound.ts b/src/api/product/outbound.ts
index 30059a7..d338ef1 100644
--- a/src/api/product/outbound.ts
+++ b/src/api/product/outbound.ts
@@ -11,6 +11,52 @@
     });
   },
 
+  // 瀹屾垚鍑哄簱锛堟寜鍑哄簱鍗曟槑缁嗭級
+  finishedOutboundByOutboundId(data: {
+    finishedOutDtos: Array<{ outPutId: string | number; projectId: string | number }>;
+    cdeliveryid: string | number;
+    cdeliverybid: string | number;
+    materialcode: string;
+  }) {
+    return request<BaseResult<any>>({
+      url: "/app/finishedOutboundByOutboundId",
+      method: "POST",
+      data,
+    });
+  },
+
+  // 鍑哄簱鍗曟煡璇�
+  queryErpOutboundOrder(params: {
+    contractNo?: string;
+    carNo?: string;
+    current: number;
+    size: number;
+  }) {
+    return request<BaseResult<any>>({
+      url: "/app/queryErpOutboundOrder",
+      method: "POST",
+      data: params,
+    });
+  },
+
+  // 鏌ヨ鍑鸿揣鍗曟槑缁�
+  queryErpOutboundOrderDetail(params: { vbillcode: string }) {
+    return request<BaseResult<any[]>>({
+      url: "/app/queryErpOutboundOrderDetail",
+      method: "POST",
+      data: params,
+    });
+  },
+
+  // 缁炵嚎/鎷変笣浜岀淮鐮佹煡璇紙鏀寔鍑哄簱鐘舵�佸垽鏂級
+  getTagByIdAll(params: { outPutId: string | number }) {
+    return request<BaseResult<any[]>>({
+      url: "/app/getTagByIdAll",
+      method: "GET",
+      data: params,
+    });
+  },
+
   // 缁炵嚎浜岀淮鐮佹煡璇�
   getTagByIdJx(params: { outPutId: string | number }) {
     return request<BaseResult<any>>({

--
Gitblit v1.9.3