Spaces:
Sleeping
Sleeping
File size: 17,093 Bytes
456b2e2 | 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 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 | # Ticket Completion System - Implementation Guide
## π― Overview
**Lightweight** dynamic completion validation that generates checklists **at runtime** from project requirements. Supports **progressive completion** - agent can save photos separately from activation data.
**π Key Architecture Decision:** NO extra database table! Checklist is ephemeral, generated on-the-fly from existing `project.photo_requirements` and `project.activation_requirements` (JSONB).
---
## π Key Features
### β
Runtime Checklist Generation (NO DB Persistence)
- Checklist generated on-the-fly from `project.activation_requirements` and `project.photo_requirements` (JSONB)
- Different projects have different requirements
- **NO database storage** - checklist is ephemeral validation schema
### β
Progressive Completion (Two Independent Scopes)
1. **Photos Scope** - Upload all required photo types
2. **Activation Data Scope** - Fill all required fields
Agent can complete these scopes independently:
- Save photos first, fill activation data later
- OR fill activation data first, upload photos later
- Ticket only completes when BOTH scopes are validated
### β
Scoped Validation
- When updating photos β Validates ONLY photo requirements
- When updating activation β Validates ONLY field requirements
- When completing ticket β Validates BOTH scopes
### β
Subscription Creation
- Installation tickets β Creates subscription with activation data
- Support tickets β Updates subscription equipment details
- Infrastructure tickets β Just completes ticket
---
## ποΈ Database Schema
### β
Existing Tables Used (NO New Tables!)
**tickets** - Already has these fields:
```sql
-- Stores captured activation/equipment data
completion_data JSONB DEFAULT '{}',
-- Completion flags
completion_photos_verified BOOLEAN DEFAULT FALSE,
completion_data_verified BOOLEAN DEFAULT FALSE
```
**ticket_images** - Links tickets to photos:
```sql
ticket_id UUID β tickets(id)
document_id UUID β documents(id)
image_type VARCHAR(50) -- 'before_installation', 'after_installation', etc.
```
**documents** - Stores actual files:
```sql
file_url TEXT -- Cloudinary URL for images
storage_provider VARCHAR(50) -- 'cloudinary' for images
entity_type VARCHAR(50) -- 'ticket'
entity_id UUID -- ticket.id
```
**projects** - Source of truth for requirements:
```sql
-- Photo requirements (JSONB array)
photo_requirements JSONB DEFAULT '[]'
-- Example: [{"type": "before_installation", "required": true, "min_photos": 2, "max_photos": 5}]
-- Activation requirements (JSONB array)
activation_requirements JSONB DEFAULT '[]'
-- Example: [{"field": "ont_serial_number", "label": "ONT Serial", "type": "text", "required": true}]
```
**subscriptions** - Receives data on completion:
```sql
equipment_details JSONB DEFAULT '{}' -- Routes from ticket.completion_data
activation_details JSONB DEFAULT '{}' -- Routes from ticket.completion_data
```
---
## π User Experience Flow
### **Flow 1: Progressive Completion (Recommended)**
```
1. Agent clicks "Start Work" β Ticket status: in_progress
β
2. Checklist auto-generated from project requirements
β
3. Agent uploads photos
- POST /tickets/{id}/update-photos
- Validates: All required photo types present?
- Saves: ticket_images records created
- Result: Photos scope β
complete
β
4. Agent fills activation form (separate step)
- POST /tickets/{id}/update-activation
- Validates: All required fields filled?
- Saves: Data to ticket.completion_data
- Result: Activation scope β
complete
β
5. Agent clicks "Complete Ticket"
- POST /tickets/{id}/complete
- Validates: Both scopes complete?
- Creates: Subscription (installations)
- Marks: Ticket complete
- Result: Ticket β
completed
```
### **Flow 2: All-at-Once Completion**
```
1. Agent clicks "Start Work" β Ticket status: in_progress
β
2. Agent uploads photos + fills activation data
β
3. Agent clicks "Complete Ticket"
- POST /tickets/{id}/complete
- Include photos + activation_data in request
- Backend updates both scopes, then completes
- Result: Ticket β
completed in one call
```
---
## π‘ API Endpoints
### 1. Get Completion Checklist
```http
GET /api/v1/tickets/{ticket_id}/completion-checklist
```
**Response:**
```json
{
"id": "checklist-uuid",
"ticket_id": "ticket-uuid",
"checklist_items": [
{
"id": "photo_before_installation",
"type": "photo",
"photo_type": "before_installation",
"label": "Before Installation Photos",
"required": true,
"min_photos": 2,
"max_photos": 5,
"status": "pending",
"uploaded_document_ids": []
},
{
"id": "field_ont_serial_number",
"type": "field",
"field_name": "ont_serial_number",
"label": "ONT Serial Number",
"data_type": "text",
"required": true,
"value": null,
"status": "pending"
}
],
"is_photos_complete": false,
"is_activation_complete": false,
"is_complete": false,
"completion_percentage": 0.0
}
```
### 2. Update Photos (Scope Update)
```http
POST /api/v1/tickets/{ticket_id}/update-photos
Content-Type: application/json
{
"photos": {
"before_installation": ["doc-uuid-1", "doc-uuid-2"],
"after_installation": ["doc-uuid-3", "doc-uuid-4"],
"ont_label": ["doc-uuid-5"]
}
}
```
**Validation:**
- β
All required photo types included?
- β
Min/max photo counts satisfied?
**Success Response:**
```json
{
"success": true,
"message": "Photos updated successfully. Activation data still required.",
"ticket_id": "ticket-uuid",
"checklist": {
"is_photos_complete": true,
"is_activation_complete": false,
"is_complete": false,
"completion_percentage": 50.0
}
}
```
**Error Response:**
```json
{
"detail": {
"message": "Photo validation failed",
"errors": [
{
"item_id": "photo_before_installation",
"item_type": "photo",
"photo_type": "before_installation",
"error_message": "Insufficient photos for Before Installation Photos. Required: 2, Uploaded: 1"
}
]
}
}
```
### 3. Update Activation Data (Scope Update)
```http
POST /api/v1/tickets/{ticket_id}/update-activation
Content-Type: application/json
{
"activation_data": {
"ont_serial_number": "HW12345678",
"ont_mac_address": "00:11:22:33:44:55",
"signal_strength": -18.5,
"fiber_cable_id": "FC-001-234"
}
}
```
**Validation:**
- β
All required fields included?
- β
Data types correct?
- β
Regex validation passed?
**Success Response:**
```json
{
"success": true,
"message": "Activation data updated successfully. Photos still required.",
"ticket_id": "ticket-uuid",
"checklist": {
"is_photos_complete": false,
"is_activation_complete": true,
"is_complete": false,
"completion_percentage": 50.0
}
}
```
### 4. Complete Ticket (Final Step)
```http
POST /api/v1/tickets/{ticket_id}/complete
Content-Type: application/json
{
"work_notes": "Installation completed successfully. Customer very satisfied with service quality.",
"force_complete": false
}
```
**Optional:** Include photos/activation_data to update in final call:
```json
{
"photos": { ... },
"activation_data": { ... },
"work_notes": "...",
"force_complete": false
}
```
**Success Response:**
```json
{
"success": true,
"message": "Ticket completed successfully!",
"ticket_id": "ticket-uuid",
"subscription_id": "subscription-uuid",
"checklist": {
"is_photos_complete": true,
"is_activation_complete": true,
"is_complete": true,
"completion_percentage": 100.0
}
}
```
---
## π¨ Frontend Implementation Guide
### **Screen 1: Completion Checklist Overview**
```typescript
// Get checklist
const checklist = await api.get(`/tickets/${ticketId}/completion-checklist`);
// Display progress
<ProgressBar
value={checklist.completion_percentage}
label={`${checklist.completion_percentage}% Complete`}
/>
// Show two sections
<Section title="Photos" complete={checklist.is_photos_complete}>
{checklist.checklist_items
.filter(item => item.type === 'photo')
.map(item => <PhotoUploadCard item={item} />)}
</Section>
<Section title="Activation Data" complete={checklist.is_activation_complete}>
{checklist.checklist_items
.filter(item => item.type === 'field')
.map(item => <DynamicFormField item={item} />)}
</Section>
// Enable complete button only when both scopes done
<Button
disabled={!checklist.is_complete}
onClick={completeTicket}
>
Complete Ticket
</Button>
```
### **Screen 2: Photo Upload**
```typescript
// Agent selects photos for each type
const [photos, setPhotos] = useState({});
// Save photos (scoped update)
const savePhotos = async () => {
try {
const response = await api.post(`/tickets/${ticketId}/update-photos`, {
photos: photos
});
toast.success(response.message);
// Navigate back to checklist overview
} catch (error) {
// Show validation errors
error.errors.forEach(err => {
toast.error(err.error_message);
});
}
};
```
### **Screen 3: Activation Form**
```typescript
// Dynamic form based on checklist items
const [formData, setFormData] = useState({});
// Render fields dynamically
{fieldItems.map(item => {
switch(item.data_type) {
case 'text':
return <TextInput
name={item.field_name}
label={item.label}
required={item.required}
placeholder={item.placeholder}
/>;
case 'number':
return <NumberInput ... />;
case 'select':
return <Select options={item.options} ... />;
}
})}
// Save activation data (scoped update)
const saveActivationData = async () => {
try {
const response = await api.post(`/tickets/${ticketId}/update-activation`, {
activation_data: formData
});
toast.success(response.message);
// Navigate back to checklist overview
} catch (error) {
// Show validation errors
}
};
```
### **Screen 4: Final Completion**
```typescript
// Final step - add work notes and complete
const completeTicket = async () => {
try {
const response = await api.post(`/tickets/${ticketId}/complete`, {
work_notes: workNotes,
force_complete: false
});
toast.success("Ticket completed! Subscription created.");
// Navigate to ticket details or home
} catch (error) {
// Show what's missing
toast.error(`Cannot complete: ${error.message}`);
}
};
```
---
## π§ Configuration Examples
### **Example 1: FTTH Installation Project**
```json
{
"photo_requirements": [
{
"type": "before_installation",
"description": "Before Installation Photos",
"required": true,
"min_photos": 2,
"max_photos": 5
},
{
"type": "after_installation",
"description": "After Installation Photos",
"required": true,
"min_photos": 2,
"max_photos": 5
},
{
"type": "ont_label",
"description": "ONT Device Label",
"required": true,
"min_photos": 1,
"max_photos": 2
},
{
"type": "customer_signature",
"description": "Customer Signature",
"required": false,
"min_photos": 1,
"max_photos": 1
}
],
"activation_requirements": [
{
"field": "ont_serial_number",
"label": "ONT Serial Number",
"type": "text",
"required": true,
"placeholder": "Enter ONT serial number",
"validation_regex": "^[A-Z0-9]{10,20}$"
},
{
"field": "ont_mac_address",
"label": "ONT MAC Address",
"type": "text",
"required": true,
"validation_regex": "^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$"
},
{
"field": "signal_strength",
"label": "Signal Strength (dBm)",
"type": "number",
"required": false,
"placeholder": "e.g., -18.5"
},
{
"field": "fiber_cable_id",
"label": "Fiber Cable ID",
"type": "text",
"required": true
},
{
"field": "speed_test_result",
"label": "Speed Test Result (Mbps)",
"type": "number",
"required": false
}
]
}
```
### **Example 2: Fixed Wireless Project**
```json
{
"photo_requirements": [
{
"type": "antenna_installation",
"description": "Antenna Installation Photo",
"required": true,
"min_photos": 2,
"max_photos": 4
},
{
"type": "signal_strength_screen",
"description": "Signal Strength Screenshot",
"required": true,
"min_photos": 1,
"max_photos": 1
}
],
"activation_requirements": [
{
"field": "cpe_serial_number",
"label": "CPE Serial Number",
"type": "text",
"required": true
},
{
"field": "antenna_model",
"label": "Antenna Model",
"type": "select",
"required": true,
"options": ["Ubiquiti NanoStation", "Mikrotik SXT", "TP-Link CPE"]
},
{
"field": "signal_strength",
"label": "Signal Strength (dBm)",
"type": "number",
"required": true
},
{
"field": "frequency_band",
"label": "Frequency Band",
"type": "select",
"required": true,
"options": ["2.4GHz", "5GHz"]
}
]
}
```
---
## β
Benefits
### For Agents
- β
**Clear guidance** - Know exactly what's required
- β
**Flexible workflow** - Save photos and activation data separately
- β
**Progress tracking** - See completion percentage
- β
**No confusion** - Dynamic form adapts to project
### For Managers
- β
**Consistent data** - All installations have required information
- β
**Quality control** - Can't complete without photos/data
- β
**Flexibility** - Different projects have different requirements
- β
**Audit trail** - Know what was captured and when
### For System
- β
**Data integrity** - Subscriptions created with complete information
- β
**Type safety** - Validation at every step
- β
**Scalability** - New projects just configure requirements
- β
**Maintainability** - No code changes for new requirements
---
## π Deployment Path
### Step 1: Configure Projects βοΈ
```python
# Update existing projects with requirements (JSONB)
project.photo_requirements = [
{"type": "before_installation", "required": True, "min_photos": 2, "max_photos": 5},
{"type": "after_installation", "required": True, "min_photos": 2, "max_photos": 5}
]
project.activation_requirements = [
{"field": "ont_serial_number", "label": "ONT Serial Number", "type": "text", "required": True},
{"field": "ont_mac_address", "label": "ONT MAC Address", "type": "text", "required": True}
]
```
### Step 2: Deploy Backend π
- Deploy updated API endpoints
- No database migrations needed! β
- Existing tickets work as-is
### Step 3: Update Mobile App π±
- Implement completion checklist screen
- Add photo upload functionality (multipart/form-data)
- Add dynamic form for activation data
- Test progressive completion flow
---
## π― Implementation Status
1. β
**Runtime checklist generation** - Reads from project JSONB
2. β
**Service layer** - Validates, uploads via media_service.py
3. β
**Schemas** - Request/response models
4. β
**API endpoints** - GET checklist, POST photos, POST activation, POST complete
5. β
**Documentation** - Complete guide
6. β³ **Configure projects** - Add photo_requirements and activation_requirements
7. β³ **Frontend implementation** - Mobile app UI
8. β³ **Testing** - End-to-end validation
---
## β
Benefits of This Approach
**vs Extra Database Table:**
- β
**No data duplication** - Requirements already in projects table
- β
**No migration needed** - Uses existing schema
- β
**Lightweight** - Checklist generated on-demand
- β
**Flexible** - PM can update requirements anytime (just edit JSONB)
- β
**Scalable** - No extra database records per ticket
- β
**Simple** - Less code, less complexity
**Data Flow:**
```
project.photo_requirements (JSONB) βββ
project.activation_requirements (JSONB) βββ€
β
Generate Checklist (runtime)
β
Validate User Input
β
ββββββββββββββββββββββββββββ΄βββββββββββββββββββββββββββ
β β
Photos β Cloudinary Activation Data β ticket.completion_data
(via media_service.py) (JSONB)
β β
documents + ticket_images subscription.equipment_details
subscription.activation_details
```
---
**Ready to implement on frontend!** π
|