updates on batch logic

This commit is contained in:
Prince
2026-06-17 01:11:48 +02:00
parent 5d3c9a46a3
commit 0eda74414e
16 changed files with 288 additions and 254 deletions

View File

@@ -90,6 +90,10 @@ public class ProviderService {
if (provider == null) {
return Collections.emptyList();
}
if(provider.getRequiresProducts().equals(false)){
return Collections.emptyList();
}
Map<String, String> meta = Utils.fromJson(provider.getMeta(), Map.class);
String providerId = meta.get("hotProductId");