Authored by Lixiaodi

鉴定展示:二手信息

... ... @@ -776,7 +776,7 @@ public class StorageDepositServiceImpl implements IStorageDepositService, IBusin
result.setDepositOverDay(0);
} else {
result.setDepositRemainDay(0);
result.setDepositOverDay((int) Math.ceil((endTime - end) / (24 * 3600 * 1000D)));
result.setDepositOverDay((int) ((endTime - end) / (24 * 3600 * 1000D)));
}
}
StorageDepositResp trade = new StorageDepositResp();
... ...
... ... @@ -13,9 +13,9 @@
<tr>
<td>剩余天数:<span id="showDepositRemainDay"></span></td>
<td>滞纳天数:<span id="showDepositOverDay"></span></td>
<td>召回-滞纳金:<span id="showLateFee"></span>
<br/>召回-运费 :<span id="showShipFee"></span>
<br/>召回-违约金:<span id="showContractFee"></span>
<td>滞纳金:<span id="showLateFee"></span>
<br/>运费 :<span id="showShipFee"></span>
<br/>提货费:<span id="showContractFee"></span>
</td>
</tr>
</table>
... ... @@ -73,7 +73,7 @@
if("续约" == data.opInfo[i].opName) {
rowStr += "<td> 续约费:"+data.opInfo[i].reNewFee+"<br/>续约天数:"+data.opInfo[i].renewDay+"</td>";
} else {
rowStr += "<td> 违约金:"+data.opInfo[i].contractFee+"<br/>运费 :"+data.opInfo[i].shipFee+"</td>";
rowStr += "<td> 提货费:"+data.opInfo[i].contractFee+"<br/>运费 :"+data.opInfo[i].shipFee+"</td>";
}
rowStr += "</tr>";
$("#rent").append(rowStr);
... ...