|
|
@@ -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>';
|
|
|
}
|