Commit fa5589d1 by 王力

Merge branch 'feature_mvp616_wangl' into 'develop'

修改

See merge request !96
2 parents 695a2ef9 1c9a69b6
...@@ -378,6 +378,9 @@ class GroupTagUrgency implements GroupTag { ...@@ -378,6 +378,9 @@ class GroupTagUrgency implements GroupTag {
public String getGroupTag(OrderRequest order) { public String getGroupTag(OrderRequest order) {
String s = order.getTags(); String s = order.getTags();
if (s == null) {
return "正常#1";
}
if (s.contains("VIP") || s.contains("财产损失")) { if (s.contains("VIP") || s.contains("财产损失")) {
return "超急#10"; return "超急#10";
} else if (s.contains("自保点") || s.contains("紧急")) { } else if (s.contains("自保点") || s.contains("紧急")) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!