Repair Service Feedback Form

Collect actionable feedback on your repair services with this comprehensive form. Measure repair quality, evaluate technician professionalism, track turnaround time satisfaction, and identify improvement opportunities. Features Customer Effort Score (CES) to understand how easy the repair process was for customers, plus conditional follow-ups for detailed insights.

Service & Support

Try the Form

Help us improve our service by sharing your repair experience.
Service Details
 
 
 
Repair Outcome
 
Service Ease
Very difficult
Very easy
 
Technician Evaluation
Rate your experience with the technician
Poor Fair Good Very Good Excellent
Professionalism*
Technical Knowledge*
Communication*
Punctuality
Quality of Work*
Service Quality
0/5
0/5
0/5
0/5
Overall Satisfaction
Not at all likely
Extremely likely
 
 
Follow-Up
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
export function repairServiceFeedback(form: FormTs) {
// Repair Service Feedback - Comprehensive service quality assessment
// Demonstrates: RatingScale (CES), StarRating, ThumbRating, MatrixQuestion, Datepicker, dynamic labels
 
// ============================================
// HEADER
// ============================================
form.addRow(row => {
row.addTextPanel('header', {
label: 'Repair Service Feedback',
computedValue: () => 'Help us improve our service by sharing your repair experience.',
customStyles: {
backgroundColor: '#0284c7',
color: 'white',
padding: '24px',
borderRadius: '12px',
textAlign: 'center'
}
});
});
 
// ============================================
// SECTION 1: Service Details
// ============================================
const serviceSection = form.addSubform('serviceDetails', {
title: 'Service Details'
});
 
serviceSection.addRow(row => {
row.addDropdown('serviceType', {
label: 'What type of repair service did you receive?',
options: [
{ id: 'electronics', name: 'Electronics Repair' },
{ id: 'appliance', name: 'Appliance Repair' },
{ id: 'computer', name: 'Computer/Laptop Repair' },
{ id: 'phone', name: 'Phone/Tablet Repair' },
{ id: 'hvac', name: 'HVAC/Heating/Cooling' },
{ id: 'plumbing', name: 'Plumbing' },
{ id: 'electrical', name: 'Electrical' },
{ id: 'automotive', name: 'Automotive' },
{ id: 'other', name: 'Other' }
],
isRequired: true,
placeholder: 'Select service type...'
}, '1fr');
row.addDatepicker('serviceDate', {
label: 'Service completion date',
isRequired: true,
maxDate: () => new Date().toISOString().split('T')[0]
}, '1fr');
});
 
serviceSection.addRow(row => {
row.addTextbox('technicianName', {
label: 'Technician name (if known)',
placeholder: 'Enter technician name...'
}, '1fr');
row.addTextbox('ticketNumber', {
label: 'Service ticket/order number',
placeholder: 'e.g., SR-12345'
}, '1fr');
});
 
// ============================================
// SECTION 2: Repair Outcome
// ============================================
const outcomeSection = form.addSubform('repairOutcome', {
title: 'Repair Outcome'
});
 
outcomeSection.addRow(row => {
row.addRadioButton('repairResolved', {
label: 'Was your issue fully resolved?',
options: [
{ id: 'yes', name: 'Yes, completely resolved' },
{ id: 'partial', name: 'Partially resolved' },
{ id: 'no', name: 'No, issue persists' }
],
orientation: 'vertical',
isRequired: true
});
});
 
// Conditional: If not fully resolved
const unresolvedSection = outcomeSection.addSubform('unresolvedDetails', {
title: 'Tell us more about the issue',
isVisible: () => {
const resolved = outcomeSection.radioButton('repairResolved')?.value();
return resolved === 'partial' || resolved === 'no';
},
customStyles: { backgroundColor: '#fef2f2', padding: '16px', borderRadius: '8px' }
});
 
unresolvedSection.addRow(row => {
row.addCheckboxList('unresolvedReasons', {
label: 'What issues remain?',
options: [
{ id: 'same-problem', name: 'Same problem returned' },
{ id: 'new-problem', name: 'New problem appeared' },
{ id: 'incomplete', name: 'Repair was incomplete' },
{ id: 'wrong-diagnosis', name: 'Wrong diagnosis' },
{ id: 'parts-issue', name: 'Parts not available' }
],
orientation: 'vertical'
});
});
 
unresolvedSection.addRow(row => {
row.addTextarea('unresolvedDescription', {
label: 'Please describe the remaining issue',
placeholder: 'Describe what is still not working...',
rows: 3,
isRequired: true
});
});
 
// ============================================
// SECTION 3: Customer Effort Score
// ============================================
const cesSection = form.addSubform('effortScore', {
title: 'Service Ease'
});
 
cesSection.addRow(row => {
row.addRatingScale('ces', {
label: 'How easy was it to get your item repaired?',
preset: 'ces',
alignment: 'center',
isRequired: true
});
});
 
// Effort details (conditional based on CES)
cesSection.addRow(row => {
row.addSuggestionChips('effortFactors', {
label: () => {
const ces = cesSection.ratingScale('ces')?.value();
if (ces && ces <= 3) return 'What made the process difficult?';
if (ces && ces >= 5) return 'What made the process easy?';
return 'What factors affected your experience?';
},
suggestions: () => {
const ces = cesSection.ratingScale('ces')?.value();
if (ces && ces <= 3) {
return [
{ id: 'scheduling', name: 'Hard to schedule' },
{ id: 'wait-time', name: 'Long wait time' },
{ id: 'communication', name: 'Poor communication' },
{ id: 'location', name: 'Inconvenient location' },
{ id: 'multiple-visits', name: 'Multiple visits needed' },
{ id: 'paperwork', name: 'Too much paperwork' }
];
}
return [
{ id: 'easy-booking', name: 'Easy booking' },
{ id: 'fast-service', name: 'Fast service' },
{ id: 'good-communication', name: 'Clear communication' },
{ id: 'convenient', name: 'Convenient location' },
{ id: 'one-visit', name: 'Fixed in one visit' },
{ id: 'pickup-delivery', name: 'Pickup/delivery available' }
];
},
isVisible: () => cesSection.ratingScale('ces')?.value() !== null,
alignment: 'center'
});
});
 
// ============================================
// SECTION 4: Technician Evaluation
// ============================================
const techSection = form.addSubform('technicianEval', {
title: 'Technician Evaluation',
isVisible: () => serviceSection.textbox('technicianName')?.value()?.trim() !== ''
});
 
techSection.addRow(row => {
row.addTextPanel('techInfo', {
computedValue: () => {
const name = serviceSection.textbox('technicianName')?.value();
return `Rate your experience with ${name || 'the technician'}`;
},
customStyles: { fontStyle: 'italic', color: '#64748b', marginBottom: '8px' }
});
});
 
techSection.addRow(row => {
row.addMatrixQuestion('technicianRatings', {
label: 'Please rate the technician on the following',
rows: [
{ id: 'professionalism', label: 'Professionalism', isRequired: true },
{ id: 'knowledge', label: 'Technical Knowledge', isRequired: true },
{ id: 'communication', label: 'Communication', isRequired: true },
{ id: 'punctuality', label: 'Punctuality', isRequired: false },
{ id: 'workmanship', label: 'Quality of Work', isRequired: true }
],
columns: [
{ id: '1', label: 'Poor' },
{ id: '2', label: 'Fair' },
{ id: '3', label: 'Good' },
{ id: '4', label: 'Very Good' },
{ id: '5', label: 'Excellent' }
],
fullWidth: true
});
});
 
// ============================================
// SECTION 5: Service Quality Ratings
// ============================================
const qualitySection = form.addSubform('qualityRatings', {
title: 'Service Quality'
});
 
qualitySection.addRow(row => {
row.addStarRating('repairQuality', {
label: 'Quality of Repair',
maxStars: 5,
size: 'lg',
showConfettiOnMax: true
}, '1fr');
row.addStarRating('turnaroundTime', {
label: 'Turnaround Time',
maxStars: 5,
size: 'lg'
}, '1fr');
});
 
qualitySection.addRow(row => {
row.addStarRating('communicationRating', {
label: 'Communication & Updates',
maxStars: 5,
size: 'lg'
}, '1fr');
row.addStarRating('pricingTransparency', {
label: 'Pricing Transparency',
maxStars: 5,
size: 'lg'
}, '1fr');
});
 
// Pricing satisfaction
qualitySection.addRow(row => {
row.addThumbRating('priceFair', {
label: 'Was the final price fair for the service provided?',
showLabels: true,
upLabel: 'Yes, fair price',
downLabel: 'No, too expensive',
alignment: 'center'
});
});
 
// Price concern follow-up
qualitySection.addRow(row => {
row.addTextarea('priceComments', {
label: 'What would you consider a fair price?',
placeholder: 'Share your thoughts on pricing...',
rows: 2,
isVisible: () => qualitySection.thumbRating('priceFair')?.value() === 'down'
});
});
 
// ============================================
// SECTION 6: Overall Satisfaction
// ============================================
const overallSection = form.addSubform('overallSatisfaction', {
title: 'Overall Satisfaction'
});
 
overallSection.addRow(row => {
row.addRatingScale('npsScore', {
label: 'How likely are you to recommend our repair service?',
preset: 'nps',
showCategoryLabel: true,
showSegmentColors: true,
alignment: 'center',
isRequired: true
});
});
 
overallSection.addRow(row => {
row.addRadioButton('wouldUseAgain', {
label: 'Would you use our repair service again?',
options: [
{ id: 'definitely', name: 'Definitely' },
{ id: 'probably', name: 'Probably' },
{ id: 'not-sure', name: 'Not sure' },
{ id: 'probably-not', name: 'Probably not' },
{ id: 'no', name: 'No' }
],
orientation: 'horizontal'
});
});
 
// Comments section
overallSection.addSpacer({ height: '16px' });
overallSection.addRow(row => {
row.addTextarea('comments', {
label: () => {
const nps = overallSection.ratingScale('npsScore')?.npsCategory();
if (nps === 'promoter') return 'What did we do well? Share your positive experience!';
if (nps === 'detractor') return 'How can we make things right? Your feedback helps us improve.';
return 'Any additional comments or suggestions?';
},
placeholder: 'Share your thoughts...',
rows: 4,
autoExpand: true
});
});
 
// ============================================
// SECTION 7: Contact Permission
// ============================================
const contactSection = form.addSubform('contactSection', {
title: 'Follow-Up'
});
 
contactSection.addRow(row => {
row.addCheckbox('allowFollowUp', {
label: 'A manager may contact me to discuss my feedback'
});
});
 
contactSection.addRow(row => {
row.addEmail('contactEmail', {
label: 'Email address',
placeholder: 'your@email.com',
isVisible: () => contactSection.checkbox('allowFollowUp')?.value() === true,
isRequired: () => contactSection.checkbox('allowFollowUp')?.value() === true
}, '1fr');
row.addTextbox('contactPhone', {
label: 'Phone number (optional)',
placeholder: 'Your phone number',
isVisible: () => contactSection.checkbox('allowFollowUp')?.value() === true
}, '1fr');
});
 
// ============================================
// SECTION 8: Summary
// ============================================
const summarySection = form.addSubform('summary', {
title: 'Feedback Summary',
isVisible: () => overallSection.ratingScale('npsScore')?.value() !== null
});
 
summarySection.addRow(row => {
row.addTextPanel('summaryContent', {
computedValue: () => {
const nps = overallSection.ratingScale('npsScore')?.value();
const category = overallSection.ratingScale('npsScore')?.npsCategory();
const ces = cesSection.ratingScale('ces')?.value();
const resolved = outcomeSection.radioButton('repairResolved')?.value();
const repairQuality = qualitySection.starRating('repairQuality')?.value();
 
if (nps === null || nps === undefined) return '';
 
let emoji = category === 'promoter' ? '🔧' : category === 'passive' ? '🛠️' : '⚠️';
let summary = `${emoji} Service Feedback Summary\n`;
summary += `${'═'.repeat(28)}\n\n`;
 
// Resolution status
const resolvedLabels: Record<string, string> = {
'yes': '✅ Issue Resolved',
'partial': '⚠️ Partially Resolved',
'no': '❌ Issue Not Resolved'
};
if (resolved) {
summary += `${resolvedLabels[resolved] || resolved}\n`;
}
 
// CES
if (ces !== null && ces !== undefined) {
const effort = ces >= 5 ? 'Easy' : ces >= 3 ? 'Moderate' : 'Difficult';
summary += `Effort Level: ${effort} (${ces}/7)\n`;
}
 
// Repair quality
if (repairQuality) {
summary += `Repair Quality: ${'★'.repeat(repairQuality)}${'☆'.repeat(5 - repairQuality)}\n`;
}
 
// NPS
summary += `\nRecommendation: ${nps}/10 (${category})`;
 
return summary;
},
customStyles: () => {
const category = overallSection.ratingScale('npsScore')?.npsCategory();
const base = {
padding: '16px',
borderRadius: '8px',
whiteSpace: 'pre-wrap',
fontFamily: 'monospace',
fontSize: '14px'
};
if (category === 'promoter') return { ...base, backgroundColor: '#d1fae5', borderLeft: '4px solid #10b981' };
if (category === 'passive') return { ...base, backgroundColor: '#fef3c7', borderLeft: '4px solid #f59e0b' };
return { ...base, backgroundColor: '#fee2e2', borderLeft: '4px solid #ef4444' };
}
});
});
 
// ============================================
// FORM CONFIGURATION
// ============================================
form.configureSubmitButton({
label: 'Submit Feedback',
isVisible: () => overallSection.ratingScale('npsScore')?.value() !== null
});
 
form.configureCompletionScreen({
type: 'text',
title: 'Thank You for Your Feedback!',
message: 'Your feedback helps us deliver better repair services. We appreciate you taking the time to share your experience with us.'
});
}
 

Frequently Asked Questions

What types of repair services is this form suitable for?

This form works for any repair business - electronics, appliances, automotive, HVAC, plumbing, computer repair, phone repair, and more. Simply customize the service type dropdown and repair categories to match your business.

How does the Customer Effort Score (CES) work?

CES measures how easy or difficult the customer found the repair process. Using a 1-7 scale from 'Very Difficult' to 'Very Easy', it helps identify friction points in your service journey that may need improvement.

Can I track individual technician performance?

Yes, the form includes a technician name field and multi-dimensional ratings for professionalism, knowledge, communication, and workmanship. You can use this data to identify training needs and recognize top performers.

What happens if the repair wasn't successful?

The form includes conditional logic that shows detailed follow-up questions when customers indicate the repair wasn't fully resolved. This helps capture specific issues for service recovery.

How long does this form take to complete?

Most customers complete it in 2-3 minutes. The conditional logic ensures they only see relevant questions based on their experience, keeping it focused and efficient.

Can customers attach photos of issues?

The current template focuses on ratings and text feedback. For photo uploads, you can extend the form in the editor or integrate with your existing ticket system for attachments.