|
|
@@ -535,8 +535,8 @@ class OrderClass extends BaseClass
|
|
|
} else {
|
|
|
$content .= '实付金额:' . floatval($respond['realPrice']) . '<BR>';
|
|
|
}
|
|
|
- if ($debtAmount > 0) {
|
|
|
- $content .= '累计欠款:' . floatval($debtAmount) . '<BR>';
|
|
|
+ if (isset($respond['remainDebtPrice']) && $respond['remainDebtPrice'] > 0) {
|
|
|
+ $content .= '待收尾款:' . floatval($respond['remainDebtPrice']) . '<BR>';
|
|
|
}
|
|
|
|
|
|
$shop = ShopClass::getById($shopId, true);
|