... | 🕐 --:--
-- -- --
عاجل
⚡ عاجل: كريستيانو رونالدو يُتوّج كأفضل لاعب كرة قدم في العالم ⚡ أخبار عاجلة تتابعونها لحظة بلحظة على خبر ⚡ تابعوا آخر المستجدات والأحداث من حول العالم
⌘K
AI مباشر
30231 مقال 232 مصدر نشط 38 قناة مباشرة 7456 خبر اليوم
آخر تحديث: منذ 0 ثانية

محامو ما بعد التحرير: بين مطرقة الخدمة الإلزامية وسندان المنع من المزاولة

العالم
جريدة زمان الوصل
2026/03/26 - 21:14 501 مشاهدة
تواجه فئة من المحامين السوريين ممن أنهوا خدمتهم الإلزامية تزامناً مع سقوط النظام السوري في دمشق، أزمة معيشية وحقوقية خانقة، جراء قرار نقابة المحامين بمنعهم من العودة لمزاولة مهنتهم، في وقت يسود فيه شعور بالتمييز وغياب التكافؤ في الفرص.

ضريبة "البذلة العسكرية" القسرية
يروي عدد من المحامين المتضررين أن التحاقهم بالخدمة الإلزامية لم يكن خياراً، بل كان نتيجة سياسات التجنيد القسري والملاحقة عبر الحواجز التي انتهجها النظام السابق. ومع لحظة التحرير، بادر هؤلاء المحامون لتسوية أوضاعهم والعودة إلى حياتهم المدنية، آملين باستعادة حقهم الطبيعي في العمل بمهنة المحاماة التي هي مصدر رزقهم الوحيد.

ازدواجية في المعايير
تكمن جوهر المشكلة في ما يصفه المتضررون بـ "التمييز الواضح" في قرارات النقابة، حيث يبرز التناقض في النقاط التالية:
- بينما يُمنع المحامون الذين تسرحوا يوم التحرير من العمل، يمارس زملاء آخرون لهم المهنة بشكل طبيعي رغم أنهم خدموا في ذات الظروف، لكن تسريحهم تم قبيل التحرير بفترة وجيزة.
- يؤكد المحامون أنهم قضوا سنوات شبابهم في الخدمة دون إرادتهم، واليوم يجدون أنفسهم بلا "صنعة" أو بديل مهني، مما يهدد استقرار عائلاتهم المادي.
 
مطالب بالإنصاف
يناشد المحامون المتضررون الجهات المعنية ونقابة المحامين بضرورة إعادة النظر في قرارات المنع، واعتماد معيار موحد يشمل جميع من "أُجبر" على الخدمة ولم يتورط في انتهاكات، مؤكدين أن "التسوية" التي قاموا بها يجب أن تضمن لهم حق العودة إلى جدول المحامين المزاولين. 

"نحن لا نطلب امتيازات، بل نطلب حقنا في العودة لمكاتبنا ومزاولة مهنة درسنا لسنوات من أجلها. إن استمرار منعنا هو عقوبة إضافية على سنوات ضاعت من أعمارنا قسراً".
مشاركة:
\n

مقالات ذات صلة

// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 58808; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
// Coin System - Track article read (function() { const email = localStorage.getItem('khabr_user_email'); if (!email) return; const articleId = 58808; // Record read (+1 coin) fetch('/api/coins/read', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email, article_id: articleId}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { // Show coin earned toast const toast = document.createElement('div'); toast.innerHTML = '🪙 +' + data.coins_earned + ' coin! (Balance: ' + data.balance + ')'; toast.style.cssText = 'position:fixed;bottom:20px;right:20px;background:linear-gradient(135deg,#f59e0b,#d97706);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(245,158,11,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 3000); } }).catch(() => {}); // Daily login check const lastLogin = localStorage.getItem('khabr_daily_login'); const today = new Date().toDateString(); if (lastLogin !== today) { fetch('/api/coins/daily-login', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({email: email}) }).then(r => r.json()).then(data => { if (data.coins_earned > 0) { localStorage.setItem('khabr_daily_login', today); setTimeout(() => { const toast = document.createElement('div'); toast.innerHTML = '🔥 Daily bonus +' + data.coins_earned + ' coins! (Streak: ' + data.streak + ' days)'; toast.style.cssText = 'position:fixed;bottom:70px;right:20px;background:linear-gradient(135deg,#ef4444,#dc2626);color:#fff;padding:12px 20px;border-radius:12px;font-weight:bold;z-index:9999;animation:slideUp .5s ease;box-shadow:0 4px 15px rgba(239,68,68,0.4);'; document.body.appendChild(toast); setTimeout(() => toast.remove(), 4000); }, 1500); } }).catch(() => {}); } })();
AI
يا هلا! اسألني أي شي 🎤