Sirotinji ni popust ne pomaže

Izvor: B92, 30.Jun.2010, 10:40   (ažurirano 02.Apr.2020.)

Sirotinji ni popust ne pomaže

Beograd -- Srbija još nema definisane socijalne karte, ni zakon o potrošačima, pa se ne zna ko podleže grupi ugroženih građana.

Na 35 odsto umanjen račun za struju trenutno ima pravo 107.000 potrošača u Srbiji. Istina je da je to pravo u prva tri meseca u proseku koristila svega petina - 22.000 siromašnih.

Jedan od razloga što malo ljudi koristi "popust" je činjenica da ga imaju samo korisnici materijalnog obezbeđenja i građani u izuzetnim socijalnim >> Pročitaj celu vest na sajtu B92 << prilikama koji račune redovno izmiruju, što je za njih teško ostvariv uslov.

Koliko je sadašnji obuhvat ugroženih potrošača realan, kako će se oni određivati i na koji način će im se pomagati, znaće se tek kada nadležna ministarstva odrede kriterijume i mere. Svemu treba da prethodi, kako se čulo u utorak na okruglom stolu "Zašto Srbija još nema socijalne karte” u organizaciji "Balkanmagazina”, usvajanje dva zakona - o zaštiti potrošača i socijalnoj zaštiti. Ako se oni usvoje do kraja godine, siromašni u Srbiji će znati da li potpadaju u grupu ugroženih potrošača - verovatno polovinom sledeće godine.

"EPS odobrava umanjenje računa građanima koji primaju materijalno obezbeđenje i koji su u izuzetnim socijalnim prilikama. Mi spiskove dobijamo od nadležnih centara za socijalni rad", objasnio je Milan Mirosavljević, direktor sektora za tarife EPS.

Na uplatnici svima stoji obaveštenje da imaju pravo na umanjenje računa. Tokom prva tri meseca to pravo je ukupno iskoristilo 51.884 građana. Svakog meseca oko 22.000 kupaca, za šta smo u proseku izdvajali 6,2 miliona dinara mesečno, kažu u Elektrodistribuciji.

Cene energenata trenutno su, koliko god potrošačima bilo teško da prihvate, socijalna kategorija i pitanje političke odluke. Da bi ulagala u sisteme i pripremili se za tržišnu utakmicu, preduzeća kažu da je neophodno da one budu - ekonomske.

"Vreme jeftine energije je prošlo", istakao je Gordan Tanić iz Agencije za energetiku i dodaje da je položaj potrošača izuzetno važan.

