shish 3 anni fa
parent
commit
f74936c471
1 ha cambiato i file con 7 aggiunte e 8 eliminazioni
  1. 7 8
      biz-ghs/order/classes/PurchaseOrderClass.php

+ 7 - 8
biz-ghs/order/classes/PurchaseOrderClass.php

@@ -136,22 +136,21 @@ class PurchaseOrderClass extends BaseClass
         if (isset($orderInfo['packCost']) && $orderInfo['packCost'] > 0) {
             $content .= '  打包费:' . floatval($orderInfo['packCost']) . '元<BR>';
         }
-        $content .= '合计:' . floatval($orderInfo['prePrice']) . '元<BR>';
+        $content .= '合计金额:' . floatval($orderInfo['prePrice']) . '元<BR>';
         if (isset($orderInfo['discountAmount']) && !empty($orderInfo['discountAmount']) && $orderInfo['discountAmount'] > 0) {
-            $content .= '优惠:-' . floatval($orderInfo['discountAmount']) . '元<BR>';
+            $content .= '优惠扣除:-' . floatval($orderInfo['discountAmount']) . '元<BR>';
         }
         if (isset($orderInfo['tkPrice']) && $orderInfo['tkPrice'] > 0) {
-            $content .= '退款:' . floatval($orderInfo['tkPrice']) . '元<BR>';
+            $content .= '退款金额:' . floatval($orderInfo['tkPrice']) . '元<BR>';
         }
-        $content .= '<B>应付:' . floatval($orderInfo['realPrice']) . '</B><BR>';
+        $content .= '<B>订单金额:' . floatval($orderInfo['realPrice']) . '</B><BR>';
         if (isset($orderInfo['debt']) && $orderInfo['debt'] == 1) {
-            $content .= '实付:0元<BR>';
+            $content .= '实付金额:0元<BR>';
         } else {
-            $content .= '实付:' . floatval($orderInfo['realPrice']) . '元<BR>';
+            $content .= '实付金额:' . floatval($orderInfo['realPrice']) . '元<BR>';
         }
         if ($debtAmount > 0) {
-            $content .= '赊账:<BR>';
-            $content .= '<B>' . $debtCount . '笔 ' . floatval($debtAmount) . '元</B><BR>';
+            $content .= '累计赊账:' . $debtCount . '笔 ' . floatval($debtAmount) . '元<BR>';
         }
         $content .= '--------------------------------<BR>';