From 48b2dc4df2c247d12e4dd52c3c5d290f1e026578 Mon Sep 17 00:00:00 2001
From: chen.lin <1442464845@qq.com>
Date: 星期四, 29 一月 2026 13:39:43 +0800
Subject: [PATCH] 销售订单-修复

---
 src/main/webapp/views/pda/stockOut.html |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/main/webapp/views/pda/stockOut.html b/src/main/webapp/views/pda/stockOut.html
index c4083c0..1b09851 100644
--- a/src/main/webapp/views/pda/stockOut.html
+++ b/src/main/webapp/views/pda/stockOut.html
@@ -101,10 +101,14 @@
         if (isEmpty(el.value)) {
             return;
         }
+
         find(null, null, el.value);
     }
 
     function find(locNo, matNo, billNo) {
+        if (billNo.indexOf('=') > -1) {
+            billNo = billNo.split(",")[0].split("=")[1];
+        }
         $.ajax({
             url: baseUrl + "/mobile/locDetl",
             headers: {'token': localStorage.getItem('token')},

--
Gitblit v1.9.1