Dec 7, 2013

Western Railway Group D Openings 2013-14 - Total 5775 Vacancies (1154 Ex-Serviceman Posts)



Western Railway, Railway Recruitment Cell (RRC) Mumbai recruitment of Group D Vacancies. Application on the prescribed format from the Indian National candidates for filling up Group D - 5775 Vacancies from Open Market. Eligible candidates can apply on or before 14th January 2014.

Name of the Post    -  Total Vacancies

Gangman / Trackman  -  3534

Helper / Khallasi (Engg. / Mech. / Elect. / S&T / Comml. / Optg. Department of Divisions) -  932

Helper – II / Khallasi (Engg. / Mech. / Elect. / S&T Workshop) -  662

Helper – II / Khallasi  (TMC Organisation)  -  52

Platform Porter  -  595

Ex-serviceman (out of Total Vacancies):
1154 Posts (Gangman / Trackman - 707, Helper / Khallasi - 186, Helper – II / Khallasi - 142, Platform Porter - 119)

Pay Scale:
Pay Band Rs.5200-20200 with Grade Pay Rs.1800/-

Age Limit:
UR - 18 to 33 Years; OBC - 18 to 36 Years; SC/ST - 18 to 38 Years.

Educational Qualification:
Minimum 10th Pass / ITI Pass or equivalent at the time of applying. Academic qualification must be from a recognized Educational Institution / Board.

Selection Process:
Written Examination followed by Physical Efficiency Test (PET) and Medical Examination.

Examination Fee:
Rs100/- the fee shall be paid only in the form of crossed Indian Postal Order drawn in favor of "Assistant Personnel (Officer (Recruitment), RRC-WR" payable at Mumbai. The fee exempted from SC/ST, Ex-serviceman, PWD, Women, Minority Communities and Economically Backward Classes.

How To Apply:
Applications complete in all respects along with all relevant enclosures in an envelope super scribed as Application for the Post in Pay Band-I / GP-Rs.1800/- of Western Railway shall be sent by ordinary post to "Assistant Personnel Officer (Recruitment), Railway Recruitment Cell, Western Railway, Parcel Depot, Alibhai Premji Marg, Grant Road (East), Mumbai-400007" or drop box kept at RRC/WR office.

The last date for receipt of applications is 14/01/2014 upto 17:00 Hours. (Closing date for far-flung area candidates - 29/01/2014 up to 17:00 Hours).

Click here for more details...


Click Here to Download Employment Notification

Click Here to Download the Application Format

Click Here to Download the Annexures





Dec 2, 2013

How to add custom shipping price when create order programatically in Magento

How to add custom shipping price when create order programatically in Magento

Step 1: Add below code in custom order create function.

$shippingPrice = 20;
Mage::register('shipping_cost', $shippingPrice);

Step 2: Now open file app\code\core\Mage\Shipping\Model\Carrier\Flatrate.php
and add the code below.

Find code::
$method->setPrice($shippingPrice);
$method->setCost($shippingPrice);

And replace with::
if(Mage::registry('shipping_cost'))
{
$method->setPrice(Mage::registry('shipping_cost'));
$method->setCost(Mage::registry('shipping_cost'));
} else {
$method->setPrice('0.00');
$method->setCost('0.00');
}

Step 3: Done. Clear the cache.

Note: Override the file app\code\core\Mage\Shipping\Model\Carrier\Flatrate.php in local like : app\code\local\Mage\Shipping\Model\Carrier\Flatrate.php ... as you know :)