"Da bi se uskladile cene energije neophodno je predvideti mere zaštite potrošača. Treba tražiti one koje neće ići na štetu tržišnih mehanizama. Naš zadatak je bio da vidimo kako je to rešeno u drugim zemaljama i da predložimo model. Mi smo preporučili model vaučerizacije. Ugroženi potrošač bi dobio vaučer za određenu količinu energije ili na određeni novčani iznos i njime izmirivao račun", zaključuje Tanić //var useRecaptcha = true; var useRecaptcha = false; $('.verticalArticleImage').colorbox({ transition: 'elastic', maxWidth :$(window).width(), maxHeight :$(window).height(), close : 'Zatvori', opacity :0.7 }); $(document).ready(function(){ if (new String(document.location).match(/#\d+/)){ // if #comment_id is present in url load comments and scroll to its #id loadComments(function(){ var commentId = 'a[name=' + new String(document.location).replace(/^[^#]+#(\d+)$/, '$1') + ']'; console.log(commentId); $.scrollTo(commentId, 800); }, 'time'); } // listeners $('.articleLike').click(rate); $('.articleDislike').click(rate); $('#commentsNew').toggle(function(e){ $('.commentsList').html(''); e.preventDefault(); loadComments(function(){$.scrollTo('.commentsList', 800)}); }, function(e){ $('.commentsList').html(''); e.preventDefault(); }); $('.loadComments').toggle(function(e){ $('.commentsList').html(''); e.preventDefault(); loadComments(function(){$.scrollTo('.commentsList', 800)}); }, function(e){ $('.commentsList').html(''); e.preventDefault(); }); $('#commentsRecomended').toggle(function(e){ $('.commentsList').html(''); e.preventDefault(); loadComments(function(){$.scrollTo('.commentsList', 800)}, 'popular'); }, function(e){ $('.commentsList').html(''); e.preventDefault(); }); $('#commentsNotRecomended').toggle(function(e){ $('.commentsList').html(''); e.preventDefault(); loadComments(function(){$.scrollTo('.commentsList', 800)}, 'unpopular'); }, function(e){ $('.commentsList').html(''); e.preventDefault(); }); $('.sendComment').toggle(function(e){ e.preventDefault(); loadCommentForm($('.commentsForm')); }, function(e){ e.preventDefault(); removeCommentForm(); // destroys captcha, removes listeners and finally the form }); }); function rate(e){ e.preventDefault(); var element = $(e.target); if (element.attr('tagName') != 'A'){ element = element.parents('a'); } var itemType if ($(element).attr('class').match(/article/)){ itemType = 'article'; } else if ($(element).attr('class').match(/comment/)){ itemType = 'comment'; } var direction = $(element).attr('class').match(/Dislike/) ? "down" : "up"; var itemId = element.attr("rel"); $.ajax({ url: '/php/rate/rate.php', data : { item_id : itemId, item_type : itemType, direction : direction }, type : 'post', success : function(data){ clearMessages(); handleAjaxResponse(data, function(responseObj){ if (responseObj.isError == true){ } else { var responseData = responseObj.data.split('_'); var itemType = responseData[0]; var itemId = responseData[1]; var direction = responseData[2]; var selector = '.'; if (direction == 'up'){ selector += itemType + 'Like' } else { selector += itemType + 'Dislike' } if (itemType == "comment"){ selector += '[rel=' + itemId + ']'; } if (direction == 'up'){ selector += ' + .likeNum'; } else { selector += ' + .dislikeNum'; } $(selector).html(parseInt($(selector).html(), 10)+1); } }); } }); } function loadComments(callback, theOrder){ if (!theOrder){ theOrder='time'; } $('.commentsList').html('' + $('.commentsList').html()); $.ajax({ type : 'post', cache : false, url: '/php/comments/list.php', data : { async : 'true', item_id: '290477', type: 'article', order: theOrder, offset : getCommentsOffset(), limit : 10 }, success : function(data){ $('.reply').unbind('click'); $('.commentLike').unbind('click'); $('.commentDislike').unbind('click'); $('.moreComments').unbind('click'); $('.hideComments').unbind('click'); $('.commentsList').find('.loader').remove(); $('.commentsList').append(data); $('.moreComments').click(function(e){ e.preventDefault(); moreComments(function(){}, $(e.target).attr('rel')); }); $('.commentLike').click(rate); $('.commentDislike').click(rate); $('.hideComments').click(function(e){e.preventDefault(); $('.depth-2').hide();}); $('.reply').click(loadInlineForm); if (callback && typeof callback == "function"){ try { callback(); } catch (e){ } } } }); } function moreComments(callback, theOrder){ if (!theOrder){ theOrder='time'; } $('.commentsList').html($('.commentsList').html() + ''); var cOffset = getCommentsOffset(); $('#nloader').remove(); $('.commentsList').append(''); $.ajax({ type : 'post', cache : false, url: '/php/comments/list.php', data : { async : 'true', item_id: '290477', type: 'article', order: theOrder, offset : cOffset, limit : 10 }, success : function(data){ $('.reply').unbind('click'); $('.commentLike').unbind('click'); $('.commentDislike').unbind('click'); $('.moreComments').unbind('click'); $('.hideComments').unbind('click'); $('.commentsList').find('.loader').remove(); $('.commentsList').find('.moreComments').remove(); $('.commentsList').append(data); $('.commentsList').find('.hideComments:eq(1)').remove(); $('.moreComments').click(function(e){ e.preventDefault(); moreComments(function(){ //var itemOffset = getCommentsOffset() - 10 - 1; //$(window).scrollTo($('.commentsList li:eq(' + itemOffset + ')'), 600); }, $(e.target).attr('rel')); }); $('.commentLike').click(rate); $('.commentDislike').click(rate); $('.hideComments').click(function(e){e.preventDefault(); $('.depth-2').hide();}); $('.reply').click(loadInlineForm); if (callback && typeof callback == "function"){ try { callback(); } catch (e){ } } $('#nLoader').hide(); } }); } function getCommentOffset(){ return $('.comments ol li').length } function loadCommentForm(element, itemType, callback){ if(!itemType){ itemType = 'article'; } $(element).html('').show(); $.ajax({ type : 'post', cache : false, url: '/php/comments/form.php', data : { async : 'true', item_id: '290477', type: itemType }, success : function(data){ $(element).find('.loader').remove(); $(element).append(data); initCommentForm(element); $.scrollTo('#commentForm', 800); if (callback && typeof callback == "function"){ callback.call(); } } }); } var RecaptchaOptions = { custom_translations : { instructions_visual : "recaptcha_instructions_visual!", instructions_audio : "recaptcha_instructions_audio!", play_again : "recaptcha_play_again!", cant_hear_this : "recaptcha_cant_hear_this!", visual_challenge : "recaptcha_visual_challenge!", audio_challenge : "recaptcha_audio_challenge!", refresh_btn : "recaptcha_refresh_btn!", help_btn : "recaptcha_help_btn!", incorrect_try_again : "recaptcha_incorrect_try_again!" }, lang : 'sr', // Unavailable while writing this code (just for audio challenge) theme : 'clean', callback: function(){ $('#commentName').focus(); } }; function initCommentForm(element){ $('#tcLink').unbind('click'); $('#commentText').unbind('keydown'); $('#commentForm').unbind('submit'); //if (useRecaptcha){ // Recaptcha.create("6LcSTwkAAAAAAGGPFy2mJiZZUGBUd4js54gBL__i", "recap", RecaptchaOptions); //} $('#tcLink').toggle( function(e){ e.preventDefault(); $('#t_c').show(); }, function(e){ e.preventDefault(); $('#t_c').hide(); }); $('#commentText').keydown(function(e){ var textLength = $(this).val().length; var remaining = 500 - textLength; $('#charCount').html(remaining); if (textLength>= 500){ if (e.keyCode != 8 && e.keyCode != 46){ // ignore for backspace and delete return false; $('#charCount').html($(this).val().length); } } }); $('#commentForm').submit(function(e){ e.preventDefault(); clearMessages(); var errors = Array(); /*if ($('#commentEmail').length && (!$('#commentEmail').val().match(/^[-_a-z0-9]+(\.[-_a-z0-9]+)*@[-a-z0-9]+(\.[-a-z0-9]+)*\.[a-z]{2,6}$/) || !$('#commentEmail').val().length)){ errors.push('Unesite ispravnu email adresu'); }*/ if ($('#commentName').length && !$('#commentName').val().length){ errors.push('Unesite ime ili nadimak'); } if (!$('#commentText').val().length){ errors.push('Unesite tekst komentara'); } if (!$('#terms').attr('checked')){ errors.push('Neophodna je saglasnost sa uslovima objave komentara'); } if (errors.length){ $('#messages').html('' + errors.join('') + ''); //document.location = new String(document.location).replace(/#?.+$/, '#messages'); $.scrollTo('#messages', 800); return false; } else { var params = $('#commentForm').serialize(); $.ajax({ url : '/php/comments/send.php', type: 'post', data: params, success : function(data){ handleAjaxResponse(data, function(responseObj){ if (responseObj.isError == true){ initCommentForm(); $.scrollTo('#messages'); } else { if ($('.inlineForm> #commentForm').length){ $('.inlineForm').html('' + responseObj.messages.implode('') + ''); } removeCommentForm(); $('.sendComment').click(function(e){ e.preventDefault(); loadCommentForm($('.commentsForm')); }); } }); } }); } }); } function refreshCaptcha(){ //if (useRecaptcha){ // Recaptcha.destroy(); // Recaptcha.create("6LcSTwkAAAAAAGGPFy2mJiZZUGBUd4js54gBL__i", "recap", RecaptchaOptions); //} } function destroyCommentForm(){ //if (useRecaptcha){ // Recaptcha.destroy(); //} $('#tcLink').unbind('click'); $('#commentText').unbind('keydown'); $('#commentForm').unbind('submit'); } function removeCommentForm(){ destroyCommentForm(); if ($('#commentForm').parents('.commentForm').length){ $('#commentForm').parents('.commentForm').remove(); } $('#commentForm').remove(); } function handleAjaxResponse(response, callback){ var messageType; var messageHTML; var responseCode; var responseObj = $.parseJSON(response); if (responseObj && typeof responseObj == 'object'){ if (responseObj.code){ responseCode = responseObj.code; } else { responseCode = 0; responseObj.code = 0; } if (responseObj.isError){ messageType = 'error'; } else if (responseObj.isWarning){ messageType = 'warning'; } else { messageType = 'info'; } if (responseObj.user_message.length){ for (i=0;i

Nastavak na B92...



Napomena: Ova vest je automatizovano (softverski) preuzeta sa sajta B92. Nije preneta ručno, niti proverena od strane uredništva portala "Vesti.rs", već je preneta automatski, računajući na savesnost i dobru nameru sajta B92. Ukoliko vest (članak) sadrži netačne navode, vređa nekog, ili krši nečija autorska prava - molimo Vas da nas o tome ODMAH obavestite obavestite kako bismo uklonili sporni sadržaj.