plan implementation 6, 7, 8, 9, 10
This commit is contained in:
42
config/screening.php
Normal file
42
config/screening.php
Normal file
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Pre-Screening Questions
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| These 10 Yes/No questions are presented before category selection.
|
||||
| Each "Yes" answer scores 1 point. A score of 5 or more is required
|
||||
| to proceed to the category questionnaire.
|
||||
|
|
||||
*/
|
||||
|
||||
'questions' => [
|
||||
1 => 'Is the opportunity aligned with our strategic goals?',
|
||||
2 => 'Do we have the necessary expertise to deliver?',
|
||||
3 => 'Is the client financially stable?',
|
||||
4 => 'Are there no significant conflicts of interest?',
|
||||
5 => 'Is the timeline realistic?',
|
||||
6 => 'Do we have available resources?',
|
||||
7 => 'Is the expected fee reasonable for the scope?',
|
||||
8 => 'Are the client\'s expectations manageable?',
|
||||
9 => 'Have we successfully completed similar engagements?',
|
||||
10 => 'Is the risk level acceptable?',
|
||||
],
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Passing Score Threshold
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Minimum score required to proceed to category selection.
|
||||
|
|
||||
*/
|
||||
|
||||
'passing_score' => 5,
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user