From 4beaf369b181d6c5374fe8fcec5e21350507300e Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期六, 09 五月 2026 13:28:19 +0800
Subject: [PATCH] 发货微调

---
 src/views/salesManagement/salesLedger/index.vue |   26 +++++++++++++-------------
 1 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/views/salesManagement/salesLedger/index.vue b/src/views/salesManagement/salesLedger/index.vue
index 7849b60..c8616fc 100644
--- a/src/views/salesManagement/salesLedger/index.vue
+++ b/src/views/salesManagement/salesLedger/index.vue
@@ -101,7 +101,7 @@
                                align="center">
                 <template #default="scope">
                   <el-tag
-                      v-if="scope.row.approveStatus === 1 && scope.row.noQuantity !== 0"
+                      v-if="scope.row.approveStatus === 1 "
                       type="success">鍏呰冻
                   </el-tag>
                   <el-tag
@@ -640,12 +640,12 @@
                          placeholder="璇烽�夋嫨"
                          clearable
                          @change="calculateFromTaxRate">
-                <el-option label="1"
-                           value="1"/>
-                <el-option label="6"
-                           value="6"/>
-                <el-option label="13"
-                           value="13"/>
+                <el-option
+                  v-for="dict in tax_rate"
+                  :key="dict.value"
+                  :label="dict.label"
+                  :value="dict.value"
+                />
               </el-select>
             </el-form-item>
           </el-col>
@@ -921,7 +921,7 @@
                 <el-table-column label="鎵瑰彿"
                                  prop="batchNo"
                                  min-width="180"/>
-                <el-table-column label="鏁伴噺"
+                <el-table-column label="搴撳瓨鏁伴噺"
                                  min-width="120"
                                  align="center">
                   <template #default="scope">
@@ -985,10 +985,9 @@
 import {modelList, productTreeList} from "@/api/basicData/product.js";
 import useFormData from "@/hooks/useFormData.js";
 import dayjs from "dayjs";
-import {getCurrentDate} from "@/utils/index.js";
-import {useRouter, useRoute} from "vue-router";
-import {listCustomerPrivatePool} from "@/api/basicData/customerFile.js";
 import FileUpload from "@/components/AttachmentUpload/file/index.vue";
+import { getCurrentDate } from "@/utils/index.js";
+import {listCustomer} from "@/api/basicData/customer.js";
 
 const FileList = defineAsyncComponent(() => import("@/components/Dialog/FileList.vue"));
 
@@ -996,6 +995,7 @@
 const route = useRoute();
 const userStore = useUserStore();
 const {proxy} = getCurrentInstance();
+const { tax_rate } = proxy.useDict("tax_rate");
 const tableData = ref([]);
 const productData = ref([]);
 const selectedRows = ref([]);
@@ -1496,7 +1496,7 @@
   selectedQuotation.value = null;
   let userLists = await userListNoPage();
   userList.value = userLists.data;
-  listCustomerPrivatePool({current: -1, size: -1}).then(res => {
+  listCustomer({current: -1, size: -1}).then(res => {
     customerOption.value = res.data.records;
   });
   form.value.entryPerson = userStore.id;
@@ -1533,7 +1533,7 @@
   // 鍏堢‘淇濆鎴峰垪琛ㄥ凡鍔犺浇锛屼究浜庡悗缁洖濉� customerId
   if (!customerOption.value || customerOption.value.length === 0) {
     try {
-      listCustomerPrivatePool({current: -1, size: -1}).then(res => {
+      listCustomer({current: -1, size: -1}).then(res => {
         customerOption.value = res.data.records;
       });
     } catch (e) {

--
Gitblit v1.9.3