HH/apps/observations/migrations/0015_add_response_token.py
ismail 7369d08012
All checks were successful
Build and Push Docker Image / build (push) Successful in 4m14s
feat: unified reference numbers + feedback modules QA audit
Reference numbers (unified scheme PREFIX-YYYYMM-HOSP-NNNN, e.g. CMP-202606-HHN-0001):
- new ReferenceSequence model + generate_reference() helper (apps/core)
- Complaint/Inquiry/Observation/Appreciation/Suggestion emit unified refs via save()
- prefix-based auto-routing in public track API (CMP/INQ/OBS trackable; APR/SGT internal-only)
- removed legacy CMP-/INQ- generators in ui_views, integrations, px_sources
- migrations: core.0003_referencesequence, appreciation.0006, feedback.0008, observations.0012
- unit tests (format, sanitization, monthly reset, 40-thread concurrency)

QA audit:
- isolated E2E hospital sandbox mirroring HH-N + 10 role users (create_e2e_isolated_env)
- feedback-modules-audit.spec.ts + audit helper (headed, run-to-completion)
- reports/feedback-modules-qa-report.md

Also bundles accumulated in-progress work across complaints, observations,
organizations, templates, and other modules.
2026-06-14 14:29:23 +03:00

29 lines
861 B
Python

# Generated by Django 6.0.1 on 2026-06-14 11:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('observations', '0014_map_statuses'),
]
operations = [
migrations.AddField(
model_name='observation',
name='response_token',
field=models.CharField(blank=True, db_index=True, help_text='One-time token for department response link', max_length=100, null=True, unique=True),
),
migrations.AddField(
model_name='observation',
name='response_token_sent_at',
field=models.DateTimeField(blank=True, null=True),
),
migrations.AddField(
model_name='observation',
name='response_token_used',
field=models.BooleanField(default=False),
),
]