fix: publish valid SRO memberships while preserving quarantined history
All checks were successful
Mostovik Backend CI/CD / Tests and lint (push) Successful in 2m55s
Mostovik Backend CI/CD / Build linux/amd64 release images (push) Successful in 3m48s
Mostovik Backend CI/CD / Deploy and verify internal main (push) Has been skipped
Mostovik Backend CI/CD / Deploy customer main (push) Has been skipped
Mostovik Backend CI/CD / Deploy dev (push) Successful in 1m54s

This commit is contained in:
Aleksandr Meshchryakov
2026-09-15 13:25:43 +02:00
parent 3d7fb78678
commit 2cfc057e34
7 changed files with 471 additions and 22 deletions

View File

@@ -85,6 +85,9 @@ class SnapshotRunMetadataSerializer(serializers.Serializer):
found_memberships_count = serializers.IntegerField(read_only=True)
published_records_count = serializers.IntegerField(read_only=True)
quarantined_records_count = serializers.IntegerField(read_only=True)
quarantined_organizations_count = serializers.IntegerField(read_only=True)
completed_organizations_count = serializers.IntegerField(read_only=True)
retained_records_count = serializers.IntegerField(read_only=True)
missing_admission_dates_count = serializers.IntegerField(read_only=True)
http_errors_count = serializers.IntegerField(read_only=True)
parse_errors_count = serializers.IntegerField(read_only=True)