plan implementation 6, 7, 8, 9, 10

This commit is contained in:
2026-02-03 10:50:56 +01:00
parent e8be239c32
commit 0b6c6736ef
16 changed files with 2665 additions and 44 deletions

42
config/screening.php Normal file
View 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,
];