if transaction_status in mark_transaction_id_list:\n
if transaction_status in mark_transaction_id_list:\n
# Mark on payment transaction history log that transaction was not processed yet\n
# Mark on payment transaction history log that transaction was not processed yet\n
storeWorkflowComment(transaction, \'Transaction status %s (%s) did not changed the document state\' % (transaction_status, transaction_status_description))\n
storeWorkflowComment(transaction, \'Transaction status %s (%s) did not changed the document state\' % (transaction_status, transaction_status_description))\n
payzen_event.confirm()\n
payzen_event.confirm()\n
...
@@ -106,7 +124,7 @@ if transaction_status in mark_transaction_id_list:\n
...
@@ -106,7 +124,7 @@ if transaction_status in mark_transaction_id_list:\n
if isTransitionPossible(transaction, \'confirm\'):\n
if isTransitionPossible(transaction, \'confirm\'):\n
transaction.confirm(comment=\'Confirmed as really saw in PayZen.\')\n
transaction.confirm(comment=\'Confirmed as really saw in PayZen.\')\n
\n
\n
elif transaction_status in continue_transaction_id_list:\n
elif transaction_status in continue_transaction_id_list:\n
# Check authAmount and authDevise and if match, stop transaction\n
# Check authAmount and authDevise and if match, stop transaction\n
auth_amount = int(data_kw[\'authAmount\'])\n
auth_amount = int(data_kw[\'authAmount\'])\n
auth_devise = data_kw[\'authDevise\']\n
auth_devise = data_kw[\'authDevise\']\n
...
@@ -135,11 +153,17 @@ elif transaction_status in continue_transaction_id_list:\n
...
@@ -135,11 +153,17 @@ elif transaction_status in continue_transaction_id_list:\n
else:\n
else:\n
payzen_event.confirm(comment=\'Expected to put transaction in stopped state, but achieved only %s state\' % transaction.getSimulationState())\n
payzen_event.confirm(comment=\'Expected to put transaction in stopped state, but achieved only %s state\' % transaction.getSimulationState())\n
\n
\n
else:\n
else:\n
payzen_event.confirm(comment=\'Transaction status %r (%r) is not supported\' \\\n
payzen_event.confirm(comment=\'Transaction status %r (%r) is not supported\' \\\n