Rosario cavite mayor scandal

Home / Political Leaders & Public Figures / Rosario cavite mayor scandal


Population (POPCEN 2020, Philippine Statistics Authority): 110,807
Registered Voters (COMELEC, January・2020):84,273

Mayor: RICAFRENTE, VOLTAIRE
Vice-Mayor:GONZALES, BAMM
VELARDE, MARK JAY
HERNANDEZ, RAUL
ANDICO, VIVIAN
GO, CHRISTOPHER
CONVENTO, ROLAND
NAZARENO, CRISANTO
DEL ROSARIO, MICHAEL
PUEBLO, MANNY

The second smallest town in the province of Cavite, Rosario has a total land area of 5.67 square kilometers and has 20 barangays.

Numerous ・・tinapa・・ vendors in Rosario sell their products in areas like Metro Manila, Laguna and Batangas. Si Novelta Luyun naman, isa pang opisyal, kumuha ng P9,999,835.33 na cash advances para sa relief operations at ayuda sa senior citizens, pero hindi rin na-settle ang malaking bahagi nito. Dapat managot si Mayor sa ginawa nila!” ani Mariel Claire Santos, isang concerned citizen ng Kawit.

Hanggang sa ngayon, wala pang opisyal na pahayag mula kay Mayor Aguinaldo.

rosario cavite mayor scandal

Isa pang nakakabahalang natuklasan: P3,300,000 ang hindi na-liquidate na cash advances ng Local Chief Executive, na si Mayor Aguinaldo mismo, para sa mga diumano’y gastusin ng munisipyo.

Ayon sa COA Circular No. 2015-01 at 97-002, dapat agad na-liquidate ang lahat ng cash advances sa katapusan ng taon, pero sa Kawit, hindi ito sinunod. Dahil dito, lumalabas na naabuso ang Government Equity account, na nagdulot ng malaking kakulangan sa pondo ng bayan.

Hiling ng mga residente ng Kawit na imbestigahan si Mayor Aguinaldo at mga kasamahan niyang opisyal.

Source: OPIO Cavite

