Authored by mali

编译

... ... @@ -217,7 +217,7 @@ public class DepositOrderService {
AppraiseAddressResp resp = expressInfoService.queryByUserAddress(uid, addressId);
BigDecimal contractFee = new BigDecimal(15); // 违约金
BigDecimal contractFee = new BigDecimal(0.1); // 违约金
BigDecimal shipFee = Optional.ofNullable(resp).map(AppraiseAddressResp::getShipFee).orElse(new BigDecimal(15)); // 运费
BigDecimal amount = contractFee.add(shipFee);
... ...
... ... @@ -519,7 +519,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{
if(null == inboxId) {
return;
}
List<InBoxAttr> attrList = inBoxAttrDao.selectInboxAttrList(uid, Lists.newArrayList(inboxId));
List<InBoxAttr> attrList = inBoxAttrDao.selectInboxAttrList(uid, Lists.newArrayList(inboxId)); // 站内信通知里面 是否同意转移,要更改站内信消息的同意状态和时间
if(CollectionUtils.isEmpty(attrList)) {
return;
}
... ...