...
|
...
|
@@ -58,6 +58,7 @@ |
|
|
尺码:<?= $v['size'] ?><br>
|
|
|
数量:<?= $v['buy_number'] ?><br>
|
|
|
成交价格:<?= $v['sale_price'] ?><br>
|
|
|
运费:<?=$v['shipping_fee']?><br>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
...
|
...
|
@@ -144,17 +145,33 @@ |
|
|
$str .= '<div style="width:160px;float:left;">卖家已收款</div>';
|
|
|
$paly = (isset($statusArr[600]['create_time'])) ? $statusArr[600]['create_time'] : 0;
|
|
|
$time = "收款时间:" . date("Y-m-d", $paly+7 * 84600);
|
|
|
if(!empty($orderAmount)){
|
|
|
$end .= '<div style="width:160px;float:left;">';
|
|
|
foreach($orderAmount as $amount){
|
|
|
$end .= $amount['amount'].'元已打款至卖家账户';
|
|
|
}
|
|
|
$end .= '</div>';
|
|
|
}
|
|
|
}
|
|
|
if($info['order_status'] >= 900){
|
|
|
$str .= '<div style="width:160px;float:left;">已退款</div>';
|
|
|
$paly = (isset($statusArr[900]['create_time'])) ? $statusArr[900]['create_time'] : 0;
|
|
|
$time = "退款时间:" . date("Y-m-d", $paly);
|
|
|
if(!empty($orderAmount)){
|
|
|
$end .= '<div style="width:260px;float:left;">';
|
|
|
$amount_type = array('1' => '买家账户','2' => '卖家账户');
|
|
|
$amountStr = '';
|
|
|
foreach($orderAmount as $amount){
|
|
|
$amountStr .= ','.$amount['amount'].'元已退款至'.$amount_type[$amount['type']];
|
|
|
}
|
|
|
$end .= substr($amountStr,1);
|
|
|
$end .='</div>';
|
|
|
}
|
|
|
}
|
|
|
echo $str.'<div style="clear:both;"></div>';
|
|
|
?>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<?php if($info['order_status'] >= 300 && $info['order_status'] <= 810 )?>
|
|
|
<tr style="margin-top:10px;">
|
|
|
<td>
|
|
|
<table style="background-color: #E0E0E0; width: 290px;margin-top: 20px;" >
|
...
|
...
|
@@ -164,7 +181,6 @@ |
|
|
</table>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<?php ?>
|
|
|
</table>
|
|
|
</td>
|
|
|
<td style=" padding-left: 20px; padding-top: 10px"><?= $time ?></td>
|
...
|
...
|
|