"; $('body').append(cssHideLogo); } else { var cssHideLogo = ""; $('body').append(cssHideLogo); } if (geocodeVisitorsSetting == 1 && geocodingMethod === "IP") { populateSearchFields(); } if($('.googleSuggest').val() == ""){ populateSearchFields(); } var geocodeVisitorsSetting = '0'; var geocodingMethod = 'HTML5'; //check the advanced setting "geocode_visitor_default" if set to 1 will override the "location_value" values to the formatted desire address from the google reverse geocoding response var vlon = ''; var vlat = ''; } function switchPlaceID(placeId,urlGET, formActionUrl) { let request = { placeId: placeId, fields: ['address_components', 'adr_address', 'formatted_address', 'geometry', 'icon', 'name', 'place_id', 'plus_code', 'type'], }; let service = new google.maps.places.PlacesService(document.createElement('div')); service.getDetails(request, function(place, status) { if (status === google.maps.places.PlacesServiceStatus.OK) { let dataArray = []; dataArray.push(place); parseInfoToSearch(dataArray, urlGET, formActionUrl); } else { console.error('Place details request failed with status:', status); } }); } function parseInfoToSearch(results, urlGET, formActionUrl) { var urlSearchParams = new URLSearchParams(urlGET); var parameters = {}; var addressComponentsArray = []; if (results.length > 1) { if(urlSearchParams.get("location_value")?.toLowerCase() === "nebraska" && results.length === 2){ let tempResult = results[0]; results[0] = results[1]; results[1] = tempResult; } for (let i = 0; i < results.length; i++) { if (results[i].types[0] === 'natural_feature' || results[i].types[0] === 'airport' || results[i].types[0] === 'point_of_interest' || results[i].types[0] === 'establishment' || results[i].types[0] === 'political' || results[i].types[0] === 'park') { results.splice(i, 1); } } } var adComLength = results[0].address_components.length; if(results[0].place_id == 'ChIJmQrivHKsQjQR4MIK3c41aj8'){ switchPlaceID('ChIJi73bYWusQjQRgqQGXK260bw',urlGET, formActionUrl); return; } sessionStorage.setItem("google_result",JSON.stringify(results)); var foundPostalType = results[0].types.find(type => postalTypes.includes(type)); var foundCityType = results[0].types.find(type => cityTypes.includes(type)); //loop that will build the array with the address components and will get the short name of country and administrative area level 1 for (var i = 0; i < adComLength; i++) { if (results[0].address_components[i]['types'][0] == "country") { parameters.country_sn = results[0].address_components[i]['short_name']; } if (results[0].address_components[i]['types'][0] == "administrative_area_level_1") { parameters.adm_lvl_1_sn = results[0].address_components[i]['short_name']; } if (results[0].address_components[i]['types'][0] == "administrative_area_level_1") { parameters.stateSearchLN = results[0].address_components[i]['long_name']; } if (results[0].address_components[i]['types'][0] == "administrative_area_level_2") { parameters.county_sn = results[0].address_components[i]['short_name']; } if ($.inArray(results[0].address_components[i]['types'][0], cityTypes) !== -1 && (foundCityType || foundPostalType ) ) { parameters.city = results[0].address_components[i]['long_name']; } if (results[0].address_components[i]['types'][0] == "postal_code" || results[0].address_components[i]['types'][0] == "postal_code_prefix") { parameters.postal_code = results[0].address_components[i]['long_name']; } } parameters.location_type = results[0].types[0]; if (parameters.adm_lvl_1_sn != '') { parameters.stateSearch = parameters.adm_lvl_1_sn; } if (parameters.country_sn == "GB") { delete parameters.adm_lvl_1_sn; } //will check if the response had the bounds parameters //if it had it will add the south west and north east parameters to the new url if (results[0].geometry.hasOwnProperty('bounds') || results[0].geometry.hasOwnProperty('viewport')) { if (results[0].geometry.hasOwnProperty('bounds')) { var boundsResponse = results[0].geometry.bounds; } else { var boundsResponse = results[0].geometry.viewport; } parameters.swlat = boundsResponse.getSouthWest().lat(); parameters.nelat = boundsResponse.getNorthEast().lat(); parameters.swlng = boundsResponse.getSouthWest().lng(); parameters.nelng = boundsResponse.getNorthEast().lng(); //if there were not bounds parameters in the response it will send the parameter fsearch as radius so a radius search will be performed because of lack of info for this location } else { parameters.fsearch = "radius"; } var locationCenterResponse = results[0].geometry.location; parameters.lat = locationCenterResponse.lat(); parameters.lng = locationCenterResponse.lng(); parameters.faddress = results[0].formatted_address; parameters.place_id = results[0].place_id; var formatParameters = $.param(parameters); urlGET = urlGET + "&" + formatParameters; var urlPath = formActionUrl; var redirect = urlPath + "?" + urlGET; //will redirect the page using the new url that has been constructed window.location.href = redirect; } function populateSearchFields() { var prePopulateLocationSetting = '0'; var geolocationMethod = 'HTML5'; //if set to one will get the lat and lng to do reverse geocoding if (prePopulateLocationSetting == 1 && (geolocationMethod === "HTML5" || geolocationMethod === "IP") && (vlat !== '' && vlon !== '' && vlat != undefined && vlon != undefined && vlat != 0 && vlon != 0)) { var visitorLatLng = new google.maps.LatLng(parseFloat(vlat), parseFloat(vlon)); var visitorGeocoder = new google.maps.Geocoder(); var formattedAddress = []; var preFormattedStructure = { "locality": "long_name", "administrative_area_level_2": "long_name", "administrative_area_level_1": "long_name", "country": "long_name" }; visitorGeocoder.geocode({'latLng': visitorLatLng}, function (results, status) { //if the google response of the geocoding was successful it will use that info to build the url for the new search if (status == google.maps.GeocoderStatus.OK) { window.cachedSelectedOption = results; $.each(preFormattedStructure, function (findex, fvalue) { $.each(results[0].address_components, function (rindex, rvalue) { if (rvalue.types[0] == findex) { formattedAddress.push(rvalue.long_name); } }); }); $('.googleSuggest').each(function () { if ($(this).val() == '') { if (formattedAddress.length > 0) { $(this).val(formattedAddress.join(', ')); clearContent($(this)); } } }); } else { $('.googleSuggest').each(function () { $(this).val(''); }); } }); } } function showError(error) { switch (error.code) { case error.PERMISSION_DENIED: $('.fill_location.clicked').popover({ content: 'Your Local browser settings have prevented location targeting', container: 'body' }); $('.fill_location.clicked').popover('toggle'); setTimeout(function () { $('.fill_location.clicked').popover('hide'); $('.fill_location.clicked').removeClass('clicked'); }, 2000); break; case error.POSITION_UNAVAILABLE: break; case error.TIMEOUT: break; case error.UNKNOWN_ERROR: break; } } if (navigator.geolocation) { if ($(".googleSuggest")[0]) { $(document).on('click', '.fill_location', function getCXPosition() { $(this).addClass('clicked'); var startPos; navigator.geolocation.getCurrentPosition(function (position) { startPos = position; vlat = startPos.coords.latitude; vlon = startPos.coords.longitude; $.get("/api/data/html/get/data_widgets/widget_name", { "vlat": vlat, "vlon": vlon, "name": "Website - Save Coordinates Session" }).done(function (data) { }); populateSearchFields(); }, showError); }) } } else { console.log('Geolocation is not supported for this Browser/OS version yet.'); } function getUrlParameter(sParam) { var sPageURL = window.location.search.substring(1); var sURLVariables = sPageURL.split('&'); for (var i = 0; i < sURLVariables.length; i++) { var sParameterName = sURLVariables[i].split('='); if (sParameterName[0] == sParam) { return decodeURIComponent(sParameterName[1]); } } }

