fix: repair broken Unicode characters in entityDefs and PHP service

- Case.json: "תחום א��ר" → "תחום אחר", "��הול" → "בהול"
- DirectAccessReportService.php: "גישה ישיר��" → "גישה ישירה", broken em-dash

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-06 13:20:29 +00:00
parent 0cca55da0c
commit ee55f1ecef
4 changed files with 5 additions and 5 deletions
Binary file not shown.
@@ -16,11 +16,11 @@
}, },
"cAidType": { "cAidType": {
"type": "enum", "type": "enum",
"options": ["", "הגשת ערעור", "יעוץ והדרכה", "סיוע נוסף ביטוח לאומי", "סיוע נוסף תחום אר", "אי מתן סיוע"] "options": ["", "הגשת ערעור", "יעוץ והדרכה", "סיוע נוסף ביטוח לאומי", "סיוע נוסף תחום אחר", "אי מתן סיוע"]
}, },
"cUrgencyLevel": { "cUrgencyLevel": {
"type": "enum", "type": "enum",
"options": ["", "רגיל", "דחוף", "הול"], "options": ["", "רגיל", "דחוף", "בהול"],
"displayAsLabel": true, "displayAsLabel": true,
"style": { "style": {
"רגיל": "default", "רגיל": "default",
@@ -36,7 +36,7 @@ class DirectAccessReportService
$contactName = $contact $contactName = $contact
? ($contact->get('firstName') . ' ' . $contact->get('lastName')) ? ($contact->get('firstName') . ' ' . $contact->get('lastName'))
: 'ללא איש קשר'; : 'ללא איש קשר';
$reportName = "דוח גישה ישיר{$contactName}"; $reportName = "דוח גישה ישירה{$contactName}";
// Extract legal analysis from nested object // Extract legal analysis from nested object
$legalAnalysis = $params['legalAnalysis'] ?? []; $legalAnalysis = $params['legalAnalysis'] ?? [];
@@ -52,7 +52,7 @@ class DirectAccessReportService
'caseId' => $caseId, 'caseId' => $caseId,
'assignedUserId' => $userId, 'assignedUserId' => $userId,
// Section ב' מהות הסיוע // Section ב' מהות הסיוע
'aidType' => $params['aidType'] ?? null, 'aidType' => $params['aidType'] ?? null,
'urgencyLevel' => $params['urgencyLevel'] ?? null, 'urgencyLevel' => $params['urgencyLevel'] ?? null,
'appointmentDate' => $this->normalizeDate($params['appointmentDate'] ?? null), 'appointmentDate' => $this->normalizeDate($params['appointmentDate'] ?? null),
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "LegalAssistance", "name": "LegalAssistance",
"version": "1.2.2", "version": "1.2.3",
"acceptableVersions": [">=8.0.0"], "acceptableVersions": [">=8.0.0"],
"php": [">=8.1"], "php": [">=8.1"],
"releaseDate": "2026-04-06", "releaseDate": "2026-04-06",