bug--代码规范优化
This commit is contained in:
@ -217,7 +217,9 @@ public class StoreOrderController {
|
||||
}
|
||||
|
||||
//处理是否已经修改过订单价格,如果修改用新的单号去拉起支付
|
||||
if(StrUtil.isNotBlank(storeOrder.getExtendOrderId())) orderId = storeOrder.getExtendOrderId();
|
||||
if(StrUtil.isNotBlank(storeOrder.getExtendOrderId())) {
|
||||
orderId = storeOrder.getExtendOrderId();
|
||||
}
|
||||
|
||||
|
||||
orderSupplyService.goPay(map,orderId,uid, param.getPaytype(),param.getFrom(),orderDTO);
|
||||
|
@ -188,7 +188,9 @@ public class CreatShareProductService {
|
||||
}
|
||||
}
|
||||
else{//其他
|
||||
if(StrUtil.isBlank(from)) from = AppFromEnum.H5.getValue();
|
||||
if(StrUtil.isBlank(from)) {
|
||||
from = AppFromEnum.H5.getValue();
|
||||
}
|
||||
|
||||
String name = uid + "_"+from+"_user_wap.jpg";
|
||||
|
||||
|
Reference in New Issue
Block a user