fix decrypt password

This commit is contained in:
dirgantarasiahaan
2023-05-28 17:36:28 +07:00
parent cab86cf8fa
commit c93f666056
77 changed files with 405 additions and 129 deletions

View File

@@ -28,7 +28,7 @@ public class DeleteMetodePengadaanService implements BaseService<MetodePengadaan
.orElseThrow(() -> new BusinessException(HttpStatus.CONFLICT,
Constants.ERR_CODE_10001,
Constants.ERR_TTL_10001,
String.format(Constants.ERR_MSG_10001, input.getId())));
String.format(Constants.ERR_MSG_10001, "Metode Pengadaan", input.getId())));
metodePengadaan.setIsDelete(true);
metodePengadaanRepository.save(metodePengadaan);

View File

@@ -26,7 +26,7 @@ public class GetMetodePengadaanByIdService implements BaseService<MetodePengadaa
throw new BusinessException(HttpStatus.CONFLICT,
Constants.ERR_CODE_10001,
Constants.ERR_TTL_10001,
String.format(Constants.ERR_MSG_10001, input.getId()));
String.format(Constants.ERR_MSG_10001, "Metode Pengadaan", input.getId()));
}
return MetodePengadaanResponse.builder()

View File

@@ -29,7 +29,7 @@ public class PostCreateMetodePengadaanService implements BaseService<MetodePenga
throw new BusinessException(HttpStatus.CONFLICT,
Constants.ERR_CODE_10002,
Constants.ERR_TTL_10002,
String.format(Constants.ERR_MSG_10002, input.getMetodePengadaan()));
String.format(Constants.ERR_MSG_10002, "Metode Pengadaan", input.getMetodePengadaan()));
}
MetodePengadaan metodePengadaan = MetodePengadaan.builder()

View File

@@ -7,12 +7,9 @@ import com.iconplus.smartproc.model.response.MetodePengadaanResponse;
import com.iconplus.smartproc.repository.MetodePengadaanRepository;
import com.iconplus.smartproc.util.Constants;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.BooleanUtils;
import org.springframework.http.HttpStatus;
import org.springframework.stereotype.Service;
import java.sql.Timestamp;
@Service
@Slf4j
public class PutUpdateMetodePengadaanService implements BaseService<MetodePengadaanRequest, MetodePengadaanResponse> {
@@ -30,7 +27,7 @@ public class PutUpdateMetodePengadaanService implements BaseService<MetodePengad
.orElseThrow(() -> new BusinessException(HttpStatus.CONFLICT,
Constants.ERR_CODE_10001,
Constants.ERR_TTL_10001,
String.format(Constants.ERR_MSG_10001, input.getId())));
String.format(Constants.ERR_MSG_10001, "Metode Pengadaan", input.getId())));
metodePengadaan.setMetodePengadaan(input.getMetodePengadaan());
metodePengadaan.setKeterangan(input.getKeterangan());