From c7e46f4153a534a458e85e26885e364aa2399acb Mon Sep 17 00:00:00 2001 From: Ravi Kotecha Date: Tue, 19 Aug 2014 11:09:35 +0100 Subject: [PATCH] add constants for ECF message --- cla_common/__init__.py | 2 +- cla_common/constants.py | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/cla_common/__init__.py b/cla_common/__init__.py index da9d669..88395d2 100644 --- a/cla_common/__init__.py +++ b/cla_common/__init__.py @@ -1 +1 @@ -__version__ = '0.1.37' +__version__ = '0.1.38' diff --git a/cla_common/constants.py b/cla_common/constants.py index 1ea0383..8187c54 100644 --- a/cla_common/constants.py +++ b/cla_common/constants.py @@ -256,3 +256,11 @@ ('EDET', 'EDET', 'Client is in detention'), ('EPRE', 'EPRE', '12 month exemption'), ) + +ECF_STATEMENT = Choices( + # constant, db_id, friendly string + ('XFER_TO_RECORDED_MESSAGE','XFER_TO_RECORDED_MESSAGE', '"On closing this call you will hear a recorded message which will contain information to highlight limited circumstances in which legal aid may still be available to you. Thank you [client name] for calling Civil Legal Advice. Goodbye"'), + ('READ_OUT_MESSAGE', 'READ_OUT_MESSAGE', '"Legal aid may be available in exceptional circumstances to people whose cases are out of scope where a refusal to fund would breach Human Rights or enforceable European law. You could seek advice from a legal advisor about whether an application might succeed in your case and how to make one. Thank you for calling Civil Legal Advice. Goodbye"'), + ('PROBLEM_NOT_SUITABLE', 'PROBLEM_NOT_SUITABLE', 'Problem not suitable for ECF message'), + ('CLIENT_TERMINATED', 'CLIENT_TERMINATED', 'Could not provide - client terminated call'), +)