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