cd8be32671
The admin Payments page filter and pending payments tab were missing newer providers (paypear, rollypay, aurapay, etoplatezhi, antilopay, jupiter, donut, lava) because they were never registered in the search/verification registries. Customer payments via these providers were invisible in admin filtering. payment_search_service.py: - Add 8 _search_<provider> functions matching the existing pattern - Register them in _PROVIDER_SEARCH_MAP (now 22 methods total) - Filter dropdown and stats.by_method now include all providers payment_verification_service.py: - Add 8 _is_<provider>_pending and _fetch_<provider>_payments functions - Wire them into list_recent_pending_payments and get_payment_record - Add display name and is_enabled dispatch branches for all 8 - Register paypear / rollypay / aurapay in SUPPORTED_MANUAL_CHECK_METHODS and SUPPORTED_AUTO_CHECK_METHODS (they have full API+DB sync via check_*) - Wire them into run_manual_check - etoplatezhi / antilopay / jupiter / donut / lava remain webhook-driven and appear in pending tab without manual-check button (no fake API sync)