Skip to content

Commit

Permalink
Added accreditation levels
Browse files Browse the repository at this point in the history
  • Loading branch information
kroman0 committed Mar 25, 2016
1 parent 06f2778 commit 1e718a5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions openprocurement/tender/limited/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ class Options:
owner_token = StringType()
owner = StringType()

create_accreditation = 1
edit_accreditation = 2

__parent__ = None
__name__ = ''

Expand Down Expand Up @@ -197,6 +200,8 @@ class Tender(ReportingTender):
causeDescription_en = StringType(min_length=1)
causeDescription_ru = StringType(min_length=1)
procurementMethodType = StringType(default="negotiation")
create_accreditation = 3
edit_accreditation = 4

NegotiationTender = Tender

Expand All @@ -206,5 +211,7 @@ class Tender(NegotiationTender):
""" Negotiation """
cause = StringType(choices=['quick'], required=False)
procurementMethodType = StringType(default="negotiation.quick")
create_accreditation = 3
edit_accreditation = 4

NegotiationQuickTender = Tender

0 comments on commit 1e718a5

Please sign in to comment.