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:
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
@@ -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",
|
||||||
|
|||||||
Reference in New Issue
Block a user