|
1
|
use salarymarket;
|
|
2
|
-- 1) Quiz definition
|
|
3
|
INSERT INTO solution_quiz (id, quizCode, quiz_image, averagetime)
|
|
4
|
VALUES
|
|
5
|
(10, 'quiz_10_Avantages_Annexes', 'Questionnaire 10.png', 15);
|
|
6
|
-- 2) Quiz translations
|
|
7
|
INSERT INTO solution_quiz_translate (quizCode, title, description, short_description, languageId)
|
|
8
|
VALUES
|
|
9
|
('quiz_10_Avantages_Annexes',
|
|
10
|
'Questionnaire 10 – Avantages et Annexes',
|
|
11
|
'Étude des politiques et pratiques des avantages garantis, allocations et annexes',
|
|
12
|
'Étude des avantages garantis, allocations et annexes',
|
|
13
|
2),
|
|
14
|
('quiz_10_Avantages_Annexes',
|
|
15
|
'Quiz 10 – Guaranteed Benefits, Allowances & Annexes',
|
|
16
|
'Survey of guaranteed benefits, allowances, and annexes',
|
|
17
|
'Survey of benefits, allowances & annexes',
|
|
18
|
1);
|
|
19
|
-- 3) Sections
|
|
20
|
INSERT INTO solution_quiz_section (sectionCode, quizCode, section_order)
|
|
21
|
VALUES
|
|
22
|
('General_Policy', 'quiz_10_Avantages_Annexes', 1),
|
|
23
|
('Meal_Benefits', 'quiz_10_Avantages_Annexes', 2),
|
|
24
|
('Health_Insurance', 'quiz_10_Avantages_Annexes', 3),
|
|
25
|
('Retirement_Plan', 'quiz_10_Avantages_Annexes', 4),
|
|
26
|
('Professional_Equipment', 'quiz_10_Avantages_Annexes', 5),
|
|
27
|
('Cultural_Sports_Family', 'quiz_10_Avantages_Annexes', 6);
|
|
28
|
-- 4) Section translations
|
|
29
|
INSERT INTO solution_quiz_section_translate (sectionCode, title, languageId)
|
|
30
|
VALUES
|
|
31
|
('General_Policy', 'Politique Générale', 2),
|
|
32
|
('General_Policy', 'General Policy', 1),
|
|
33
|
('Meal_Benefits', 'Avantage Repas', 2),
|
|
34
|
('Meal_Benefits', 'Meal Benefits', 1),
|
|
35
|
('Health_Insurance', 'Assurance santé & vie', 2),
|
|
36
|
('Health_Insurance', 'Health & Life Insurance', 1),
|
|
37
|
('Retirement_Plan', 'Plan de retraite', 2),
|
|
38
|
('Retirement_Plan', 'Retirement Plan', 1),
|
|
39
|
('Professional_Equipment', 'Avantages en matériel professionnel', 2),
|
|
40
|
('Professional_Equipment', 'Professional Equipment Benefits', 1),
|
|
41
|
('Cultural_Sports_Family', 'Avantages culturels, sportifs et familiaux', 2),
|
|
42
|
('Cultural_Sports_Family', 'Cultural, Sports & Family Benefits', 1);
|
|
43
|
-- 5) Questions & chart types
|
|
44
|
INSERT INTO solution_quiz_section_questions
|
|
45
|
(questionCode, sectionCode, quizCode, idparent, type, question_order, echartType)
|
|
46
|
VALUES
|
|
47
|
-- General Policy
|
|
48
|
('Q10-GP-A', 'General_Policy', 'quiz_10_Avantages_Annexes', NULL, 'CU', 1, 'Pie'),
|
|
49
|
('Q10-GP-B', 'General_Policy', 'quiz_10_Avantages_Annexes', NULL, 'CM', 2, 'Bar'),
|
|
50
|
-- Meal Benefits
|
|
51
|
('Q10-MB-1.1', 'Meal_Benefits', 'quiz_10_Avantages_Annexes', NULL, 'CM_all', 3, 'Table'),
|
|
52
|
('Q10-MB-1.2', 'Meal_Benefits', 'quiz_10_Avantages_Annexes', NULL, 'CM', 4, 'Pie'),
|
|
53
|
('Q10-MB-1.3', 'Meal_Benefits', 'quiz_10_Avantages_Annexes', 'Q10-MB-1.2', 'CU', 5, 'Table'),
|
|
54
|
('Q10-MB-1.4', 'Meal_Benefits', 'quiz_10_Avantages_Annexes', 'Q10-MB-1.2', 'CU', 6, 'Table'),
|
|
55
|
('Q10-MB-1.5', 'Meal_Benefits', 'quiz_10_Avantages_Annexes', NULL, 'CM', 7, 'Table'),
|
|
56
|
-- Health & Life Insurance
|
|
57
|
('Q10-HI-2.1', 'Health_Insurance', 'quiz_10_Avantages_Annexes', NULL, 'CU', 8, 'Pie'),
|
|
58
|
('Q10-HI-2.2', 'Health_Insurance', 'quiz_10_Avantages_Annexes', 'Q10-HI-2.1', 'CU', 9, 'Table'),
|
|
59
|
('Q10-HI-2.3', 'Health_Insurance', 'quiz_10_Avantages_Annexes', NULL, 'CU', 10, 'Bar'),
|
|
60
|
('Q10-HI-2.4', 'Health_Insurance', 'quiz_10_Avantages_Annexes', NULL, 'CU', 11, 'Pie'),
|
|
61
|
('Q10-HI-2.5', 'Health_Insurance', 'quiz_10_Avantages_Annexes', 'Q10-HI-2.4', 'CM', 12, 'Table'),
|
|
62
|
-- Retirement Plan
|
|
63
|
('Q10-RP-3.1', 'Retirement_Plan', 'quiz_10_Avantages_Annexes', NULL, 'CM', 13, 'Pie'),
|
|
64
|
('Q10-RP-3.2', 'Retirement_Plan', 'quiz_10_Avantages_Annexes', 'Q10-RP-3.1', 'CU', 14, 'Pie'),
|
|
65
|
-- Professional Equipment
|
|
66
|
('Q10-PE-3.1', 'Professional_Equipment', 'quiz_10_Avantages_Annexes', NULL, 'CM', 15, 'Bar'),
|
|
67
|
('Q10-PE-3.2', 'Professional_Equipment', 'quiz_10_Avantages_Annexes', NULL, 'CU', 16, 'Pie'),
|
|
68
|
-- Cultural, Sports & Family
|
|
69
|
('Q10-CSF-4.1', 'Cultural_Sports_Family', 'quiz_10_Avantages_Annexes', NULL, 'CU', 17, 'Table'),
|
|
70
|
('Q10-CSF-4.2', 'Cultural_Sports_Family', 'quiz_10_Avantages_Annexes', 'Q10-CSF-4.1', 'CM', 18, 'Pie'),
|
|
71
|
('Q10-CSF-4.3', 'Cultural_Sports_Family', 'quiz_10_Avantages_Annexes', 'Q10-CSF-4.1', 'CU', 18, 'Pie');
|
|
72
|
|
|
73
|
-- 6) Question translations (French & English)
|
|
74
|
INSERT INTO solution_quiz_section_questions_translate (questionCode, title, languageId)
|
|
75
|
VALUES
|
|
76
|
-- General Policy
|
|
77
|
('Q10-GP-A', 'Disposez vous d\'une politique formelle pour les avantages ?', 2),
|
|
78
|
('Q10-GP-A', 'Do you have a formal policy for benefits?', 1),
|
|
79
|
('Q10-GP-B', 'Comment les collaborateurs sont-ils informés de leurs droits aux avantages ?', 2),
|
|
80
|
('Q10-GP-B', 'How are employees informed of their rights to benefits?', 1),
|
|
81
|
-- Meal Benefits
|
|
82
|
('Q10-MB-1.1', 'Quelles catégories de personnel éligibles à l\'avantage repas?', 2),
|
|
83
|
('Q10-MB-1.1', 'Which personnel categories are eligible for meal benefits?', 1),
|
|
84
|
('Q10-MB-1.2', 'Quels types d\'avantages repas sont proposés ?', 2),
|
|
85
|
('Q10-MB-1.2', 'What types of meal benefits are offered?', 1),
|
|
86
|
('Q10-MB-1.3', 'Quelles est la valeur faciale unitaire des tickets restaurant ?', 2),
|
|
87
|
('Q10-MB-1.3', 'What is the unit face value of meal tickets?', 1),
|
|
88
|
('Q10-MB-1.4', 'Quel est le nombre de tickets servis mensuellement ?', 2),
|
|
89
|
('Q10-MB-1.4', 'How many meal tickets are served monthly?', 1),
|
|
90
|
('Q10-MB-1.5', 'Des équipements sont-ils mis à disposition pour la prise ou la préparation des repas sur site ?', 2),
|
|
91
|
('Q10-MB-1.5', 'Are facilities provided for on-site meal preparation or consumption?', 1),
|
|
92
|
-- Health & Life Insurance
|
|
93
|
('Q10-HI-2.1', 'Votre entreprise propose-t-elle une couverture santé complémentaire ?', 2),
|
|
94
|
('Q10-HI-2.1', 'Does your company offer supplementary health coverage?', 1),
|
|
95
|
('Q10-HI-2.2', 'Quel est le niveau de prise en charge de la cotisation santé par l’employeur ?', 2),
|
|
96
|
('Q10-HI-2.2', 'What is the employer\'s share of health insurance contributions?', 1),
|
|
97
|
('Q10-HI-2.3', 'Quelle type d\'assurance proposez-vous ?', 2),
|
|
98
|
('Q10-HI-2.3', 'What type of insurance do you offer?', 1),
|
|
99
|
('Q10-HI-2.4', 'Proposez vous une Assurance vie ?', 2),
|
|
100
|
('Q10-HI-2.4', 'Do you offer life insurance?', 1),
|
|
101
|
('Q10-HI-2.5', 'Quelles catégories professionnelles bénéficient de l\'assurance vie?', 2),
|
|
102
|
('Q10-HI-2.5', 'Which professional categories benefit from life insurance?', 1),
|
|
103
|
-- Retirement Plan
|
|
104
|
('Q10-RP-3.1', 'Disposez-vous d’un dispositif de retraite complémentaire ?', 2),
|
|
105
|
('Q10-RP-3.1', 'Do you have a supplementary retirement plan?', 1),
|
|
106
|
('Q10-RP-3.2', 'Votre entreprise prend t-elle en charge les frais de participation au dispositif de retraite complémentaire ?', 2),
|
|
107
|
('Q10-RP-3.2', 'Does your company cover the costs of participation in the supplementary retirement plan?', 1),
|
|
108
|
-- Professional Equipment
|
|
109
|
('Q10-PE-3.1', 'Des équipements sont-ils mis à disposition individuelle pour l\'exécution du travail ?', 2),
|
|
110
|
('Q10-PE-3.1', 'Are individual equipment provided for work execution?', 1),
|
|
111
|
('Q10-PE-3.2', 'L’usage personnel de ces équipements est-il autorisé ?', 2),
|
|
112
|
('Q10-PE-3.2', 'Is personal use of this equipment allowed?', 1),
|
|
113
|
-- Cultural, Sports & Family
|
|
114
|
('Q10-CSF-4.2', 'Quels types d’avantages annexes sont proposés à titre de bien-être ou de motivation ?', 2),
|
|
115
|
('Q10-CSF-4.2', 'What types of additional benefits are offered for well-being or motivation?', 1),
|
|
116
|
('Q10-CSF-4.3', 'Les avantages sont-ils accessibles à tous les salariés ?', 2),
|
|
117
|
('Q10-CSF-4.3', 'Are the benefits accessible to all employees?', 1),
|
|
118
|
('Q10-CSF-4.1', 'Votre société propose t''elle des avantages annexes à titres de bien-être ou de motivation?', 2),
|
|
119
|
('Q10-CSF-4.1', 'Does your company offer additional benefits for well-being or motivation?', 1);
|
|
120
|
-- 7)
|
|
121
|
-- Only new items for Q10
|
|
122
|
INSERT INTO solution_reponses_items (itemCode, itemName)
|
|
123
|
VALUES
|
|
124
|
('onboarding_contract', 'At hiring (HR booklet/contract)'),
|
|
125
|
('intranet_portal', 'Via HR intranet or employee portal'),
|
|
126
|
('manager_communication', 'By managerial communication'),
|
|
127
|
('no_formal_communication', 'No formal communication'),
|
|
128
|
('meal_voucher', 'Meal vouchers / Magnetic cards'),
|
|
129
|
('company_canteen', 'Company canteen/cafeteria'),
|
|
130
|
('other_meal_benefit', 'Other meal-related benefits (please specify)'),
|
|
131
|
('meal_3tnd', '3 TND'),
|
|
132
|
('meal_4tnd', '4 TND'),
|
|
133
|
('meal_5tnd', '5 TND'),
|
|
134
|
('meal_6tnd', '6 TND'),
|
|
135
|
('meal_7tnd', '7 TND'),
|
|
136
|
('meal_8tnd', '8 TND'),
|
|
137
|
('meal_10tnd', '10 TND'),
|
|
138
|
('meal_20', '20'),
|
|
139
|
('meal_22', '22'),
|
|
140
|
('meal_24', '24'),
|
|
141
|
('100_percent', '100%'),
|
|
142
|
('75_percent', '75%'),
|
|
143
|
('66_percent', '66%'),
|
|
144
|
('50_percent', '50%'),
|
|
145
|
('equipped_kitchen', 'Equipped kitchen or meal area'),
|
|
146
|
('microwave', 'Microwave'),
|
|
147
|
('refrigerator', 'Refrigerator'),
|
|
148
|
('coffee_machine', 'Coffee/tea machine'),
|
|
149
|
('snack_vending', 'Snack and drink vending machines'),
|
|
150
|
('no_equipment', 'No equipment'),
|
|
151
|
('mandatory_health', 'Yes, mandatory for all'),
|
|
152
|
('optional_health', 'Yes, optional'),
|
|
153
|
('health_insurance', 'Health insurance'),
|
|
154
|
('health_life_insurance', 'Health/life insurance'),
|
|
155
|
('health_life_disability', 'Health/Life/Disability insurance'),
|
|
156
|
('life_option', 'Optional for certain positions'),
|
|
157
|
('seniority_based', 'Based on seniority'),
|
|
158
|
('cavis_plan', 'Yes, supplementary retirement (CAVIS)'),
|
|
159
|
('individual_retirement', 'Yes, individual retirement plan'),
|
|
160
|
('variable_by_seniority', 'Variable by seniority or status'),
|
|
161
|
('work_phone', 'Work phone'),
|
|
162
|
('laptop', 'Laptop'),
|
|
163
|
('home_internet', 'Home internet/subscription'),
|
|
164
|
('no_equipment_assigned', 'No equipment assigned'),
|
|
165
|
('partial_use', 'Partially (restricted use)'),
|
|
166
|
('gym_membership', 'Gym membership'),
|
|
167
|
('cultural_activities', 'Participation in cultural activities (cinema, theater, museums)'),
|
|
168
|
('sports_team_building', 'Organization of sports or team building activities'),
|
|
169
|
('holiday_vouchers', 'Holiday vouchers'),
|
|
170
|
('childcare_services', 'Childcare support services'),
|
|
171
|
('school_fees', 'School fees coverage (dependent children)'),
|
|
172
|
('category_dependent', 'No, depends on job category'),
|
|
173
|
('seniority_dependent', 'No, depends on seniority');
|
|
174
|
-- French and English translations for new items
|
|
175
|
INSERT INTO solution_quiz_question_items_translate (itemCode, itemValue, languageId)
|
|
176
|
VALUES
|
|
177
|
('onboarding_contract', 'A l’embauche (livret RH / contrat)', 2), ('onboarding_contract', 'At hiring (HR booklet/contract)', 1),
|
|
178
|
('intranet_portal', 'Via l’intranet RH ou portail salariés', 2), ('intranet_portal', 'Via HR intranet or employee portal', 1),
|
|
179
|
('manager_communication', 'Par communication managériale', 2), ('manager_communication', 'By managerial communication', 1),
|
|
180
|
('no_formal_communication', 'Aucune communication formalisée', 2), ('no_formal_communication', 'No formal communication', 1),
|
|
181
|
('meal_voucher', 'Tickets restaurant / Cartes magnétiques', 2), ('meal_voucher', 'Meal vouchers / Magnetic cards', 1),
|
|
182
|
('company_canteen', 'Cantine ou cafétéria d\'entreprise', 2), ('company_canteen', 'Company canteen/cafeteria', 1),
|
|
183
|
('other_meal_benefit', 'Autres avantages liés au repas (veuillez préciser)', 2), ('other_meal_benefit', 'Other meal-related benefits (please specify)', 1),
|
|
184
|
('meal_3tnd', '3 TND', 2), ('meal_3tnd', '3 TND', 1),
|
|
185
|
('meal_4tnd', '4 TND', 2), ('meal_4tnd', '4 TND', 1),
|
|
186
|
('meal_5tnd', '5 TND', 2), ('meal_5tnd', '5 TND', 1),
|
|
187
|
('meal_6tnd', '6 TND', 2), ('meal_6tnd', '6 TND', 1),
|
|
188
|
('meal_7tnd', '7 TND', 2), ('meal_7tnd', '7 TND', 1),
|
|
189
|
('meal_8tnd', '8 TND', 2), ('meal_8tnd', '8 TND', 1),
|
|
190
|
('meal_10tnd', '10 TND', 2), ('meal_10tnd', '10 TND', 1),
|
|
191
|
('100_percent', '100%', 2), ('100_percent', '100%', 1),
|
|
192
|
('75_percent', '75%', 2), ('75_percent', '75%', 1),
|
|
193
|
('66_percent', '66%', 2), ('66_percent', '66%', 1),
|
|
194
|
('50_percent', '50%', 2), ('50_percent', '50%', 1),
|
|
195
|
('meal_20', '20', 2), ('meal_20', '20', 1),
|
|
196
|
('meal_22', '22', 2), ('meal_22', '22', 1),
|
|
197
|
('meal_24', '24', 2), ('meal_24', '24', 1),
|
|
198
|
('equipped_kitchen', 'Cuisine ou coin repas équipé', 2), ('equipped_kitchen', 'Equipped kitchen or meal area', 1),
|
|
199
|
('microwave', 'Micro-ondes', 2), ('microwave', 'Microwave', 1),
|
|
200
|
('refrigerator', 'Réfrigérateurs', 2), ('refrigerator', 'Refrigerator', 1),
|
|
201
|
('coffee_machine', 'Machine à café / thé', 2), ('coffee_machine', 'Coffee/tea machine', 1),
|
|
202
|
('snack_vending', 'Distributeurs automatiques de snacks et boissons', 2), ('snack_vending', 'Snack and drink vending machines', 1),
|
|
203
|
('no_equipment', 'Aucun équipement', 2), ('no_equipment', 'No equipment', 1),
|
|
204
|
('mandatory_health', 'Oui, obligatoire pour tous', 2), ('mandatory_health', 'Yes, mandatory for all', 1),
|
|
205
|
('optional_health', 'Oui, facultative', 2), ('optional_health', 'Yes, optional', 1),
|
|
206
|
('health_insurance', 'Assurance maladie', 2), ('health_insurance', 'Health insurance', 1),
|
|
207
|
('health_life_insurance', 'Assurance maladie/Décès', 2), ('health_life_insurance', 'Health/life insurance', 1),
|
|
208
|
('health_life_disability', 'Assurance Maladie/Décès/Invalidité', 2), ('health_life_disability', 'Health/Life/Disability insurance', 1),
|
|
209
|
('life_option', 'En option pour certains postes', 2), ('life_option', 'Optional for certain positions', 1),
|
|
210
|
('seniority_based', 'A partir d’un certain niveau d’ancienneté', 2), ('seniority_based', 'Based on seniority', 1),
|
|
211
|
('cavis_plan', 'Oui, retraite complémentaire (CAVIS)', 2), ('cavis_plan', 'Yes, supplementary retirement (CAVIS)', 1),
|
|
212
|
('individual_retirement', 'Oui, Plan retraite individuel', 2), ('individual_retirement', 'Yes, individual retirement plan', 1),
|
|
213
|
('variable_by_seniority', 'Variable selon ancienneté ou statut', 2), ('variable_by_seniority', 'Variable by seniority or status', 1),
|
|
214
|
('work_phone', 'Téléphone professionnel', 2), ('work_phone', 'Work phone', 1),
|
|
215
|
('laptop', 'Ordinateur portable', 2), ('laptop', 'Laptop', 1),
|
|
216
|
('home_internet', 'Connexion internet / abonnement à domicile', 2), ('home_internet', 'Home internet/subscription', 1),
|
|
217
|
('no_equipment_assigned', 'Aucun matériel attribué', 2), ('no_equipment_assigned', 'No equipment assigned', 1),
|
|
218
|
('partial_use', 'Partiellement (usage encadré)', 2), ('partial_use', 'Partially (restricted use)', 1),
|
|
219
|
('gym_membership', 'Abonnement à une salle de sport', 2), ('gym_membership', 'Gym membership', 1),
|
|
220
|
('cultural_activities', 'Participation à des activités culturelles (cinéma, théâtre, musées)', 2), ('cultural_activities', 'Participation in cultural activities (cinema, theater, museums)', 1),
|
|
221
|
('sports_team_building', 'Organisation d’activités sportives ou de team building', 2), ('sports_team_building', 'Organization of sports or team building activities', 1),
|
|
222
|
('holiday_vouchers', 'Chèques vacances', 2), ('holiday_vouchers', 'Holiday vouchers', 1),
|
|
223
|
('childcare_services', 'Services d\'aide à la garde d’enfants', 2), ('childcare_services', 'Childcare support services', 1),
|
|
224
|
('school_fees', 'Prise en charge de frais de scolarité (enfants à charge)', 2), ('school_fees', 'School fees coverage (dependent children)', 1),
|
|
225
|
('category_dependent', 'Non, ils dépendent de la catégorie de poste', 2), ('category_dependent', 'No, depends on job category', 1),
|
|
226
|
('seniority_dependent', 'Non, ils dépendent de l’ancienneté', 2), ('seniority_dependent', 'No, depends on seniority', 1);
|
|
227
|
-- General Policy
|
|
228
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
229
|
('yes', 'Q10-GP-A', NULL, 0),
|
|
230
|
('no', 'Q10-GP-A', NULL, 0),
|
|
231
|
('in_progress', 'Q10-GP-A', NULL, 0);
|
|
232
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
233
|
('onboarding_contract', 'Q10-GP-B', NULL, 0),
|
|
234
|
('intranet_portal', 'Q10-GP-B', NULL, 0),
|
|
235
|
('manager_communication', 'Q10-GP-B', NULL, 0),
|
|
236
|
('no_formal_communication', 'Q10-GP-B', NULL, 0);
|
|
237
|
-- Meal Benefits
|
|
238
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
239
|
('executives', 'Q10-MB-1.1', NULL, 0),
|
|
240
|
('middle_managers', 'Q10-MB-1.1', NULL, 0),
|
|
241
|
('managers', 'Q10-MB-1.1', NULL, 0),
|
|
242
|
('commercial', 'Q10-MB-1.1', NULL, 0),
|
|
243
|
('professionals', 'Q10-MB-1.1', NULL, 0),
|
|
244
|
('support_tech', 'Q10-MB-1.1', NULL, 0),
|
|
245
|
('support_professional', 'Q10-MB-1.1', NULL, 0),
|
|
246
|
('labor', 'Q10-MB-1.1', NULL, 0);
|
|
247
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
248
|
('meal_voucher', 'Q10-MB-1.2', NULL, 0),
|
|
249
|
('company_canteen', 'Q10-MB-1.2', NULL, 0),
|
|
250
|
('other_meal_benefit', 'Q10-MB-1.2', NULL, 1);
|
|
251
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
252
|
('meal_3tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
253
|
('meal_4tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
254
|
('meal_5tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
255
|
('meal_6tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
256
|
('meal_7tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
257
|
('meal_8tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
258
|
('meal_10tnd', 'Q10-MB-1.3', 'meal_voucher', 0),
|
|
259
|
('other-please-specify', 'Q10-MB-1.3', 'meal_voucher', 1);
|
|
260
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
261
|
('meal_20', 'Q10-MB-1.4', 'meal_voucher', 0),
|
|
262
|
('meal_22', 'Q10-MB-1.4', 'meal_voucher', 0),
|
|
263
|
('meal_24', 'Q10-MB-1.4', 'meal_voucher', 0),
|
|
264
|
('other-please-specify', 'Q10-MB-1.4', 'meal_voucher', 1);
|
|
265
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
266
|
('equipped_kitchen', 'Q10-MB-1.5', NULL, 0),
|
|
267
|
('microwave', 'Q10-MB-1.5', NULL, 0),
|
|
268
|
('refrigerator', 'Q10-MB-1.5', NULL, 0),
|
|
269
|
('coffee_machine', 'Q10-MB-1.5', NULL, 0),
|
|
270
|
('snack_vending', 'Q10-MB-1.5', NULL, 0),
|
|
271
|
('no_equipment', 'Q10-MB-1.5', NULL, 0);
|
|
272
|
-- Health & Life Insurance
|
|
273
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
274
|
('mandatory_health', 'Q10-HI-2.1', NULL, 0),
|
|
275
|
('optional_health', 'Q10-HI-2.1', NULL, 0),
|
|
276
|
('no', 'Q10-HI-2.1', NULL, 0);
|
|
277
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
278
|
('100_percent', 'Q10-HI-2.2','mandatory_health', 0),
|
|
279
|
('75_percent', 'Q10-HI-2.2', 'mandatory_health', 0),
|
|
280
|
('66_percent', 'Q10-HI-2.2', 'mandatory_health', 0),
|
|
281
|
('50_percent', 'Q10-HI-2.2', 'mandatory_health', 0),
|
|
282
|
('other-please-specify', 'Q10-HI-2.2', 'mandatory_health', 1),
|
|
283
|
('no', 'Q10-HI-2.2','mandatory_health', 0),
|
|
284
|
|
|
285
|
('100_percent', 'Q10-HI-2.2','optional_health', 0),
|
|
286
|
('75_percent', 'Q10-HI-2.2', 'optional_health', 0),
|
|
287
|
('66_percent', 'Q10-HI-2.2', 'optional_health', 0),
|
|
288
|
('50_percent', 'Q10-HI-2.2', 'optional_health', 0),
|
|
289
|
('other-please-specify', 'Q10-HI-2.2', 'optional_health', 1),
|
|
290
|
('no', 'Q10-HI-2.2','optional_health', 0);
|
|
291
|
|
|
292
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
293
|
('health_insurance', 'Q10-HI-2.3', NULL, 0),
|
|
294
|
('health_life_insurance', 'Q10-HI-2.3', NULL, 0),
|
|
295
|
('health_life_disability', 'Q10-HI-2.3', NULL, 0);
|
|
296
|
|
|
297
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
298
|
('yes', 'Q10-HI-2.4', NULL, 0),
|
|
299
|
('no', 'Q10-HI-2.4', NULL, 0),
|
|
300
|
('life_option', 'Q10-HI-2.4', NULL, 0);
|
|
301
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
302
|
('executives', 'Q10-HI-2.5', 'yes', 0),
|
|
303
|
('middle_managers', 'Q10-HI-2.5', 'yes', 0),
|
|
304
|
('managers', 'Q10-HI-2.5', 'yes', 0),
|
|
305
|
('seniority_based', 'Q10-HI-2.5', 'yes', 0),
|
|
306
|
('other-please-specify', 'Q10-HI-2.5', 'yes', 1),
|
|
307
|
|
|
308
|
('executives', 'Q10-HI-2.5', 'life_option', 0),
|
|
309
|
('middle_managers', 'Q10-HI-2.5', 'life_option', 0),
|
|
310
|
('managers', 'Q10-HI-2.5', 'life_option', 0),
|
|
311
|
('seniority_based', 'Q10-HI-2.5', 'life_option', 0),
|
|
312
|
('other-please-specify', 'Q10-HI-2.5', 'life_option', 1);
|
|
313
|
-- Retirement Plan
|
|
314
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
315
|
('cavis_plan', 'Q10-RP-3.1', NULL, 0),
|
|
316
|
('individual_retirement', 'Q10-RP-3.1', NULL, 0),
|
|
317
|
('other-please-specify', 'Q10-RP-3.1', NULL, 1);
|
|
318
|
|
|
319
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
320
|
('yes', 'Q10-RP-3.2', 'cavis_plan', 0),
|
|
321
|
('no', 'Q10-RP-3.2', 'cavis_plan', 0),
|
|
322
|
('variable_by_seniority', 'Q10-RP-3.2', 'cavis_plan', 0);
|
|
323
|
|
|
324
|
-- Professional Equipment
|
|
325
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
326
|
('work_phone', 'Q10-PE-3.1', NULL, 0),
|
|
327
|
('laptop', 'Q10-PE-3.1', NULL, 0),
|
|
328
|
('home_internet', 'Q10-PE-3.1', NULL, 0),
|
|
329
|
('no_equipment_assigned', 'Q10-PE-3.1', NULL, 0);
|
|
330
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
331
|
('yes', 'Q10-PE-3.2', NULL, 0),
|
|
332
|
('partial_use', 'Q10-PE-3.2', NULL, 0),
|
|
333
|
('no', 'Q10-PE-3.2', NULL, 0);
|
|
334
|
-- Cultural, Sports & Family
|
|
335
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
336
|
('yes', 'Q10-CSF-4.1', NULL, 0),
|
|
337
|
('no', 'Q10-CSF-4.1', NULL, 0);
|
|
338
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
339
|
('gym_membership', 'Q10-CSF-4.2', 'yes', 0),
|
|
340
|
('cultural_activities', 'Q10-CSF-4.2', 'yes', 0),
|
|
341
|
('sports_team_building', 'Q10-CSF-4.2', 'yes', 0),
|
|
342
|
('holiday_vouchers', 'Q10-CSF-4.2', 'yes', 0),
|
|
343
|
('childcare_services', 'Q10-CSF-4.2', 'yes', 0),
|
|
344
|
('school_fees', 'Q10-CSF-4.2', 'yes', 0),
|
|
345
|
('other-please-specify', 'Q10-CSF-4.2', 'yes', 1);
|
|
346
|
INSERT INTO solution_quiz_section_questions_items (itemCode, questionCode, itemParentId, isOther) VALUES
|
|
347
|
('yes', 'Q10-CSF-4.3', 'yes', 0),
|
|
348
|
('category_dependent', 'Q10-CSF-4.3', 'yes', 0),
|
|
349
|
('seniority_dependent', 'Q10-CSF-4.3', 'yes', 0),
|
|
350
|
('other-please-specify', 'Q10-CSF-4.3', 'yes', 1);
|