Commit 139cfa31 authored by yanghao's avatar yanghao

Merge branch 'release-fix' into release

parents b8c7c4d8 0074f59a
......@@ -389,7 +389,7 @@ public class CustomerController {
if (customerDODeleted.getCustomerService() == null) {
throw exception(ErrorCodeConstants.CUSTOMER_DELETED_CUSTOMER_SERVICE_IS_NULL);
}
if (customerDOSaved.getCustomerService() != customerDODeleted.getCustomerService()) {
if (!customerDOSaved.getCustomerService().equals(customerDODeleted.getCustomerService())) {
throw exception(ErrorCodeConstants.CUSTOMER_MERGE_CUSTOMER_SERVICE_NOT_SAME);
}
......
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