shish vor 2 Jahren
Ursprung
Commit
0a62d18d7a
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      biz-ghs/order/classes/PurchaseOrderClass.php

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

@@ -73,7 +73,7 @@ class PurchaseOrderClass extends BaseClass
         $content .= '<B>' . $name . ' ' . $count . $bigUnit . '</B><BR>';
         $totalPrice = bcmul($count, $bigPrice, 2);
         $totalPrice = floatval($totalPrice);
-        $content .= $bigPrice . '元x' . $count . $bigUnit . '=' . $totalPrice . '元<BR>';
+        $content .= $count . $bigUnit . 'x' . $bigPrice . '元' . '=' . $totalPrice . '元<BR>';
         if (isset($current['refundNum']) && $current['refundNum'] > 0) {
             $content .= '<B>已退' . $current['refundNum'] . $bigUnit . '</B><BR>';
         }