|
|
@@ -1962,7 +1962,6 @@ class OrderClass extends BaseClass
|
|
|
}
|
|
|
$itemList = array_values($itemList);
|
|
|
$beforeDebtPrice = bcsub($debtAmount, $remainDebtPrice, 2);
|
|
|
- $realString = $remainDebtPrice > 0 ? '应付' : '实付';
|
|
|
$tkString = '';
|
|
|
if ($tkPrice > 0) {
|
|
|
$tkString = "<span style='margin-right:15px;'>已退款:{$tkPrice}</span>";
|
|
|
@@ -1971,7 +1970,6 @@ class OrderClass extends BaseClass
|
|
|
$orderSn = $order->orderSn ?? '';
|
|
|
$remainDebtPrice = $order->remainDebtPrice ?? 0;
|
|
|
$beforeDebtPrice = bcsub($debtAmount, $remainDebtPrice, 2);
|
|
|
- $realString = $remainDebtPrice > 0 ? '应付' : '实付';
|
|
|
$actPrice = $order->actPrice ?? 0;
|
|
|
$tkPrice = $order->tkPrice ?? 0;
|
|
|
$tkString = '';
|
|
|
@@ -2072,7 +2070,7 @@ XL;
|
|
|
</table>
|
|
|
<div style="margin-top:5px;margin-bottom:20px;">
|
|
|
{$tkString}
|
|
|
- <span style="margin-right:15px;">本单{$realString}:{$actPrice}</span>
|
|
|
+ <span style="margin-right:15px;">本单:{$actPrice}</span>
|
|
|
<span style="margin-right:15px;">上次欠款:{$beforeDebtPrice}</span>
|
|
|
<span style="margin-right:15px;">待付款余额:{$debtAmount}</span>
|
|
|
{$balanceString}
|