Commit 6a9a354f authored by hezhen's avatar hezhen

123

parent e18d54d4
...@@ -29,9 +29,17 @@ public class BaseOrderRevenueVo extends BaseOrderRevenue { ...@@ -29,9 +29,17 @@ public class BaseOrderRevenueVo extends BaseOrderRevenue {
String[] values = type.split(","); String[] values = type.split(",");
List<String> list = Arrays.asList(values); List<String> list = Arrays.asList(values);
if (list.contains(CompanyWalletSourceEnum.VEHICLE.getCode()+"")) { if (list.contains(CompanyWalletSourceEnum.VEHICLE.getCode()+"")) {
showTypeStr = "租赁费"; if (list.contains(CompanyWalletSourceEnum.WATER.getCode()+"")){
showTypeStr = "租赁费+上级拥金";
}else {
showTypeStr = "租赁费";
}
} else if (list.contains(CompanyWalletSourceEnum.WATER.getCode()+"")) { } else if (list.contains(CompanyWalletSourceEnum.WATER.getCode()+"")) {
showTypeStr = "租赁费+上级拥金"; if (list.contains(CompanyWalletSourceEnum.VEHICLE.getCode()+"")){
showTypeStr = "租赁费+上级拥金";
}else {
showTypeStr = "上级拥金";
}
} else if (list.contains(CompanyWalletSourceEnum.REGULATION.getCode()+"")) { } else if (list.contains(CompanyWalletSourceEnum.REGULATION.getCode()+"")) {
showTypeStr = "违章金"; showTypeStr = "违章金";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment