ccs-digitalmarketplace-frameworks 4.0.4 → 4.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_service.yml +1 -1
  2. package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_service_as_admin.yml +1 -1
  3. package/frameworks/digital-outcomes-and-specialists-7/manifests/edit_submission.yml +1 -1
  4. package/frameworks/digital-outcomes-and-specialists-7/questions/declaration/mandatoryAwardQuestion.yml +7 -1
  5. package/frameworks/digital-outcomes-and-specialists-7/questions/declaration/tenderInfoAssociatedPersonPpon.yml +2 -2
  6. package/frameworks/digital-outcomes-and-specialists-7/questions/declaration/tenderInfoAssociatedPersonShareCode.yml +1 -1
  7. package/frameworks/digital-outcomes-and-specialists-7/questions/services/multiqPhysicalStudioBookingCost.yml +20 -0
  8. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingCostDay.yml +23 -0
  9. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingCostHalfDay.yml +23 -0
  10. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingCostHour.yml +23 -0
  11. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingCostWeek.yml +23 -0
  12. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingUnit.yml +37 -0
  13. package/frameworks/digital-outcomes-and-specialists-7/questions/services/whatTypesOfUserResearchStudio.yml +9 -3
  14. package/frameworks/digital-outcomes-and-specialists-7/questions/services/whatUserResearchServices.yml +9 -3
  15. package/package.json +1 -1
  16. package/tests/test_content.py +6 -5
  17. package/frameworks/digital-outcomes-and-specialists-7/questions/services/physicalStudioBookingCost.yml +0 -39
@@ -414,7 +414,7 @@
414
414
  editable: False
415
415
  questions:
416
416
  - physicalMinimumStudioTime
417
- - physicalStudioBookingCost
417
+ - multiqPhysicalStudioBookingCost
418
418
  - physicalMinimumLeadTime
419
419
 
420
420
  - name: Physical user research studio - Capacity
@@ -442,7 +442,7 @@
442
442
  editable: True
443
443
  questions:
444
444
  - physicalMinimumStudioTime
445
- - physicalStudioBookingCost
445
+ - multiqPhysicalStudioBookingCost
446
446
  - physicalMinimumLeadTime
447
447
 
448
448
  - name: Physical user research studio - Capacity
@@ -450,7 +450,7 @@
450
450
  editable: True
451
451
  questions:
452
452
  - physicalMinimumStudioTime
453
- - physicalStudioBookingCost
453
+ - multiqPhysicalStudioBookingCost
454
454
  - physicalMinimumLeadTime
455
455
 
456
456
  - name: Physical user research studio - Capacity
@@ -1,9 +1,15 @@
1
1
  name: Name of consortium
2
2
  question: If you are awarded a framework contract, will you deliver in full all mandatory service requirements in Framework Schedule 1 (Specification) for each Lot you have successfully tendered for?
3
- hint: |
3
+ question_advice: >
4
+ <p class="govuk-body">
4
5
  This question is assessed as pass / fail.
6
+ </p>
7
+ <p class="govuk-body">
5
8
  Your tender will fail, if you do not answer yes to this question, as you will not satisfy this award question.
9
+ </p>
10
+ <p class="govuk-body">
6
11
  Your tender will be disqualified. We will tell you that your tender has been disqualified and why.
12
+ </p>
7
13
  type: boolean
8
14
 
9
15
 
@@ -1,5 +1,5 @@
1
1
  name: associated person PPON
2
- question: Please provide their 12 character public procurement organisation number (PPON) for this associated person
2
+ question: Please provide the associated persons 12 character public procurement organisation number (PPON)
3
3
  question_advice: >
4
4
  This can be found within the Central Digital Platform, in the section called 'My account'.
5
5
 
@@ -19,4 +19,4 @@ validations:
19
19
 
20
20
  -
21
21
  name: under_character_limit
22
- message: PPON must not exceed 14 characters
22
+ message: PPON must not exceed 12 characters
@@ -1,5 +1,5 @@
1
1
  name: Associated person share code
2
- question: Please enter the associated person's share code from the CDP supplier information section
2
+ question: Please enter the associated persons share code from the CDP supplier information section
3
3
  hint: Example share code from CDP - FW8G8KhC
4
4
 
5
5
  type: text
@@ -0,0 +1,20 @@
1
+ name: Cost of booking a studio
2
+ question: How much does it cost (excluding VAT) to book a studio?
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ type: multiquestion
10
+
11
+ depends_on_follow_up:
12
+ whatTypesOfUserResearchStudio:
13
+ - physical-location
14
+
15
+ questions:
16
+ - physicalStudioBookingUnit
17
+ - physicalStudioBookingCostHour
18
+ - physicalStudioBookingCostHalfDay
19
+ - physicalStudioBookingCostDay
20
+ - physicalStudioBookingCostWeek
@@ -0,0 +1,23 @@
1
+ name: Cost of booking a studio per day
2
+ question: What is th cost (excluding VAT) to book a studio per day?
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ type: pricing
10
+ fields:
11
+ price: physicalStudioBookingCostDayPrice
12
+
13
+ hidden: true
14
+
15
+ decimal_place_restriction: true
16
+
17
+ validations:
18
+ - name: answer_required
19
+ field: physicalStudioBookingCostDayPrice
20
+ message: Enter how much it costs to book a studio per day
21
+ - name: not_money_format
22
+ field: physicalStudioBookingCostDayPrice
23
+ message: Price must be a number greater than 0, without units, eg 99.95
@@ -0,0 +1,23 @@
1
+ name: Cost of booking a studio per half day
2
+ question: What is th cost (excluding VAT) to book a studio per half day?
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ hidden: true
10
+
11
+ type: pricing
12
+ fields:
13
+ price: physicalStudioBookingCostHalfDayPrice
14
+
15
+ decimal_place_restriction: true
16
+
17
+ validations:
18
+ - name: answer_required
19
+ field: physicalStudioBookingCostHalfDayPrice
20
+ message: Enter how much it costs to book a studio per half day
21
+ - name: not_money_format
22
+ field: physicalStudioBookingCostHalfDayPrice
23
+ message: Price must be a number greater than 0, without units, eg 99.95
@@ -0,0 +1,23 @@
1
+ name: Cost of booking a studio per hour
2
+ question: What is th cost (excluding VAT) to book a studio per hour?
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ hidden: true
10
+
11
+ type: pricing
12
+ fields:
13
+ price: physicalStudioBookingCostHourPrice
14
+
15
+ decimal_place_restriction: true
16
+
17
+ validations:
18
+ - name: answer_required
19
+ field: physicalStudioBookingCostHourPrice
20
+ message: Enter how much it costs to book a studio per hour
21
+ - name: not_money_format
22
+ field: physicalStudioBookingCostHourPrice
23
+ message: Price must be a number greater than 0, without units, eg 99.95
@@ -0,0 +1,23 @@
1
+ name: Cost of booking a studio per week
2
+ question: What is th cost (excluding VAT) to book a studio per week?
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ type: pricing
10
+ fields:
11
+ price: physicalStudioBookingCostWeekPrice
12
+
13
+ hidden: true
14
+
15
+ decimal_place_restriction: true
16
+
17
+ validations:
18
+ - name: answer_required
19
+ field: physicalStudioBookingCostWeekPrice
20
+ message: Enter how much it costs to book a studio per week
21
+ - name: not_money_format
22
+ field: physicalStudioBookingCostWeekPrice
23
+ message: Price must be a number greater than 0, without units, eg 99.95
@@ -0,0 +1,37 @@
1
+ name: Cost of booking a studio unit
2
+ question: Select the unit's you would charge by
3
+
4
+ depends:
5
+ - "on": lot
6
+ being:
7
+ - user-research-studios-and-participants
8
+
9
+ type: checkboxes
10
+
11
+ options:
12
+ - label: an hour
13
+ value: hour
14
+ - label: a half day
15
+ value: half_day
16
+ - label: a day
17
+ value: day
18
+ - label: a week
19
+ value: week
20
+
21
+ depends_on_follow_up:
22
+ whatTypesOfUserResearchStudio:
23
+ - physical-location
24
+
25
+ followup:
26
+ physicalStudioBookingCostHour:
27
+ - hour
28
+ physicalStudioBookingCostHalfDay:
29
+ - half_day
30
+ physicalStudioBookingCostDay:
31
+ - day
32
+ physicalStudioBookingCostWeek:
33
+ - week
34
+
35
+ validations:
36
+ - name: answer_required
37
+ message: Select a unit option
@@ -56,9 +56,7 @@ dependent_follow_up:
56
56
  - virtual-studio
57
57
  physicalMinimumStudioTime:
58
58
  - physical-location
59
- physicalStudioBookingCostPrice:
60
- - physical-location
61
- physicalStudioBookingCostUnit:
59
+ physicalStudioBookingUnit:
62
60
  - physical-location
63
61
  physicalMinimumLeadTime:
64
62
  - physical-location
@@ -133,6 +131,14 @@ dependent_follow_up_followup:
133
131
  - physical-location
134
132
  physicalStudioOtherBiometrics:
135
133
  - physical-location
134
+ physicalStudioBookingCostHourPrice:
135
+ - physical-location
136
+ physicalStudioBookingCostHalfDayPrice:
137
+ - physical-location
138
+ physicalStudioBookingCostDayPrice:
139
+ - physical-location
140
+ physicalStudioBookingCostWeekPrice:
141
+ - physical-location
136
142
 
137
143
  validations:
138
144
  -
@@ -87,9 +87,7 @@ dependent_follow_up:
87
87
  - user-research-studios
88
88
  physicalMinimumStudioTime:
89
89
  - user-research-studios
90
- physicalStudioBookingCostPrice:
91
- - user-research-studios
92
- physicalStudioBookingCostUnit:
90
+ physicalStudioBookingUnit:
93
91
  - user-research-studios
94
92
  physicalMinimumLeadTime:
95
93
  - user-research-studios
@@ -169,6 +167,14 @@ dependent_follow_up_followup:
169
167
  - user-research-studios
170
168
  physicalStudioOtherBiometrics:
171
169
  - user-research-studios
170
+ physicalStudioBookingCostHourPrice:
171
+ - user-research-studios
172
+ physicalStudioBookingCostHalfDayPrice:
173
+ - user-research-studios
174
+ physicalStudioBookingCostDayPrice:
175
+ - user-research-studios
176
+ physicalStudioBookingCostWeekPrice:
177
+ - user-research-studios
172
178
 
173
179
  validations:
174
180
  -
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccs-digitalmarketplace-frameworks",
3
- "version": "4.0.4",
3
+ "version": "4.0.6",
4
4
  "description": "Data files for Digital Marketplace’s procurement frameworks",
5
5
  "repository": "git@github.com:Crown-Commercial-Service/ccs-digitalmarketplace-frameworks",
6
6
  "author": "enquiries@digitalmarketplace.service.gov.uk"
@@ -194,11 +194,12 @@ def test_dependent_follow_up_followup(framework, question_set, manifest):
194
194
  if question_id not in expected_questions_with_dependent_follow_up_followup:
195
195
  expected_questions_with_dependent_follow_up_followup[question_id] = {}
196
196
 
197
- expected_questions_with_dependent_follow_up_followup[
198
- question_id
199
- ][
200
- followup_question_id
201
- ] = question_values
197
+ for form_field in loaded_content.get_question(followup_question_id).form_fields:
198
+ expected_questions_with_dependent_follow_up_followup[
199
+ question_id
200
+ ][
201
+ form_field
202
+ ] = question_values
202
203
 
203
204
  for dependent_follow_up_followup_id in question.get("dependent_follow_up_followup", {}).keys():
204
205
  if question_id not in expected_questions_with_dependent_follow_up_followup:
@@ -1,39 +0,0 @@
1
- name: Cost of booking a studio
2
- question: How much does it cost (excluding VAT) to book a studio?
3
-
4
- depends:
5
- - "on": lot
6
- being:
7
- - user-research-studios-and-participants
8
-
9
- type: pricing
10
- fields:
11
- price: physicalStudioBookingCostPrice
12
- price_unit: physicalStudioBookingCostUnit
13
-
14
- decimal_place_restriction: true
15
-
16
- units:
17
- - label: an hour
18
- value: Hour
19
- - label: a half day
20
- value: Half day
21
- - label: a day
22
- value: Day
23
- - label: a week
24
- value: Week
25
-
26
- depends_on_follow_up:
27
- whatTypesOfUserResearchStudio:
28
- - physical-location
29
-
30
- validations:
31
- - name: answer_required
32
- field: physicalStudioBookingCostPrice
33
- message: Enter how much it costs to book a studio
34
- - name: not_money_format
35
- field: physicalStudioBookingCostPrice
36
- message: Price must be a number greater than 0, without units, eg 99.95
37
- - name: answer_required
38
- field: physicalStudioBookingCostUnit
39
- message: You must select the unit