|
@@ -7,13 +7,13 @@ public class OrderVoStatus {
|
|
|
|
|
|
public static String getPayStatus(String payStatus, String customerPayTime, Integer useType) {
|
|
|
if(payStatus == null){
|
|
|
- return "-";
|
|
|
+ return "";
|
|
|
}
|
|
|
if(StringUtils.isBlank(customerPayTime)){
|
|
|
- return "-";
|
|
|
+ return "";
|
|
|
}
|
|
|
if(useType != null && useType == 3){
|
|
|
- return "-";
|
|
|
+ return "";
|
|
|
}
|
|
|
switch (payStatus){
|
|
|
case "-1" :
|
|
@@ -21,7 +21,7 @@ public class OrderVoStatus {
|
|
|
return "未付款";
|
|
|
case "-2" : return "已退款";
|
|
|
case "1" : return "已付款";
|
|
|
- default: return "-";
|
|
|
+ default: return "";
|
|
|
}
|
|
|
}
|
|
|
|