|
@@ -535,6 +535,9 @@ class OrderClass extends BaseClass
|
|
|
}
|
|
}
|
|
|
$content .= '--------------------------------<BR>';
|
|
$content .= '--------------------------------<BR>';
|
|
|
}
|
|
}
|
|
|
|
|
+ if (isset($order->goodsPrice) && $order->goodsPrice > 0) {
|
|
|
|
|
+ $content .= '商品合计:' . floatval($respond['sendCost']) . '<BR>';
|
|
|
|
|
+ }
|
|
|
if (isset($respond['sendCost']) && $respond['sendCost'] > 0) {
|
|
if (isset($respond['sendCost']) && $respond['sendCost'] > 0) {
|
|
|
$content .= '运费:' . floatval($respond['sendCost']) . '<BR>';
|
|
$content .= '运费:' . floatval($respond['sendCost']) . '<BR>';
|
|
|
}
|
|
}
|
|
@@ -542,7 +545,10 @@ class OrderClass extends BaseClass
|
|
|
$content .= '服务费:' . floatval($order->serviceFee) . '<BR>';
|
|
$content .= '服务费:' . floatval($order->serviceFee) . '<BR>';
|
|
|
}
|
|
}
|
|
|
if (isset($order->labourCost) && $order->labourCost > 0) {
|
|
if (isset($order->labourCost) && $order->labourCost > 0) {
|
|
|
- $content .= '包装费:' . floatval($order->labourCost) . '<BR>';
|
|
|
|
|
|
|
+ $content .= '人工包装费:' . floatval($order->labourCost) . '<BR>';
|
|
|
|
|
+ }
|
|
|
|
|
+ if (isset($order->prePrice) && $order->prePrice > 0) {
|
|
|
|
|
+ $content .= '总计:' . floatval($order->prePrice) . '<BR>';
|
|
|
}
|
|
}
|
|
|
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>';
|