Vergi Cezası İtirazı

Haksız tebliğ edilen vergi ve cezalara karşı yasal süresi içinde itiraz edin.

Formu Doldurun

Güvenli ve Anonim

... NÖBETÇİ VERGİ MAHKEMESİ BAŞKANLIĞI'NA

DAVACI: ... (No: ...)

KONU: ... sayılı ödeme emrine/ihbarnamesine itirazdır.

Tarafıma ... tarihinde tebliğ edilen vergi/ceza ihbarnamesi hukuka aykırıdır. ... gerekçesiyle söz konusu işlemin iptalini arz ve talep ederim.

Ad Soyad: ________________
T.C. Kimlik No: ___________
İmza:
Reklam Alanı (728x90 Banner)

İstifa Dilekçesi ile İlgili Her Şey

İşten ayrılma sürecinde dikkat etmeniz gereken hukuki detaylar.

İtiraz süresi nedir?

Vergi mahkemelerinde dava açma süresi genellikle tebliğ tarihinden itibaren 30 gündür.

Yürütmeyi durdurma istenir mi?

Evet, dilekçede 'Yürütmenin Durdurulması' talep edilerek verginin tahsili dava sonuna kadar durdurulabilir.

Ödeme yapmadan itiraz edilir mi?

Evet, itiraz edilmesi ödemeyi durdurmaz (yürütmeyi durdurma yoksa) ancak itiraz hakkı saklıdır.

Belge İndirildi!
"; const footer = "
Dosya Hazır
İndirme Seçenekleri
"; const sourceHTML = header + el.innerHTML + footer; const source = 'data:application/vnd.ms-word;charset=utf-8,' + encodeURIComponent(sourceHTML); const link = d.createElement("a"); link.href = source; link.download = fileName + '.doc'; link.click(); showToast(); }); // ====== MOBİL TAB TOGGLE ====== const bBar = document.getElementById('sticky-download-bar'); function activateFormTab() { const fCol = document.getElementById('form-col'); const pCol = document.getElementById('preview-col'); const btForm = document.getElementById('tab-form-btn'); const btPre = document.getElementById('tab-preview-btn'); if(btForm) btForm.classList.add('bg-white','text-primary-600','shadow-sm'); if(btForm) btForm.classList.remove('text-slate-500'); if(btPre) btPre.classList.remove('bg-white','text-primary-600','shadow-sm'); if(btPre) btPre.classList.add('text-slate-500'); if(fCol) fCol.classList.remove('mobile-col-hidden'); if(pCol) pCol.classList.add('mobile-col-hidden'); if(bBar) bBar.classList.add('show'); document.body.classList.add('pb-bar'); } function activatePreviewTab() { const fCol = document.getElementById('form-col'); const pCol = document.getElementById('preview-col'); const btForm = document.getElementById('tab-form-btn'); const btPre = document.getElementById('tab-preview-btn'); if(btPre) btPre.classList.add('bg-white','text-primary-600','shadow-sm'); if(btPre) btPre.classList.remove('text-slate-500'); if(btForm) btForm.classList.remove('bg-white','text-primary-600','shadow-sm'); if(btForm) btForm.classList.add('text-slate-500'); if(pCol) pCol.classList.remove('mobile-col-hidden'); if(fCol) fCol.classList.add('mobile-col-hidden'); if(bBar) bBar.classList.remove('show'); document.body.classList.remove('pb-bar'); } if(document.getElementById('tab-form-btn')) document.getElementById('tab-form-btn').addEventListener('click', activateFormTab); if(document.getElementById('tab-preview-btn')) document.getElementById('tab-preview-btn').addEventListener('click', activatePreviewTab); if(window.innerWidth < 1024) { activateFormTab(); }; document.querySelectorAll('#doc-form input, #doc-form select, #doc-form textarea').forEach(el => { if(el.id) data[el.id] = el.value; }); localStorage.setItem(LS_KEY, JSON.stringify(data)); } function loadForm() { try { const saved = JSON.parse(localStorage.getItem(LS_KEY) || '{}'); Object.keys(saved).forEach(id => { const el = document.getElementById(id); if(el && saved[id]) { el.value = saved[id]; } }); if(typeof u === 'function') u(); } catch(e) {} } document.querySelectorAll('#doc-form input, #doc-form select, #doc-form textarea').forEach(el => { el.addEventListener('input', saveForm); el.addEventListener('change', saveForm); }); loadForm(); // ====== GLOBAL SAYAÇ ARTIRIMI (indirme sonrası) ====== function incrementGlobalCounter() { const key = 'pratikevrak_total_docs'; const cur = parseInt(localStorage.getItem(key) || '1247'); localStorage.setItem(key, cur + 1); } ['dl-pdf','dl-jpg','dl-doc'].forEach(id => { const btn = document.getElementById(id); if(btn) btn.addEventListener('click', incrementGlobalCounter); }); // ====== FORMU TEMİZLE ====== const clearBtn = document.getElementById('clear-form-btn'); if(clearBtn) { clearBtn.addEventListener('click', () => { if(!confirm('Formdaki tüm bilgiler silinecek. Emin misiniz?')) return; document.querySelectorAll('#doc-form input, #doc-form select, #doc-form textarea').forEach(el => { if(el.type === 'checkbox' || el.type === 'radio') el.checked = false; else el.value = ''; }); localStorage.removeItem(LS_KEY); if(typeof u === 'function') u(); // Kısa yeşil toast clearBtn.innerHTML = ' Temizlendi!'; clearBtn.classList.add('text-emerald-500','border-emerald-300','bg-emerald-50'); lucide.createIcons(); setTimeout(() => { clearBtn.innerHTML = ' Formu Temizle'; clearBtn.classList.remove('text-emerald-500','border-emerald-300','bg-emerald-50'); lucide.createIcons(); }, 2000); }); }