Merge pull request #248 from ssmaurya/master

Fix for error during customer description update
This commit is contained in:
Igor Kulikov 2017-08-17 15:28:17 +03:00 committed by GitHub
commit 41d34fe4a4

View File

@ -154,7 +154,7 @@ public class CustomerServiceImpl extends AbstractEntityService implements Custom
protected void validateUpdate(Customer customer) {
customerDao.findCustomersByTenantIdAndTitle(customer.getTenantId().getId(), customer.getTitle()).ifPresent(
c -> {
if (!c.getId().equals(customer.getUuidId())) {
if (!c.getId().equals(customer.getId())) {
throw new DataValidationException("Customer with such title already exists!");
}
}