Showing
1 changed file
with
1 additions
and
1 deletions
@@ -863,7 +863,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ | @@ -863,7 +863,7 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ | ||
863 | private boolean isServiceOrder(long orderCode) { | 863 | private boolean isServiceOrder(long orderCode) { |
864 | ApiResponse resp = ufoServiceCaller.call("ufo.order.isServiceOrder", ApiResponse.class, orderCode); | 864 | ApiResponse resp = ufoServiceCaller.call("ufo.order.isServiceOrder", ApiResponse.class, orderCode); |
865 | if (resp != null) { | 865 | if (resp != null) { |
866 | - return !(Boolean) resp.getData(); | 866 | + return (Boolean) resp.getData(); |
867 | } | 867 | } |
868 | return false; | 868 | return false; |
869 | } | 869 | } |
-
Please register or login to post a comment