removed filter to get all tenders - bug fix

This commit is contained in:
Mazyar
2026-05-04 05:28:56 +03:30
parent 446c11dfbf
commit 086fe0ffd5
7 changed files with 31 additions and 20 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ func (r *noticeRepository) GetByContractNoticeID(ctx context.Context, contractNo
// GetUnProcessedNotices retrieves unprocessed notices
func (r *noticeRepository) GetUnProcessedNotices(ctx context.Context, limit int, skip int) ([]Notice, int64, error) {
filter := bson.M{"processing_metadata.processed": false, "main_classification": "72000000"}
filter := bson.M{"processing_metadata.processed": false}
pagination := orm.Pagination{
Limit: limit,