|
|
@@ -73,7 +73,10 @@ 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 .= $bigPrice . '元x' . $count . $bigUnit . '=' . $totalPrice . '元<BR>';
|
|
|
+ if (isset($current['refundNum']) && $current['refundNum'] > 0) {
|
|
|
+ $content .= '<B>已退' . $current['refundNum'] . $bigUnit . '</B><BR>';
|
|
|
+ }
|
|
|
$content .= '--------------------------------<BR>';
|
|
|
return $content;
|
|
|
}
|