Update community IDs and source locations in graph.json and manifest.json

- Adjusted source location for mockPricing() in AppointmentBookingModal.test.tsx from L144 to L149.
- Updated community IDs for various migration entries and commands in graph.json to reflect new community associations.
- Modified timestamps and AST hashes for AppointmentBookingModal.test.tsx and AppointmentsPage.tsx in manifest.json.
This commit is contained in:
hamed
2026-07-23 15:18:59 +03:30
parent 36f13ac7d3
commit 1d1c3d5f30
6 changed files with 196 additions and 185 deletions
+3 -3
View File
@@ -118,8 +118,8 @@ export function NewAppointmentModal({
const [lookup, setLookup] = useState<PatientLookup | null>(null);
const [patientName, setPatientName] = useState('');
const [nationalCode, setNationalCode] = useState('');
// معیار جستجوی بیمار: موبایل یا کد ملی.
const [searchBy, setSearchBy] = useState<'mobile' | 'national'>('mobile');
// معیار جستجوی بیمار: کد ملی (پیش‌فرض) یا موبایل.
const [searchBy, setSearchBy] = useState<'mobile' | 'national'>('national');
const [pick, setPick] = useState<{ serviceUuids: string[]; slot: { start: number; end: number } | null }>({ serviceUuids: [], slot: null });
const role = useAuthStore(s => s.primaryRole);
@@ -292,7 +292,7 @@ export function NewAppointmentModal({
<label>جستجوی بیمار <span className="req">*</span></label>
{/* انتخاب معیار جستجو: موبایل یا کد ملی */}
<div style={{ display: 'flex', gap: 6, marginBottom: 8 }}>
{(['mobile', 'national'] as const).map(mode => (
{(['national', 'mobile'] as const).map(mode => (
<button
key={mode}
type="button"