From 88e9bfa5ad9d3399863f3c44a190649bdb161234 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期三, 04 二月 2026 16:59:55 +0800
Subject: [PATCH] 进销存升级app: 1.App手动新增销售台账时,客户合同号输入框去掉 2.开票台账无法进行编辑删除操作 3.APP手动开票时,提示提交失败,请重试 4.采购台账中有多个产品时(处于待审核状态),删除其中一个产品后保存。点击此采购台账,产品信息还是会回显已删除的产品

---
 src/pages/sales/receiptPayment/index.vue |   18 +++++-------------
 1 files changed, 5 insertions(+), 13 deletions(-)

diff --git a/src/pages/sales/receiptPayment/index.vue b/src/pages/sales/receiptPayment/index.vue
index 984d175..1f222f6 100644
--- a/src/pages/sales/receiptPayment/index.vue
+++ b/src/pages/sales/receiptPayment/index.vue
@@ -54,8 +54,8 @@
               <text class="detail-value">{{ item.customerName }}</text>
             </view>
             <view class="detail-row">
-              <text class="detail-label">瀹㈡埛鍚堝悓鍙�</text>
-              <text class="detail-value">{{ item.customerContractNo }}</text>
+              <text class="detail-label">閿�鍞悎鍚屽彿</text>
+              <text class="detail-value">{{ item.salesContractNo }}</text>
             </view>
             <view class="detail-row">
               <text class="detail-label">椤圭洰鍚嶇О</text>
@@ -66,24 +66,16 @@
               <text class="detail-value">{{ item.productCategory }}</text>
             </view>
             <view class="detail-row">
-              <text class="detail-label">鍙戠エ鍙�</text>
-              <text class="detail-value">{{ item.invoiceNo || '-' }}</text>
-            </view>
-            <view class="detail-row">
-              <text class="detail-label">鍙戠エ閲戦(鍏�)</text>
-              <text class="detail-value highlight">{{ formatNumber(item.invoiceTotal) }}</text>
-            </view>
-            <view class="detail-row">
               <text class="detail-label">绋庣巼(%)</text>
               <text class="detail-value">{{ item.taxRate }}</text>
             </view>
             <view class="detail-row">
               <text class="detail-label">鍥炴閲戦(鍏�)</text>
-              <text class="detail-value highlight">{{ formatNumber(item.receiptPaymentAmountTotal) }}</text>
+              <text class="detail-value highlight">{{ formatNumber(item.invoiceTotal) }}</text>
             </view>
             <view class="detail-row">
               <text class="detail-label">寰呭洖娆鹃噾棰�(鍏�)</text>
-              <text class="detail-value danger">{{ formatNumber(item.noReceiptAmount) }}</text>
+              <text class="detail-value danger">{{ formatNumber(item.pendingInvoiceTotal) }}</text>
             </view>
           </view>
           <!-- 鎿嶄綔鎸夐挳 -->
@@ -157,7 +149,7 @@
     if (!type) {
       return "info";
     }
-    if (type == "鏈畬鎴愬洖娆�") {
+    if (type == "鏈畬鎴愪粯娆�") {
       return "warning";
     } else {
       return "success";

--
Gitblit v1.9.3