Major Updates:
1. Extended Audit Trail System
- Added tube received events tracking from SP_TUBES table (TUBESTATUS=4)
- New audit tab "Receive" in dialog_audit.php to display tube reception history
- ApiRequestsAuditController now fetches and returns tube received events with:
* Sample type, tube status, collection date, and user information
- Audit events sorted chronologically combining validation, sampling, and receiving events
2. Enhanced PDF Generation Workflow
- Created new PdfHelper library with methods for PDF generation and posting to spooler
- Reports can now be generated via GET /report/{accessnumber}/pdf endpoint
- Updated PDF spooler API endpoint from port 3030 to 3000
- Added retry PDF button with spinner animation for failed generations
- Fixed PDF status check to use correct spooler endpoint
3. Validation UI Improvements
- Added toast notification showing PDF queued after second validation (val2)
- Retry PDF button appears when val1 and val2 are complete
- Toast notifications success/error states with auto-dismiss after 2 seconds
- Loading state with spinning icon during PDF retry operation
4. Report Template Fixes
- Fixed typo in Val2 By display (added missing ":")
- Consistent formatting with Val1 By : and Val2 By :
5. Documentation Updates
- TODO.md updated with:
* Auto generate PDF (in progress)
* Print Eng Result (pending)
* Add Receive to Audit (completed)
6. Cleanup
- Removed legacy Node.js spooler implementation (node_spooler directory)
- Deleted P0_log.txt (SQL setup scripts no longer needed in repo)
- Cleaned up .gitignore to remove stale node_spooler entries
Files Changed:
- app/Controllers/ApiRequestsAuditController.php (tube received audit)
- app/Controllers/ReportController.php (port update: 3030 → 3000)
- app/Libraries/PdfHelper.php (new library)
- app/Views/report/template.php (typo fix)
- app/Views/shared/content_requests.php (retry PDF button)
- app/Views/shared/dialog_audit.php (receive tab)
- app/Views/shared/script_requests.php (retry handler, tube events)
- app/Views/shared/script_validation.php (enhanced toast)
- TODO.md (pending/completed tasks)
- .gitignore (cleanup)
- Deleted: node_spooler/* (legacy implementation)
- Deleted: P0_log.txt (no longer needed)
129 lines
1.9 KiB
Plaintext
129 lines
1.9 KiB
Plaintext
#-------------------------
|
|
# Operating Specific Junk Files
|
|
#-------------------------
|
|
|
|
# OS X
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# OS X Thumbnails
|
|
._*
|
|
|
|
# Windows image file caches
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Recycle Bin used on file shares
|
|
$RECYCLE.BIN/
|
|
|
|
# Windows Installer files
|
|
*.cab
|
|
*.msi
|
|
*.msm
|
|
*.msp
|
|
|
|
# Windows shortcuts
|
|
*.lnk
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# KDE directory preferences
|
|
.directory
|
|
|
|
# Linux trash folder which might appear on any partition or disk
|
|
.Trash-*
|
|
|
|
#-------------------------
|
|
# Environment Files
|
|
#-------------------------
|
|
# These should never be under version control,
|
|
# as it poses a security risk.
|
|
.env
|
|
.vagrant
|
|
Vagrantfile
|
|
|
|
#-------------------------
|
|
# Temporary Files
|
|
#-------------------------
|
|
writable/cache/*
|
|
!writable/cache/index.html
|
|
|
|
writable/logs/*
|
|
!writable/logs/index.html
|
|
|
|
writable/session/*
|
|
!writable/session/index.html
|
|
|
|
writable/uploads/*
|
|
!writable/uploads/index.html
|
|
|
|
writable/debugbar/*
|
|
!writable/debugbar/index.html
|
|
|
|
php_errors.log
|
|
|
|
#-------------------------
|
|
# User Guide Temp Files
|
|
#-------------------------
|
|
user_guide_src/build/*
|
|
user_guide_src/cilexer/build/*
|
|
user_guide_src/cilexer/dist/*
|
|
user_guide_src/cilexer/pycilexer.egg-info/*
|
|
|
|
#-------------------------
|
|
# Test Files
|
|
#-------------------------
|
|
tests/coverage*
|
|
|
|
# Don't save phpunit under version control.
|
|
phpunit
|
|
|
|
#-------------------------
|
|
# Composer
|
|
#-------------------------
|
|
vendor/
|
|
public/.htaccess
|
|
#-------------------------
|
|
# IDE / Development Files
|
|
#-------------------------
|
|
|
|
# Modules Testing
|
|
_modules/*
|
|
|
|
# phpenv local config
|
|
.php-version
|
|
|
|
# Jetbrains editors (PHPStorm, etc)
|
|
.idea/
|
|
*.iml
|
|
|
|
# NetBeans
|
|
/nbproject/
|
|
/build/
|
|
/nbbuild/
|
|
/dist/
|
|
/nbdist/
|
|
/nbactions.xml
|
|
/nb-configuration.xml
|
|
/.nb-gradle/
|
|
|
|
# Sublime Text
|
|
*.tmlanguage.cache
|
|
*.tmPreferences.cache
|
|
*.stTheme.cache
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
.phpintel
|
|
/api/
|
|
|
|
# Visual Studio Code
|
|
.vscode/
|
|
|
|
/results/
|
|
/phpunit*.xml
|
|
|
|
.claude/
|
|
.serena/ |