コード例 #1
0
 def complete(info,context):
     """
     A question is marked as complete by the clerks office, 
     it is available to the speakers office for review
     """
     utils.createVersion(info,context)
     utils.setSubmissionDate(info, context) 
コード例 #2
0
ファイル: bill.py プロジェクト: mohalfaki/bungeni-portal
 def submit(info, context):
     utils.setBillPublicationDate(info, context)
     utils.createVersion(
         info,
         context,
         message="New version on workflow transition to: submit")
     utils.setRegistryNumber(info, context)
コード例 #3
0
 def submit_to_clerk(info, context):
     """A question submitted to the clerks office, the owner cannot edit it 
     anymore the clerk has no edit rights until it is received.
     """
     utils.createVersion(info, context,
         message="New version on workflow transition to: submit")
     utils.setRegistryNumber(info, context)
コード例 #4
0
 def approve(info, context):
     """The question is admissible and can be send to ministry,
     or is available for scheduling in a sitting.
     """
     utils.createVersion(info, context,
         message="New Version on approval by speakers office")
     dbutils.setQuestionSerialNumber(context)
コード例 #5
0
 def complete(info, context):
     """A question is marked as complete by the clerks office, 
     it is available to the speakers office for review.
     """
     utils.createVersion(
         info,
         context,
         message="New version on workflow transition to: complete")
コード例 #6
0
 def submit_to_clerk(info, context):
     """A question submitted to the clerks office, the owner cannot edit it 
     anymore the clerk has no edit rights until it is received.
     """
     utils.createVersion(
         info,
         context,
         message="New version on workflow transition to: submit")
     utils.setRegistryNumber(info, context)
コード例 #7
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def approve(info, context):
     """The question is admissible and can be send to ministry,
     or is available for scheduling in a sitting.
     """
     utils.createVersion(
         info,
         context,
         message="New Version on approval by speakers office")
     dbutils.setQuestionSerialNumber(context)
コード例 #8
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def complete(info, context):
     utils.createVersion(info, context)
     utils.setSubmissionDate(info, context)
コード例 #9
0
 def mp_clarify( info, context ):
     utils.createVersion(info,context)
コード例 #10
0
ファイル: bill.py プロジェクト: BenoitTalbot/bungeni-portal
 def create_version(info, context):
     utils.createVersion(info, context)
コード例 #11
0
 def require_edit_by_mp( info, context ):
     utils.createVersion(info,context)
コード例 #12
0
 def require_amendment( info, context ):
     utils.createVersion(info,context)
コード例 #13
0
 def require_amendment(info,context):
     """
     A question is send back from the speakers office 
     the clerks office for clarification
     """
     utils.createVersion(info,context)
コード例 #14
0
ファイル: motion.py プロジェクト: kohsah/bungeni-portal
 def approve(info, context):
     utils.createVersion(info, context,
         message="New Version on approval by speakers office")
     dbutils.setMotionSerialNumber(context)
コード例 #15
0
 def complete(info, context):
     """A question is marked as complete by the clerks office, 
     it is available to the speakers office for review.
     """
     utils.createVersion(info, context,
         message="New version on workflow transition to: complete")
コード例 #16
0
 def approve(info, context):
     utils.createVersion(
         info,
         context,
         message="New Version on approval by speakers office")
     dbutils.setTabledDocumentSerialNumber(context)
コード例 #17
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def received_by_clerk(info, context):
     """The question is received by the clerks office, 
     the clerk can edit the question.
     """
     utils.createVersion(info, context)
コード例 #18
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def require_edit_by_mp(info, context):
     utils.createVersion(info, context)
コード例 #19
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def received_by_clerk(info, context):
     utils.createVersion(info, context)
コード例 #20
0
ファイル: agendaitem.py プロジェクト: kohsah/bungeni-portal
 def complete(info, context):
     utils.createVersion(info, context,
         message="New version on workflow transition to: submit")
コード例 #21
0
 def complete(info, context):
     utils.createVersion(info, context,
         message="New version on workflow transition to: complete")
コード例 #22
0
 def schedule_second(info, context):
     utils.createVersion(info, context)
コード例 #23
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def adopt(info, context):
     utils.createVersion(info, context)
コード例 #24
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def require_amendment(info, context):
     utils.createVersion(info, context)
コード例 #25
0
 def complete_clarify(info,context):
     """
     a question that requires clarification/amendmends
     is  resubmitted by the clerks office to the speakers office
     """
     utils.createVersion(info,context)
コード例 #26
0
 def require_edit_by_mp(info,context):
     """
     A question is unclear and requires edits/amendments by the MP
     Only the MP is able to edit it, the clerks office looses edit rights
     """
     utils.createVersion(info,context)
コード例 #27
0
 def received_by_clerk( info, context ):
     """
     the question is recieved by the clerks office, 
     the clerk can edit the question
     """
     utils.createVersion(info, context)
コード例 #28
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def complete_clarify(info, context):
     utils.createVersion(info, context)
コード例 #29
0
 def approve(info, context):
     utils.createVersion(
         info,
         context,
         message="New Version on approval by speakers office")
コード例 #30
0
 def mp_clarify(info,context):
     """
     send from the clerks office to the mp for clarification 
     the MP can edit it the clerk cannot
     """
     utils.createVersion(info,context)
コード例 #31
0
ファイル: motion.py プロジェクト: mohalfaki/bungeni-portal
 def mp_clarify(info, context):
     utils.createVersion(info, context)
コード例 #32
0
 def received_by_clerk( info, context ):
     utils.createVersion(info, context)
コード例 #33
0
ファイル: motion.py プロジェクト: kohsah/bungeni-portal
 def adopt(info, context):
     utils.createVersion(info,context)
コード例 #34
0
 def complete( info, context ):
     utils.createVersion(info,context)
     utils.setSubmissionDate(info, context)
コード例 #35
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def mp_clarify(info, context):
     """Send from the clerks office to the mp for clarification 
     the MP can edit it the clerk cannot.
     """
     utils.createVersion(info, context)
コード例 #36
0
 def complete_clarify( info, context ):
     utils.createVersion(info,context)
コード例 #37
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def require_amendment(info, context):
     """A question is send back from the speakers office 
     the clerks office for clarification.
     """
     utils.createVersion(info, context)
コード例 #38
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def complete(info, context):
     """A question is marked as complete by the clerks office, 
     it is available to the speakers office for review.
     """
     utils.createVersion(info, context)
     utils.setSubmissionDate(info, context)
コード例 #39
0
ファイル: question.py プロジェクト: mohalfaki/bungeni-portal
 def complete_clarify(info, context):
     """A question that requires clarification/amendmends,
     is resubmitted by the clerks office to the speakers office.
     """
     utils.createVersion(info, context)
コード例 #40
0
ファイル: bill.py プロジェクト: mohalfaki/bungeni-portal
 def create_version(info, context):
     utils.createVersion(info, context)
コード例 #41
0
 def approve(info, context):
     utils.createVersion(info, context,
         message="New Version on approval by speakers office")