Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/a250378148444126_handle_multilot…
Browse files Browse the repository at this point in the history
…_limited_tenders'
  • Loading branch information
vmaksymiv committed Jan 24, 2017
2 parents 18d6aeb + be948d8 commit 7b52eec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openprocurement/contracting/api/databridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def get_tenders(self, params={}, direction=""):
logger.info('Skipping {} tender {}'.format(tender['procurementMethodType'], tender['id']),
extra=journal_context({"MESSAGE_ID": DATABRIDGE_INFO}, params={"TENDER_ID": tender['id']}))
continue
if tender['status'] in ("active.qualification",
if tender['status'] in ("active.qualification", "active",
"active.awarded", "complete"):
if hasattr(tender, "lots"):
if any([1 for lot in tender['lots'] if lot['status'] == "complete"]):
Expand Down
2 changes: 1 addition & 1 deletion openprocurement/contracting/api/tests/change.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import unittest
from copy import deepcopy
from datetime import timedelta
from copy import deepcopy
from openprocurement.api.models import get_now
from openprocurement.contracting.api.tests.base import (
BaseWebTest, BaseContractContentWebTest, test_contract_data)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = '2.3.17'
version = '2.3.18'

requires = [
'setuptools',
Expand Down

0 comments on commit 7b52eec

Please sign in to comment.