Skip to content

Commit

Permalink
add feedback constants
Browse files Browse the repository at this point in the history
  • Loading branch information
r4vi committed Sep 1, 2014
1 parent dc842ae commit 4150044
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cla_common/__init__.py
@@ -1 +1 @@
__version__ = '0.1.38'
__version__ = '0.1.39'
20 changes: 20 additions & 0 deletions cla_common/constants.py
Expand Up @@ -264,3 +264,23 @@
('PROBLEM_NOT_SUITABLE', 'PROBLEM_NOT_SUITABLE', 'Problem not suitable for ECF message'),
('CLIENT_TERMINATED', 'CLIENT_TERMINATED', 'Could not provide - client terminated call'),
)


FEEDBACK_ISSUE = Choices(
# constant, db_id, friendly string
('ADVISOR_CONDUCT','ADVISOR_CONDUCT', 'Advisor conduct'),
('ACCESS_PROBLEMS','ACCESS_PROBLEMS', 'Access problems'),
('ALREADY_RECEIVING_ADVICE','ALREADY_RECEIVING_ADVICE', 'Already receiving/received advice'),
('WRONG_CATEGORY','WRONG_CATEGORY', 'Category of law is incorrect'),
('DELAY_ADVISING_LACK_OF_FOLLOWUP_INFORMATION','DELAY_ADVISING_LACK_OF_FOLLOWUP_INFORMATION', 'Delay in advising (lack of follow up information)'),
('DELAY_ADVISING_OTHER','DELAY_ADVISING_OTHER', 'Delay in advising (other)'),
('INCORRECT_ELIGIBILITY_CALCULATION', 'INCORRECT_ELIGIBILITY_CALCULATION', 'Incorrect eligibility calculation'),
('INCORRECT_DIAGNOSIS', 'INCORRECT_DIAGNOSIS', 'Incorrect diagnosis (out of scope)'),
('INCORRECT_INFO_DIAGNOSIS', 'INCORRECT_INFO_DIAGNOSIS', 'Incorrect information provided (diagnosis)'),
('INCORRECT_XFER_PROVIDER', 'INCORRECT_XFER_PROVIDER', 'Incorrect transferring of calls (provider)'),
('INCORRECT_XFER_BACKDOOR', 'INCORRECT_XFER_BACKDOOR', 'Incorrect transferring of calls (front/back)'),
('INCORRECT_OR_MISSING_PERSONAL_DETAILS', 'INCORRECT_OR_MISSING_PERSONAL_DETAILS', 'Incorrect/missing contact details or DOB'),
('OTHER_DATA_ENTRY_ERROR', 'OTHER_DATA_ENTRY_ERROR', 'Other data entry errors'),
('SYSTEM_ERROR', 'SYSTEM_ERROR', 'System Error'),
('OTHER', 'OTHER', 'Other'),
)

0 comments on commit 4150044

Please sign in to comment.