Public Access
CAMBS, RMI, CONSENSIO, and INLAND always export TIFs into the daily date folder instead of PDFs, so engine.ps1's hardcoded "*.pdf" filter silently found nothing to upload (no error, just "No PDFs" for every practice). Added optional entity.json field "insurance_file_type" (defaults to "pdf" when omitted, so existing entities are unaffected); the PT STMT split logic already worked on filename regardless of extension, so no other changes needed.
23 lines
481 B
JSON
23 lines
481 B
JSON
{
|
|
"workflow": "insurance+patient",
|
|
"insurance_file_type": "pdf",
|
|
|
|
"ftps": {
|
|
"host": "ftp.example.com",
|
|
"port": 21,
|
|
"tls": true,
|
|
"username": "shared-username",
|
|
"password": "shared-password",
|
|
"insurance_path": "/{practice}/Insurance",
|
|
"pdf_path": "/{practice}/PDF"
|
|
},
|
|
|
|
"sftp": {
|
|
"host": "sftp.example.com",
|
|
"port": 22,
|
|
"username": "shared-username",
|
|
"password": "shared-password",
|
|
"patient_path": "/{practice}/Patient"
|
|
}
|
|
}
|