shish 19 цаг өмнө
parent
commit
745a8f66d1

+ 3 - 3
biz-ghs/order/classes/PurchaseOrderClass.php

@@ -898,7 +898,7 @@ class PurchaseOrderClass extends BaseClass
         if (isset($orderInfo['tkPrice']) && $orderInfo['tkPrice'] > 0) {
             $content .= '退款金额:' . floatval($orderInfo['tkPrice']) . '元<BR>';
         }
-        $content .= '<B>单金额:' . floatval($orderInfo['realPrice']) . '</B><BR>';
+        $content .= '<B>单金额:' . floatval($orderInfo['realPrice']) . '</B><BR>';
         if ($orderInfo['debtPrice'] > 0) {
             $remainDebt = bcadd((string)($orderInfo['remainDebtPrice'] ?? '0'), '0', 2);
             $totalRefund = bcadd((string)($orderInfo['tkPrice'] ?? '0'), (string)($orderInfo['nextDayTkPrice'] ?? '0'), 2);
@@ -906,9 +906,9 @@ class PurchaseOrderClass extends BaseClass
                 $content .= '累计退款:' . floatval($totalRefund) . '元<BR>';
             }
             if($remainDebt > 0) {
-                $content .= '<B>剩余待结:' . floatval($remainDebt) . '元</B><BR>';   
+                $content .= '<B>本单待结:' . floatval($remainDebt) . '元</B><BR>';   
             }else{
-                $content .= '<B>剩余待结:0元 已结清!</B><BR>';
+                $content .= '<B>本单待结:0元 已结清!</B><BR>';
             }
         } else {
             $content .= '实付金额:' . floatval($orderInfo['realPrice']) . '元<BR>';