CAMP VICENTE LIM, Laguna, Philippines — A former municipal mayor in Cavite and his brother have been dismissed from their posts for the second time by the Office of the Ombudsman.

Former Silang mayor Alston Kevin Anarna and his brother, former municipal administrator and bids and awards committee (BAC) chairman Nathaniel Anarna Jr., have been found guilty of grave misconduct and conduct prejudicial to the best interest of the service.

Aside from dismissal, the ombudsman canceled the eligibility and forfeited the retirement benefits of the Anarnas as well as disqualified them from holding any public post.

The ombudsman dismissed the charges of nepotism filed against the respondents for lack of merit.

In an 18-page ruling issued on June 25 and received by the office of Carranza on Friday, the ombudsman said Anarna Jr.

was not qualified to hold the position and that his designation undermined the public’s faith and confidence in the local government.

“Despite the glaring want of qualification, Alston designated Nathaniel to head the BAC, compromising the principles of transparency and accountability,” the ruling read.

Since the Anarnas have already been out of government service due to their disqualification in 2024, the second dismissal will be converted into a fine equivalent to their one-year salary, payable to the ombudsman.

State prosecutors said the penalty of perpetual disqualification from public service is not symbolic.

It said public officials remain accountable for misconduct committed while in office even after leaving the service.

MASAKER NA KORUPSYON SA KAWIT, CAVITE: SI MAYOR ANGELO AGUINALDO, SANGKOT SA P15-MILYONG CASH ADVANCE SCANDAL!

Kawit, Cavite – Isang nakakabiglang ulat mula sa Commission on Audit (COA) ang naglantad ng malawakang korupsyon sa pamahalaan ng Kawit, Cavite sa ilalim ni Mayor Angelo Aguinaldo.

Bukod dito, ang iba pang cash advances ay para sa mga opisyal na hindi na kailangang mag-liquidate agad, na taliwas sa batas. “Saan napunta ang pera ng bayan? Sa kabuuan, P15.49 milyon ang nanatiling hindi na-liquidate hanggang katapusan ng taon.

Dagdag pa rito, napuna ng COA na ang ilan sa mga cash advances ay ginamit sa mga gastusin na natapos na ang layunin, pero nanatiling hindi naibalik ang pera.

Sun drying, smoking or fermentation and salting are among the fish processing activities of the people for livelihood and for additional income. It is one of the lowland coastal municipalities in the province. of Barangays:・20
Land Area:・768.364・has.

Cavite

Income Classification: 1st Class
Congressional District:・1st District
No.

Ayon sa COA Report, umabot sa P15,493,400 na cash advances ang hindi na-liquidate at ginamit sa mga kaduda-dudang gastusin ng mga opisyal at empleyado ng munisipyo noong 2020.

Ayon sa ulat, noong 2020, naglabas ng milyun-milyong cash advances ang munisipyo para umano sa mga “special purposes” tulad ng Teacher’s Day Celebration, relief operations para sa mga nasalanta ng bagyong Rolly, at ayuda sa mga senior citizens.

Pero ang ulat na ito ay malinaw na nagpapakita ng malaking bahid ng korupsyon sa pamahalaan ng Kawit, Cavite.

Related


Discover more from Cavite News

Subscribe to get the latest posts sent to your email.

There is a commercial fish landing area in the municipality, which is considered as one of the major fish ports in the province.

Being a coastal town, fishing is one of the major sources of livelihood and income of the people in the area.

Pero ayon sa COA, hindi na-liquidate ang mga pondong ito kahit tapos na ang mga aktibidad, labag sa Presidential Decree No. 1445 at COA Circular No. 97-002 na nagsasabing bawal ang cash advances na hindi agad ma-settle.

Halimbawa, si Gladys Ann Mayette Alastoy, isang opisyal, kumuha ng P175,750 para sa Teacher’s Day at iba pang gastusin pero hindi na-liquidate kahit P110,000 nito.