|
@@ -1036,8 +1036,11 @@ class OrderClass extends BaseClass
|
|
|
if (isset($respond['discountAmount']) && !empty($respond['discountAmount']) && $respond['discountAmount'] > 0) {
|
|
if (isset($respond['discountAmount']) && !empty($respond['discountAmount']) && $respond['discountAmount'] > 0) {
|
|
|
$content .= '优惠扣除:-' . floatval($respond['discountAmount']) . '<BR>';
|
|
$content .= '优惠扣除:-' . floatval($respond['discountAmount']) . '<BR>';
|
|
|
}
|
|
}
|
|
|
- if (isset($respond['refundPrice']) && $respond['refundPrice'] > 0) {
|
|
|
|
|
- $content .= '退款金额:' . floatval($respond['refundPrice']) . '<BR>';
|
|
|
|
|
|
|
+ if (isset($orderInfo['presell']) && $orderInfo['presell'] == 1) {
|
|
|
|
|
+ $content .= '预付金额:' . floatval($respond['bookPrice']) . '<BR>';
|
|
|
|
|
+ }
|
|
|
|
|
+ if (isset($respond['tkPrice']) && $respond['tkPrice'] > 0) {
|
|
|
|
|
+ $content .= '退款金额:' . floatval($respond['tkPrice']) . '<BR>';
|
|
|
}
|
|
}
|
|
|
$content .= '<B>订单金额:' . floatval($respond['realPrice']) . '</B><BR>';
|
|
$content .= '<B>订单金额:' . floatval($respond['realPrice']) . '</B><BR>';
|
|
|
if (isset($respond['debt']) && $respond['debt'] == 1) {
|
|
if (isset($respond['debt']) && $respond['debt'] == 1) {
|