Modified offer status to ACTIVE instead of Active.

parent 44989620
......@@ -60,7 +60,7 @@ public class OfferCallingPEService {
return eligibleOffer.stream().
map(offer -> {
Optional<OfferMeta> optionalOfferMeta = offerMetaDataRepo.
findByOfferIdAndOfferStatus(offer.getOfferId(), "Active");
findByOfferIdAndOfferStatus(offer.getOfferId(), "ACTIVE");
if(optionalOfferMeta.isPresent()){
OfferMetaDTO offerMetaDTO = OfferConvertion.INSTANCE.map(optionalOfferMeta.get());
......
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