National Capital Territory of Delhi and All States - ਆਰਬੀਆਈ - Reserve Bank of India
RbiSearchHeader
Type of Document:
Function:
Department:
Search by Keyword:
Year:
Month:
From Date:
To Date:
Format:
Trending Searches
Past Searches
Useful Links
Failed to "?eval" string with this error: ---begin-message--- Syntax error in ?eval-ed string in line 1, column 34469: Encountered "/", but was expecting one of: <STRING_LITERAL> <RAW_STRING> "false" "true" <INTEGER> <DECIMAL> "." "+" "-" "!" "[" "(" "{" <ID> ---end-message--- The failing expression: ==> completeJson?eval [in template "20099#20125#25189026" at line 18, column 56] ---- FTL stack trace ("~" means nesting-related): - Failed at: #list completeJson?eval as jsonKey, j... [in template "20099#20125#25189026" at line 18, column 49] ----
1<#assign completeJson = content.getData()?remove_beginning("<p>")?remove_ending("</p>") ,
2 isVariableString = completeJson?is_string
3/>
4
5
6<#assign theme_display = themeDisplay />
7<#assign images_folder = theme_display.getPathThemeImages() />
8<#assign tabindexNum ="" />
9
10<!-- <div class="desktop-primary-navigation-wrapper full-width">-->
11 <nav class="container pl-0 pr-0" tabindex="0" aria-label="Primary Navigation Use tab keys to access menu items and Press enter key to activate.">
12 <div class="rbi-header-wrap full-width">
13 <div class="container-fluid rbi-header">
14 <div data-title="Primary Navigation" id="primary-navigation" data-intro="Smart navigation with clear segregations" class="rbi-primary-navigation">
15 <ul class="nav navbar-site" role="menu">
16 <!--Menu Level 1 start-->
17 <#if (content.getData())??>
18 <#list completeJson?eval as jsonKey, jsonValue>
19 <#list jsonValue as singleJsonValue>
20 <li class="nav top-level-menu ${singleJsonValue.ListInfo}" role="menu" aria-label="${singleJsonValue.FirstLevelText} menu item" >
21
22
23 <#if singleJsonValue.IsSecondLevelExists=="true">
24 <#assign topLevelMenuRole="role='menuitem'">
25 <#assign collapseText="Collapse">
26 <#else>
27 <#assign topLevelMenuRole="role='menuitem'">
28 <#assign collapseText=" ">
29 </#if>
30
31
32
33
34 <#if singleJsonValue.FirstLevelText??>
35
36 <span role="menu" class="page-level-one-text">
37 <a class="nav-link page-level-1" aria-label="${singleJsonValue.FirstLevelText} ${collapseText} menu item" ${topLevelMenuRole} href="${singleJsonValue.FirstLevelLink}" tabindex="0" >
38 <span class="text-truncate">${singleJsonValue.FirstLevelText}</span>
39 </a>
40 </span>
41 </#if>
42 <#if singleJsonValue.IsSecondLevelExists=="true">
43 <div class="top-mega-menu-wrap" role="menu" tabindex="0" aria-label="${singleJsonValue.FirstLevelText} Sub Menu Open">
44 <div class="repateable-img d-none"></div>
45 <div class="mega-menu-first-block equalColumns">
46 <div class="mega-menu-first-block-row">
47 <h2>${singleJsonValue.FirstLevelText}</h2>
48 <#if singleJsonValue.FirstLevelDescription?? && singleJsonValue.FirstLevelDescription!="">
49 <p tabindex="0" class="desc">${singleJsonValue.FirstLevelDescription}</p>
50 </#if>
51
52
53 </div>
54 </div>
55 <div class="mega-menu-second-blocks equalColumns">
56 <span class="top-level-page-name">${singleJsonValue.FirstLevelText}</span>
57 <!--Menu Level 2 start-->
58 <#if singleJsonValue.IsSecondLevelExists == "true" >
59 <ul class="second-level-menu test">
60 <#list singleJsonValue.SecondLevelData as secondLevelData>
61
62
63 <li class="second-level-page test" role="menuitem">
64 <!--${secondLevelData.SecondLevelLink}-->
65
66 <a class="second-level-menu-URL" target="_self"
67 href="${secondLevelData.SecondLevelLink}" tabindex="0">
68 ${secondLevelData.SecondLevelText}
69
70 </a>
71 <!--${secondLevelData.SecondLevelLink}-->
72 <#if secondLevelData.IsThirdLevelExists == "true" >
73 <div class="primary-nav-arrow-wrapper">
74
75 <span class="primary-nav-arrow" role="menu" tabindex="0" title="Open Submenu for ${secondLevelData.SecondLevelText}">
76
77 <img src="${images_folder}/rbi-main/nav-arrow.svg" alt="${secondLevelData.SecondLevelText}">
78
79 </span>
80
81 </div>
82 </#if>
83
84
85
86 <!--Menu Level 3 start-->
87 <div class="mega-menu-third-blocks equalColumns">
88 <span class="third-level-page-name">${secondLevelData.SecondLevelText}</span>
89 <#if secondLevelData.IsThirdLevelExists == "true" >
90 <ul class="third-level-menu">
91
92 <#list secondLevelData.ThirdLevelData as thirdLevelData>
93
94 <#if thirdLevelData.IsFourthLevelExists == "true" >
95 <#assign third_lavel_aria ="open sub menu for ${thirdLevelData.ThirdLevelText}" />
96 <#assign rolemenu = "role=menu" />
97 <#else>
98 <#assign third_lavel_aria ="${thirdLevelData.ThirdLevelText}" />
99 <#assign rolemenu = "" />
100
101 </#if>
102
103 <li class="third-level-page">
104 <span class="hide-text"></span>
105 <#if thirdLevelData.OpenNewTab?? >
106 <a href="${thirdLevelData.ThirdLevelLink}" ${rolemenu} aria-label="${third_lavel_aria}" target="_blank">${thirdLevelData.ThirdLevelText}</a>
107 <#else>
108 <a href="${thirdLevelData.ThirdLevelLink}" ${rolemenu} aria-label="${third_lavel_aria}" target="_self">${thirdLevelData.ThirdLevelText}</a>
109 </#if>
110
111
112 <!--Menu Level 4 start-->
113
114 <#if thirdLevelData.IsFourthLevelExists == "true" >
115 <ul class="fourth-level-menu">
116
117 <#list thirdLevelData.FourthLevelData as fourthLevelData>
118 <li class="fourth-level-page" role="menuitem" >
119 <a href="${fourthLevelData.FourthLevelLink}" target="_self">${fourthLevelData.FourthLevelText}</a>
120 </li>
121 </#list>
122 </ul>
123 </#if>
124
125
126 </li>
127
128</#list>
129</#if>
130
131 <!--json area-->
132
133 <#if secondLevelData.IsThirdLevelExists == "true" >
134 <#if secondLevelData.CommonSecondLevelData?? && secondLevelData.CommonSecondLevelData.Main.ImageLink != "">
135 <div class="pn-dynamic-data-wrapper">
136 <!--josn image-->
137 <#if secondLevelData.CommonSecondLevelData.Main.ImageLink != "">
138 <div class="pn-dynamic-data--img d-none">
139 <img src="${secondLevelData.CommonSecondLevelData.Main.ImageLink}" alt="RBI" title="RBI" tabindex="0">
140 </div>
141 </#if>
142 <!--josn image-->
143
144 <!--json dynamic content-->
145 <div class="pn-content-dynamic-wrapper">
146
147 <!--change as per recomendation-->
148 <ul> <h2>${languageUtil.get(locale, "quick-links")}</h2>
149 <#if secondLevelData.CommonSecondLevelData.Others??>
150 <#list secondLevelData.CommonSecondLevelData.Others as others>
151 <#if others.Title != "" >
152 <li class="pn-content-contents-row">
153 <div class="pn-content-contents-row--inner">
154 <div class="pn-dynamic-content-title">
155 <a href="${others.Link}" class="content-title--link">
156 ${others.Title}
157 </a>
158 </div>
159 <#if others.Description != "" >
160 <div class="pn-dynamic-content-desc">
161 ${others.Description}
162 </div>
163 </#if>
164 </div>
165 </li>
166 </#if>
167 </#list>
168 </#if>
169 </ul>
170 </div>
171 <!--json dynamic content-->
172 </div>
173 </#if>
174 </ul>
175 </#if>
176
177 <!--json area-->
178
179
180
181 </div>
182
183</li>
184
185</#list>
186</ul>
187</#if>
188<!--Menu Level 2 start-->
189</div>
190</div>
191</#if>
192
193<!--top-mega-menu-wrap ends-->
194
195</li>
196<!--Menu Level 1 ends-->
197</#list>
198</#list>
199</#if>
200
201</ul>
202</div>
203</div>
204</div>
205</nav>
206<!--</div>-->
207
208
209<script>
210 var clickedTab = false;
211
212 function tabPressEqualCol() {
213 // console.log('tabPressEqualCol function called');
214 if ($(window).width() < 1024) {
215 return false;
216 }
217
218 $('.top-level-menu').each(function() {
219 var getSecondLevelTabMenuLength = $(this).children(".top-mega-menu-wrap").find($(".second-level-menu li")).length;
220 //$(this).attr("aria-expanded", "false");
221 //console.log('working');
222 if (getSecondLevelTabMenuLength > 0) {
223 //console.log("working");
224 var isLevelOneisHidden = $(this).children(".top-mega-menu-wrap").is(":hidden");
225 console.log("isLevelOneisHidden --- " + !isLevelOneisHidden);
226 //for #35295
227 if (!isLevelOneisHidden) {
228 $(this).attr("aria-expanded", "true");
229 }
230 //end
231
232 //if (isLevelOneisHidden) {
233 // $(this).children(".top-mega-menu-wrap").show();
234 //const elms = document.querySelector('.top-level-menu');
235 //const getLeftPos = elms.getBoundingClientRect();
236 //const shiftLeftPos = getLeftPos.left;
237 //}
238
239 var maxHeight = 0;
240 var sameBlocks = ($(this).children(".top-mega-menu-wrap")).children(
241 '.equalColumns');
242 var thirdLevelBlockMenu = $(this).find('.mega-menu-third-blocks .third-level-menu');
243
244 sameBlocks.each(function (ev) {
245 $(this).css('height', 'fit-content');
246 if ($(this).height() > maxHeight) {
247 maxHeight = $(this).height();
248 }
249
250 });
251
252 sameBlocks.each(function (ev) {
253 if (maxHeight > 400) {
254 $(this).css('height', Math.round(maxHeight).toString() + 'px');
255 $(thirdLevelBlockMenu).css('height', Math.round(maxHeight).toString() + 'px');
256 } else {
257 $(this).css('height', '400px');
258 $(thirdLevelBlockMenu).css('height', '400px');
259 }
260 });
261 }
262 });
263
264
265
266
267
268 }
269
270 //tab key invoke//
271$(document).on('keyup', '.primary-nav-arrow', function (e) {
272 if ((e.keyCode === 9) || (e.keyCode === 13)) {
273 console.log('tab press');
274 tabPressEqualCol();
275 }
276});
277
278
279 $(document).ready(function () {
280
281 tabPressEqualCol();
282
283 //#35311 adding aria-expand on load
284 document.querySelectorAll('.top-level-menu').forEach(function(liEach) {
285 liEach.setAttribute('aria-expanded', 'false');
286 //liEach.setAttribute('aria-controls', 'menu');
287 });
288
289
290 //third level content title character length
291 $(".pn-dynamic-content-title a.content-title--link").each(function() {
292 var getFeedbackText=$(this).text().trim();
293 if (getFeedbackText.length > 43) {
294 var setFeedbackText = getFeedbackText.substring(0, 43);
295 $(this).text(setFeedbackText);
296 }
297 //console.log("getFeedbacktext --- " + getFeedbackText);
298 });
299
300 //third level content Desc character length
301 $(".pn-dynamic-content-desc").each(function() {
302 var getFeedbackText=$(this).text().trim();
303 if (getFeedbackText.length > 43) {
304 var setFeedbackText = getFeedbackText.substring(0, 43);
305 $(this).text(setFeedbackText);
306 }
307 //console.log("getFeedbacktext --- " + getFeedbackText);
308 });
309
310 // Check if 3rd level nav items exist
311 if($(".second-level-page").length){
312 $(".second-level-page").each(function() {
313 let thirdLevelNavItems = $(this).find('.third-level-page');
314 if(thirdLevelNavItems.length){
315 $(this).addClass('has-level-3');
316 }
317 });
318 }
319
320 // Check if 4th level nav items exist
321 if($(".third-level-page").length){
322 $(".third-level-page").each(function() {
323 let fourthLevelNavItems = $(this).find('.fourth-level-page');
324 if(fourthLevelNavItems.length){
325 $(this).addClass('is-level-4-accordion');
326 $(this).parents('.mega-menu-third-blocks').addClass('is-level-4-accordion-parent');
327 }
328 });
329 }
330
331 // Close Nav 1st level anchor text
332 $(".top-level-page-name").on('click', function () {
333 $(this).closest(".top-mega-menu-wrap").hide();
334 });
335
336 // Close Nav 2nd level anchor text
337 $(".third-level-page-name").on('click', function () {
338 $(this).parent(".mega-menu-third-blocks").removeClass('level-3-open');
339 $(this).siblings($(".third-level-menu")).hide();
340 });
341
342 // Nav 1st level anchor link with lchange for accessibilty fix line 300, 306 and 309
343 $('.top-level-menu> span a').on('click', function (e) {
344 if ($(this).hasClass('disableURL')) {
345 e.preventDefault();
346 }
347
348 if ($(window).width() < 1024) {
349 var getSecondLevelMenuLength = $(this).parent().siblings(".top-mega-menu-wrap").find($(
350 ".second-level-menu li")).length;
351 if (getSecondLevelMenuLength > 0) {
352 var menuOpen = $(this).parent().siblings(".top-mega-menu-wrap").is(":hidden");
353 if (menuOpen) {
354 $(this).parent().siblings(".top-mega-menu-wrap").show();
355 }
356 }
357 }
358 });
359
360 // Nav 1st level anchor link
361 $('.second-level-page a').on('click', function (e) {
362 if ($(this).hasClass('disableURL')) {
363 e.preventDefault();
364 }
365 if ($(window).width() < 1024) {
366 var getThirdLevelMenuLength = $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu li")).length;
367 if (getThirdLevelMenuLength > 0) {
368 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").addClass('level-3-open');
369 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu")).show();
370 //console.log("clicked....");
371 }
372 }
373 });
374
375
376
377 $('.second-level-page .primary-nav-arrow').on('click', function (e) {
378 if ($(this).hasClass('disableURL')) {
379 e.preventDefault();
380 }
381 if ($(window).width() < 1024) {
382 var getThirdLevelMenuLength = $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu li")).length;
383 if (getThirdLevelMenuLength > 0) {
384 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").addClass('level-3-open');
385 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu")).show();
386 //console.log("clicked....");
387 }
388 }
389 });
390
391 // Nav 1st level mouseenter event
392 $('.top-level-menu').mouseenter(function (e) {
393 if ($(window).width() < 1024) {
394 return false;
395 }
396
397 var getSecondLevelMenuLength = $(this).children(".top-mega-menu-wrap").find($(
398 ".second-level-menu li")).length;
399
400 //added
401 if (getSecondLevelMenuLength === 0) {
402 $(this).closest('.top-level-menu').find('.page-level-1').addClass("withoutDropdown");
403 //$(this).closest('.top-level-menu').find('.top-mega-menu-wrap').remove();
404 }
405 if (getSecondLevelMenuLength > 0) {
406 var isLevelOneisHidden = $(this).children(".top-mega-menu-wrap").is(":hidden");
407 if (isLevelOneisHidden) {
408 $(this).children(".top-mega-menu-wrap").show();
409 const elms = document.querySelector('.top-level-menu');
410 const getLeftPos = elms.getBoundingClientRect();
411 const shiftLeftPos = getLeftPos.left;
412 //#35311
413 $(this).attr("aria-expanded", "true");
414
415 //$(this).children(".top-mega-menu-wrap").css("left", "-" + shiftLeftPos + "px");
416
417 // added for equal column //
418 var maxHeight = 0;
419 var sameBlocks = ($(this).children(".top-mega-menu-wrap")).children(
420 '.equalColumns');
421 var thirdLevelBlockMenu = $(this).find('.mega-menu-third-blocks .third-level-menu');
422
423 sameBlocks.each(function (ev) {
424 $(this).css('height', 'fit-content');
425 if ($(this).height() > maxHeight) {
426 maxHeight = $(this).height();
427 }
428
429 });
430
431 sameBlocks.each(function (ev) {
432 if (maxHeight > 400) {
433 $(this).css('height', Math.round(maxHeight).toString() + 'px');
434 $(thirdLevelBlockMenu).css('height', Math.round(maxHeight).toString() + 'px');
435 } else {
436 $(this).css('height', '400px');
437 $(thirdLevelBlockMenu).css('height', '400px');
438 }
439
440 });
441 }
442 }
443
444 });
445
446 // Nav 1st level mouseleave event
447 $('.top-level-menu').mouseleave(function (e) {
448 if ($(window).width() < 1024) {
449 return false;
450 }
451 //#35311
452 $(this).attr("aria-expanded", "false");
453 $(this).children(".top-mega-menu-wrap").hide();
454 $(".third-level-menu").hide();
455 });
456
457 // Nav 2nd level mouseenter event
458 $(".second-level-page").mouseenter(function () {
459 if ($(window).width() < 1024) {
460 return false;
461 }
462 var thirdLevelMenu = $(this).find(".third-level-menu");
463 var thirdLevelMenuItems = $(this).find(".third-level-menu li");
464
465 if (thirdLevelMenuItems.length > 0) {
466 thirdLevelMenu.show();
467 }
468 });
469
470 // Nav 2nd level mouseleave event
471 $(".second-level-page").mouseleave(function () {
472 if ($(window).width() < 1024) {
473 return false;
474 }
475 var thirdLevelMenu = $(this).find(".third-level-menu");
476 thirdLevelMenu.hide();
477 });
478
479 // retriving top level url
480 $(document).on('keydown', '.top-level-menu', function (e) {
481 $('.nav.navbar-site').first().children('li').each(function () {
482 // $(this).find('a').attr('tabindex', '0');
483 // $(this).find('a').addClass('First-level-menu');
484 });
485
486 $(this).each(function () {
487 if ( $(this).children('.page-level-1').hasClass('disableURL') ) {
488 if (e.which == 13) {
489 if ($(this).find('.top-mega-menu-wrap').is(":hidden")) {
490 $(".top-mega-menu-wrap").hide();
491 $(this).find(".top-mega-menu-wrap").show();
492 clickedTab = true;
493 e.preventDefault();
494 } else {
495 $(this).find(".top-mega-menu-wrap").hide();
496 }
497 }
498 }
499
500 });
501 });
502
503 $(".rbi-primary-navigation a").each(function () {
504 var getPageLevelURL = $(this).attr("href");
505 if (((getPageLevelURL.indexOf("javascript") > -1)) || ((getPageLevelURL.indexOf(
506 "Javascript") > -1))) {
507 $(this).addClass("disableURL");
508
509 }
510
511
512 // added for collaborative events menu should not open
513 if ((getPageLevelURL.indexOf("href") > -1)) {
514 $(this).addClass("menu-not-open-collaborative");
515 }
516
517
518 });
519
520 /*blocked temprary need to know why shift key is desier*/
521 // $('.mega-menu-second-blocks .second-level-menu>li:last-child>a').on('keydown', function (e) {
522 // if( !e.shiftKey && e.keyCode ){
523 // $('.top-mega-menu-wrap').css('display', 'none');
524 // }
525 // });
526
527 var navMousedown = false;
528 $('.mega-menu-third-blocks .third-level-menu>li:last-child>a').on('mousedown', function () {
529 navMousedown = true;
530 });
531
532 $('.mega-menu-third-blocks .third-level-menu>li:last-child>a').on('focusout', function (event) {
533 $(this).keydown(function (e) {
534 if(!navMousedown) {
535 if( !e.shiftKey && e.keyCode ){
536 if( !$(this).parent('.is-level-4-accordion').hasClass('active') ){
537 $(".third-level-menu").css('display', 'none');
538 $(this).parent('.second-level-page').focus();
539 }
540 }
541 }
542 navMousedown = false;
543 });
544 });
545
546 $('.mega-menu-second-blocks .second-level-menu li.has-level-3').on('keydown', function (event) {
547 // on click of enter
548 if (event.which === 13) {
549 $(this).trigger('click').find('.third-level-menu').css('display', 'block');
550
551 }
552 });
553
554 $('.mega-menu-second-blocks .second-level-menu>li>a').on('focus', function (event) {
555 $(".third-level-menu").css('display', 'none');
556 });
557
558 $('.rbi-header .site-logo .custom-logo').on('focusout', function (event) {
559 $('.rbi-primary-navigation>ul>li:nth-child(2)>a').attr('tabindex', '0');
560 });
561
562 // On load get number of languages
563 let rbiLanguages = [];
564
565 if ($(".multipleLanguae-wrapper #languageSelector option").length) {
566 $(".multipleLanguae-wrapper #languageSelector option").each(function () {
567 let currentItem = {
568 languageText: $(this).text(),
569 languageURL: $(this).attr('value')
570 };
571 rbiLanguages.push(currentItem);
572
573 });
574 }
575
576
577 // Add languages to mobile list items
578 let langListItem = '';
579 let langListItemContainer = $(".pwa-primary-navigation-wrapper .nav>li:first-child").find(
580 '.second-level-menu');
581 langListItemContainer.empty();
582
583 if (rbiLanguages.length) {
584 $.each(rbiLanguages, function (key, value) {
585
586 if (value.languageURL == value.languageText) {
587 langListItem =
588 "<li class='second-level-page selected test' ><a href='javascript:void(0)' target='_self'>" +
589 value.languageText + "</a></li>";
590 } else {
591 langListItem =
592 "<li class='second-level-page test'><a href='" +
593 value.languageURL + "' target='_self'>" + value.languageText + "</a></li>";
594 }
595
596
597 langListItemContainer.append(langListItem);
598 });
599 }
600
601
602 });
603window.addEventListener("load", () => {
604 setTimeout(() => {
605 if(window.location.href.includes('lost-in-transmission-financial-markets-and-monetary-policy-duplicate-0')
606 ){
607 $(".multipleLanguae-wrapper .list ul li").each(function () {
608 $(this).removeClass('d-none')
609 });
610 }
611 }, 2000);
612 });
613
614</script>
615
616
617<script>
618/*$(document).ready(function(){
619 setTimeout(function() {
620 $('.rbi_home_hero_wrapper .owl-dots button').attr('aria-label', 'Slide Navigation');
621 $('.rbi_home_hero_wrapper .owl-dots button').attr('title', 'Slide Navigation');
622 }, 50);
623});*/
624</script>
Failed to "?eval" string with this error: ---begin-message--- Syntax error in ?eval-ed string in line 1, column 34469: Encountered "/", but was expecting one of: <STRING_LITERAL> <RAW_STRING> "false" "true" <INTEGER> <DECIMAL> "." "+" "-" "!" "[" "(" "{" <ID> ---end-message--- The failing expression: ==> completeJson?eval [in template "20099#20125#25189026" at line 18, column 56] ---- FTL stack trace ("~" means nesting-related): - Failed at: #list completeJson?eval as jsonKey, j... [in template "20099#20125#25189026" at line 18, column 49] ----
1<#assign completeJson = content.getData()?remove_beginning("<p>")?remove_ending("</p>") ,
2 isVariableString = completeJson?is_string
3/>
4
5
6<#assign theme_display = themeDisplay />
7<#assign images_folder = theme_display.getPathThemeImages() />
8<#assign tabindexNum ="" />
9
10<!-- <div class="desktop-primary-navigation-wrapper full-width">-->
11 <nav class="container pl-0 pr-0" tabindex="0" aria-label="Primary Navigation Use tab keys to access menu items and Press enter key to activate.">
12 <div class="rbi-header-wrap full-width">
13 <div class="container-fluid rbi-header">
14 <div data-title="Primary Navigation" id="primary-navigation" data-intro="Smart navigation with clear segregations" class="rbi-primary-navigation">
15 <ul class="nav navbar-site" role="menu">
16 <!--Menu Level 1 start-->
17 <#if (content.getData())??>
18 <#list completeJson?eval as jsonKey, jsonValue>
19 <#list jsonValue as singleJsonValue>
20 <li class="nav top-level-menu ${singleJsonValue.ListInfo}" role="menu" aria-label="${singleJsonValue.FirstLevelText} menu item" >
21
22
23 <#if singleJsonValue.IsSecondLevelExists=="true">
24 <#assign topLevelMenuRole="role='menuitem'">
25 <#assign collapseText="Collapse">
26 <#else>
27 <#assign topLevelMenuRole="role='menuitem'">
28 <#assign collapseText=" ">
29 </#if>
30
31
32
33
34 <#if singleJsonValue.FirstLevelText??>
35
36 <span role="menu" class="page-level-one-text">
37 <a class="nav-link page-level-1" aria-label="${singleJsonValue.FirstLevelText} ${collapseText} menu item" ${topLevelMenuRole} href="${singleJsonValue.FirstLevelLink}" tabindex="0" >
38 <span class="text-truncate">${singleJsonValue.FirstLevelText}</span>
39 </a>
40 </span>
41 </#if>
42 <#if singleJsonValue.IsSecondLevelExists=="true">
43 <div class="top-mega-menu-wrap" role="menu" tabindex="0" aria-label="${singleJsonValue.FirstLevelText} Sub Menu Open">
44 <div class="repateable-img d-none"></div>
45 <div class="mega-menu-first-block equalColumns">
46 <div class="mega-menu-first-block-row">
47 <h2>${singleJsonValue.FirstLevelText}</h2>
48 <#if singleJsonValue.FirstLevelDescription?? && singleJsonValue.FirstLevelDescription!="">
49 <p tabindex="0" class="desc">${singleJsonValue.FirstLevelDescription}</p>
50 </#if>
51
52
53 </div>
54 </div>
55 <div class="mega-menu-second-blocks equalColumns">
56 <span class="top-level-page-name">${singleJsonValue.FirstLevelText}</span>
57 <!--Menu Level 2 start-->
58 <#if singleJsonValue.IsSecondLevelExists == "true" >
59 <ul class="second-level-menu test">
60 <#list singleJsonValue.SecondLevelData as secondLevelData>
61
62
63 <li class="second-level-page test" role="menuitem">
64 <!--${secondLevelData.SecondLevelLink}-->
65
66 <a class="second-level-menu-URL" target="_self"
67 href="${secondLevelData.SecondLevelLink}" tabindex="0">
68 ${secondLevelData.SecondLevelText}
69
70 </a>
71 <!--${secondLevelData.SecondLevelLink}-->
72 <#if secondLevelData.IsThirdLevelExists == "true" >
73 <div class="primary-nav-arrow-wrapper">
74
75 <span class="primary-nav-arrow" role="menu" tabindex="0" title="Open Submenu for ${secondLevelData.SecondLevelText}">
76
77 <img src="${images_folder}/rbi-main/nav-arrow.svg" alt="${secondLevelData.SecondLevelText}">
78
79 </span>
80
81 </div>
82 </#if>
83
84
85
86 <!--Menu Level 3 start-->
87 <div class="mega-menu-third-blocks equalColumns">
88 <span class="third-level-page-name">${secondLevelData.SecondLevelText}</span>
89 <#if secondLevelData.IsThirdLevelExists == "true" >
90 <ul class="third-level-menu">
91
92 <#list secondLevelData.ThirdLevelData as thirdLevelData>
93
94 <#if thirdLevelData.IsFourthLevelExists == "true" >
95 <#assign third_lavel_aria ="open sub menu for ${thirdLevelData.ThirdLevelText}" />
96 <#assign rolemenu = "role=menu" />
97 <#else>
98 <#assign third_lavel_aria ="${thirdLevelData.ThirdLevelText}" />
99 <#assign rolemenu = "" />
100
101 </#if>
102
103 <li class="third-level-page">
104 <span class="hide-text"></span>
105 <#if thirdLevelData.OpenNewTab?? >
106 <a href="${thirdLevelData.ThirdLevelLink}" ${rolemenu} aria-label="${third_lavel_aria}" target="_blank">${thirdLevelData.ThirdLevelText}</a>
107 <#else>
108 <a href="${thirdLevelData.ThirdLevelLink}" ${rolemenu} aria-label="${third_lavel_aria}" target="_self">${thirdLevelData.ThirdLevelText}</a>
109 </#if>
110
111
112 <!--Menu Level 4 start-->
113
114 <#if thirdLevelData.IsFourthLevelExists == "true" >
115 <ul class="fourth-level-menu">
116
117 <#list thirdLevelData.FourthLevelData as fourthLevelData>
118 <li class="fourth-level-page" role="menuitem" >
119 <a href="${fourthLevelData.FourthLevelLink}" target="_self">${fourthLevelData.FourthLevelText}</a>
120 </li>
121 </#list>
122 </ul>
123 </#if>
124
125
126 </li>
127
128</#list>
129</#if>
130
131 <!--json area-->
132
133 <#if secondLevelData.IsThirdLevelExists == "true" >
134 <#if secondLevelData.CommonSecondLevelData?? && secondLevelData.CommonSecondLevelData.Main.ImageLink != "">
135 <div class="pn-dynamic-data-wrapper">
136 <!--josn image-->
137 <#if secondLevelData.CommonSecondLevelData.Main.ImageLink != "">
138 <div class="pn-dynamic-data--img d-none">
139 <img src="${secondLevelData.CommonSecondLevelData.Main.ImageLink}" alt="RBI" title="RBI" tabindex="0">
140 </div>
141 </#if>
142 <!--josn image-->
143
144 <!--json dynamic content-->
145 <div class="pn-content-dynamic-wrapper">
146
147 <!--change as per recomendation-->
148 <ul> <h2>${languageUtil.get(locale, "quick-links")}</h2>
149 <#if secondLevelData.CommonSecondLevelData.Others??>
150 <#list secondLevelData.CommonSecondLevelData.Others as others>
151 <#if others.Title != "" >
152 <li class="pn-content-contents-row">
153 <div class="pn-content-contents-row--inner">
154 <div class="pn-dynamic-content-title">
155 <a href="${others.Link}" class="content-title--link">
156 ${others.Title}
157 </a>
158 </div>
159 <#if others.Description != "" >
160 <div class="pn-dynamic-content-desc">
161 ${others.Description}
162 </div>
163 </#if>
164 </div>
165 </li>
166 </#if>
167 </#list>
168 </#if>
169 </ul>
170 </div>
171 <!--json dynamic content-->
172 </div>
173 </#if>
174 </ul>
175 </#if>
176
177 <!--json area-->
178
179
180
181 </div>
182
183</li>
184
185</#list>
186</ul>
187</#if>
188<!--Menu Level 2 start-->
189</div>
190</div>
191</#if>
192
193<!--top-mega-menu-wrap ends-->
194
195</li>
196<!--Menu Level 1 ends-->
197</#list>
198</#list>
199</#if>
200
201</ul>
202</div>
203</div>
204</div>
205</nav>
206<!--</div>-->
207
208
209<script>
210 var clickedTab = false;
211
212 function tabPressEqualCol() {
213 // console.log('tabPressEqualCol function called');
214 if ($(window).width() < 1024) {
215 return false;
216 }
217
218 $('.top-level-menu').each(function() {
219 var getSecondLevelTabMenuLength = $(this).children(".top-mega-menu-wrap").find($(".second-level-menu li")).length;
220 //$(this).attr("aria-expanded", "false");
221 //console.log('working');
222 if (getSecondLevelTabMenuLength > 0) {
223 //console.log("working");
224 var isLevelOneisHidden = $(this).children(".top-mega-menu-wrap").is(":hidden");
225 console.log("isLevelOneisHidden --- " + !isLevelOneisHidden);
226 //for #35295
227 if (!isLevelOneisHidden) {
228 $(this).attr("aria-expanded", "true");
229 }
230 //end
231
232 //if (isLevelOneisHidden) {
233 // $(this).children(".top-mega-menu-wrap").show();
234 //const elms = document.querySelector('.top-level-menu');
235 //const getLeftPos = elms.getBoundingClientRect();
236 //const shiftLeftPos = getLeftPos.left;
237 //}
238
239 var maxHeight = 0;
240 var sameBlocks = ($(this).children(".top-mega-menu-wrap")).children(
241 '.equalColumns');
242 var thirdLevelBlockMenu = $(this).find('.mega-menu-third-blocks .third-level-menu');
243
244 sameBlocks.each(function (ev) {
245 $(this).css('height', 'fit-content');
246 if ($(this).height() > maxHeight) {
247 maxHeight = $(this).height();
248 }
249
250 });
251
252 sameBlocks.each(function (ev) {
253 if (maxHeight > 400) {
254 $(this).css('height', Math.round(maxHeight).toString() + 'px');
255 $(thirdLevelBlockMenu).css('height', Math.round(maxHeight).toString() + 'px');
256 } else {
257 $(this).css('height', '400px');
258 $(thirdLevelBlockMenu).css('height', '400px');
259 }
260 });
261 }
262 });
263
264
265
266
267
268 }
269
270 //tab key invoke//
271$(document).on('keyup', '.primary-nav-arrow', function (e) {
272 if ((e.keyCode === 9) || (e.keyCode === 13)) {
273 console.log('tab press');
274 tabPressEqualCol();
275 }
276});
277
278
279 $(document).ready(function () {
280
281 tabPressEqualCol();
282
283 //#35311 adding aria-expand on load
284 document.querySelectorAll('.top-level-menu').forEach(function(liEach) {
285 liEach.setAttribute('aria-expanded', 'false');
286 //liEach.setAttribute('aria-controls', 'menu');
287 });
288
289
290 //third level content title character length
291 $(".pn-dynamic-content-title a.content-title--link").each(function() {
292 var getFeedbackText=$(this).text().trim();
293 if (getFeedbackText.length > 43) {
294 var setFeedbackText = getFeedbackText.substring(0, 43);
295 $(this).text(setFeedbackText);
296 }
297 //console.log("getFeedbacktext --- " + getFeedbackText);
298 });
299
300 //third level content Desc character length
301 $(".pn-dynamic-content-desc").each(function() {
302 var getFeedbackText=$(this).text().trim();
303 if (getFeedbackText.length > 43) {
304 var setFeedbackText = getFeedbackText.substring(0, 43);
305 $(this).text(setFeedbackText);
306 }
307 //console.log("getFeedbacktext --- " + getFeedbackText);
308 });
309
310 // Check if 3rd level nav items exist
311 if($(".second-level-page").length){
312 $(".second-level-page").each(function() {
313 let thirdLevelNavItems = $(this).find('.third-level-page');
314 if(thirdLevelNavItems.length){
315 $(this).addClass('has-level-3');
316 }
317 });
318 }
319
320 // Check if 4th level nav items exist
321 if($(".third-level-page").length){
322 $(".third-level-page").each(function() {
323 let fourthLevelNavItems = $(this).find('.fourth-level-page');
324 if(fourthLevelNavItems.length){
325 $(this).addClass('is-level-4-accordion');
326 $(this).parents('.mega-menu-third-blocks').addClass('is-level-4-accordion-parent');
327 }
328 });
329 }
330
331 // Close Nav 1st level anchor text
332 $(".top-level-page-name").on('click', function () {
333 $(this).closest(".top-mega-menu-wrap").hide();
334 });
335
336 // Close Nav 2nd level anchor text
337 $(".third-level-page-name").on('click', function () {
338 $(this).parent(".mega-menu-third-blocks").removeClass('level-3-open');
339 $(this).siblings($(".third-level-menu")).hide();
340 });
341
342 // Nav 1st level anchor link with lchange for accessibilty fix line 300, 306 and 309
343 $('.top-level-menu> span a').on('click', function (e) {
344 if ($(this).hasClass('disableURL')) {
345 e.preventDefault();
346 }
347
348 if ($(window).width() < 1024) {
349 var getSecondLevelMenuLength = $(this).parent().siblings(".top-mega-menu-wrap").find($(
350 ".second-level-menu li")).length;
351 if (getSecondLevelMenuLength > 0) {
352 var menuOpen = $(this).parent().siblings(".top-mega-menu-wrap").is(":hidden");
353 if (menuOpen) {
354 $(this).parent().siblings(".top-mega-menu-wrap").show();
355 }
356 }
357 }
358 });
359
360 // Nav 1st level anchor link
361 $('.second-level-page a').on('click', function (e) {
362 if ($(this).hasClass('disableURL')) {
363 e.preventDefault();
364 }
365 if ($(window).width() < 1024) {
366 var getThirdLevelMenuLength = $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu li")).length;
367 if (getThirdLevelMenuLength > 0) {
368 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").addClass('level-3-open');
369 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu")).show();
370 //console.log("clicked....");
371 }
372 }
373 });
374
375
376
377 $('.second-level-page .primary-nav-arrow').on('click', function (e) {
378 if ($(this).hasClass('disableURL')) {
379 e.preventDefault();
380 }
381 if ($(window).width() < 1024) {
382 var getThirdLevelMenuLength = $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu li")).length;
383 if (getThirdLevelMenuLength > 0) {
384 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").addClass('level-3-open');
385 $(this).closest('.second-level-page').children(".mega-menu-third-blocks").find($(".third-level-menu")).show();
386 //console.log("clicked....");
387 }
388 }
389 });
390
391 // Nav 1st level mouseenter event
392 $('.top-level-menu').mouseenter(function (e) {
393 if ($(window).width() < 1024) {
394 return false;
395 }
396
397 var getSecondLevelMenuLength = $(this).children(".top-mega-menu-wrap").find($(
398 ".second-level-menu li")).length;
399
400 //added
401 if (getSecondLevelMenuLength === 0) {
402 $(this).closest('.top-level-menu').find('.page-level-1').addClass("withoutDropdown");
403 //$(this).closest('.top-level-menu').find('.top-mega-menu-wrap').remove();
404 }
405 if (getSecondLevelMenuLength > 0) {
406 var isLevelOneisHidden = $(this).children(".top-mega-menu-wrap").is(":hidden");
407 if (isLevelOneisHidden) {
408 $(this).children(".top-mega-menu-wrap").show();
409 const elms = document.querySelector('.top-level-menu');
410 const getLeftPos = elms.getBoundingClientRect();
411 const shiftLeftPos = getLeftPos.left;
412 //#35311
413 $(this).attr("aria-expanded", "true");
414
415 //$(this).children(".top-mega-menu-wrap").css("left", "-" + shiftLeftPos + "px");
416
417 // added for equal column //
418 var maxHeight = 0;
419 var sameBlocks = ($(this).children(".top-mega-menu-wrap")).children(
420 '.equalColumns');
421 var thirdLevelBlockMenu = $(this).find('.mega-menu-third-blocks .third-level-menu');
422
423 sameBlocks.each(function (ev) {
424 $(this).css('height', 'fit-content');
425 if ($(this).height() > maxHeight) {
426 maxHeight = $(this).height();
427 }
428
429 });
430
431 sameBlocks.each(function (ev) {
432 if (maxHeight > 400) {
433 $(this).css('height', Math.round(maxHeight).toString() + 'px');
434 $(thirdLevelBlockMenu).css('height', Math.round(maxHeight).toString() + 'px');
435 } else {
436 $(this).css('height', '400px');
437 $(thirdLevelBlockMenu).css('height', '400px');
438 }
439
440 });
441 }
442 }
443
444 });
445
446 // Nav 1st level mouseleave event
447 $('.top-level-menu').mouseleave(function (e) {
448 if ($(window).width() < 1024) {
449 return false;
450 }
451 //#35311
452 $(this).attr("aria-expanded", "false");
453 $(this).children(".top-mega-menu-wrap").hide();
454 $(".third-level-menu").hide();
455 });
456
457 // Nav 2nd level mouseenter event
458 $(".second-level-page").mouseenter(function () {
459 if ($(window).width() < 1024) {
460 return false;
461 }
462 var thirdLevelMenu = $(this).find(".third-level-menu");
463 var thirdLevelMenuItems = $(this).find(".third-level-menu li");
464
465 if (thirdLevelMenuItems.length > 0) {
466 thirdLevelMenu.show();
467 }
468 });
469
470 // Nav 2nd level mouseleave event
471 $(".second-level-page").mouseleave(function () {
472 if ($(window).width() < 1024) {
473 return false;
474 }
475 var thirdLevelMenu = $(this).find(".third-level-menu");
476 thirdLevelMenu.hide();
477 });
478
479 // retriving top level url
480 $(document).on('keydown', '.top-level-menu', function (e) {
481 $('.nav.navbar-site').first().children('li').each(function () {
482 // $(this).find('a').attr('tabindex', '0');
483 // $(this).find('a').addClass('First-level-menu');
484 });
485
486 $(this).each(function () {
487 if ( $(this).children('.page-level-1').hasClass('disableURL') ) {
488 if (e.which == 13) {
489 if ($(this).find('.top-mega-menu-wrap').is(":hidden")) {
490 $(".top-mega-menu-wrap").hide();
491 $(this).find(".top-mega-menu-wrap").show();
492 clickedTab = true;
493 e.preventDefault();
494 } else {
495 $(this).find(".top-mega-menu-wrap").hide();
496 }
497 }
498 }
499
500 });
501 });
502
503 $(".rbi-primary-navigation a").each(function () {
504 var getPageLevelURL = $(this).attr("href");
505 if (((getPageLevelURL.indexOf("javascript") > -1)) || ((getPageLevelURL.indexOf(
506 "Javascript") > -1))) {
507 $(this).addClass("disableURL");
508
509 }
510
511
512 // added for collaborative events menu should not open
513 if ((getPageLevelURL.indexOf("href") > -1)) {
514 $(this).addClass("menu-not-open-collaborative");
515 }
516
517
518 });
519
520 /*blocked temprary need to know why shift key is desier*/
521 // $('.mega-menu-second-blocks .second-level-menu>li:last-child>a').on('keydown', function (e) {
522 // if( !e.shiftKey && e.keyCode ){
523 // $('.top-mega-menu-wrap').css('display', 'none');
524 // }
525 // });
526
527 var navMousedown = false;
528 $('.mega-menu-third-blocks .third-level-menu>li:last-child>a').on('mousedown', function () {
529 navMousedown = true;
530 });
531
532 $('.mega-menu-third-blocks .third-level-menu>li:last-child>a').on('focusout', function (event) {
533 $(this).keydown(function (e) {
534 if(!navMousedown) {
535 if( !e.shiftKey && e.keyCode ){
536 if( !$(this).parent('.is-level-4-accordion').hasClass('active') ){
537 $(".third-level-menu").css('display', 'none');
538 $(this).parent('.second-level-page').focus();
539 }
540 }
541 }
542 navMousedown = false;
543 });
544 });
545
546 $('.mega-menu-second-blocks .second-level-menu li.has-level-3').on('keydown', function (event) {
547 // on click of enter
548 if (event.which === 13) {
549 $(this).trigger('click').find('.third-level-menu').css('display', 'block');
550
551 }
552 });
553
554 $('.mega-menu-second-blocks .second-level-menu>li>a').on('focus', function (event) {
555 $(".third-level-menu").css('display', 'none');
556 });
557
558 $('.rbi-header .site-logo .custom-logo').on('focusout', function (event) {
559 $('.rbi-primary-navigation>ul>li:nth-child(2)>a').attr('tabindex', '0');
560 });
561
562 // On load get number of languages
563 let rbiLanguages = [];
564
565 if ($(".multipleLanguae-wrapper #languageSelector option").length) {
566 $(".multipleLanguae-wrapper #languageSelector option").each(function () {
567 let currentItem = {
568 languageText: $(this).text(),
569 languageURL: $(this).attr('value')
570 };
571 rbiLanguages.push(currentItem);
572
573 });
574 }
575
576
577 // Add languages to mobile list items
578 let langListItem = '';
579 let langListItemContainer = $(".pwa-primary-navigation-wrapper .nav>li:first-child").find(
580 '.second-level-menu');
581 langListItemContainer.empty();
582
583 if (rbiLanguages.length) {
584 $.each(rbiLanguages, function (key, value) {
585
586 if (value.languageURL == value.languageText) {
587 langListItem =
588 "<li class='second-level-page selected test' ><a href='javascript:void(0)' target='_self'>" +
589 value.languageText + "</a></li>";
590 } else {
591 langListItem =
592 "<li class='second-level-page test'><a href='" +
593 value.languageURL + "' target='_self'>" + value.languageText + "</a></li>";
594 }
595
596
597 langListItemContainer.append(langListItem);
598 });
599 }
600
601
602 });
603window.addEventListener("load", () => {
604 setTimeout(() => {
605 if(window.location.href.includes('lost-in-transmission-financial-markets-and-monetary-policy-duplicate-0')
606 ){
607 $(".multipleLanguae-wrapper .list ul li").each(function () {
608 $(this).removeClass('d-none')
609 });
610 }
611 }, 2000);
612 });
613
614</script>
615
616
617<script>
618/*$(document).ready(function(){
619 setTimeout(function() {
620 $('.rbi_home_hero_wrapper .owl-dots button').attr('aria-label', 'Slide Navigation');
621 $('.rbi_home_hero_wrapper .owl-dots button').attr('title', 'Slide Navigation');
622 }, 50);
623});*/
624</script>
Asset Publisher
National Capital Territory of Delhi and All States
(Rs. lakh) | |||||||||||
NATIONAL CAPITAL TERRITORY OF DELHI |
ALL STATES | ||||||||||
2001-02 |
2002-03 |
2002-03 |
2003-04 |
2001-02 |
2002-03 |
2002-03 |
2003-04 | ||||
Items | (Accounts) |
(Budget |
(Revised |
(Budget |
(Accounts) |
(Budget |
(Revised |
(Budget | |||
Estimates) |
Estimates) |
Estimates) |
Estimates) |
Estimates) |
Estimates) | ||||||
1 | 2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | |||
TOTAL REVENUES (I+II) |
625,371 |
668,269 |
679,048 |
727,240 |
2,5567,517 |
30,354,742 |
29,400,869 |
33,171,594 | |||
I |
TAX REVENUES (A+B) |
489,675 |
567,900 |
542,500 |
611,400 |
18,031,193 |
21,170,315 |
20,250,265 |
22,690,907 | ||
A. |
State’s own Tax Revenue (1 to 3) |
489,675 |
567,900 |
542,500 |
611,400 |
12,809,666 |
14,910,797 |
14,514,114 |
16,392,313 | ||
1 |
Taxes on Income (i+ii) |
— |
— |
— |
— |
305,795 |
274,499 |
337,183 |
388,448 | ||
i) | Agricultural Income Tax | — |
— | — |
— | 6,052 |
15,437 |
7,431 |
10,982 | ||
ii) | Taxes on Professions,Trades, | ||||||||||
Callings and Employment |
— | — |
— | — |
299,743 |
259,063 |
329,752 |
377,466 | |||
2 | Taxes on Property and Capital | ||||||||||
transactions (i to iii) |
28,317 |
40,000 |
45,000 |
50,000 |
1,298,432 |
1,585,488 |
1,551,423 |
1,735,673 | |||
i) | Land Revenue | 1 |
— | — |
— | 171,752 |
262,604 |
184,192 |
225,419 | ||
ii) | Stamps and Registration fees | 28,316 |
40,000 |
45,000 |
50,000 |
1,118,278 |
1,314,375 |
1,359,075 |
1,501,431 | ||
iii) | Urban immovable Property Tax | — |
— | — |
— | 8,402 |
8,509 |
8,156 |
8,823 | ||
3 | Taxes on commodities and services | ||||||||||
(i to vii) | 461,358 |
527,900 |
497,500 |
561,400 |
11,205,439 |
13,050,810 |
12,625,508 |
14,268,192 | |||
i) |
Sales Tax (a to f) | 370,401 |
419,300 |
394,800 |
439,500 |
7,688,518 |
9,049,574 |
8,664,137 |
9,844,906 | ||
a) State Sales Tax | 300,706 |
319,280 |
315,780 |
349,480 |
5,979,733 |
7,152,895 |
6,857,734 |
7,774,507 | |||
b) Central Sales Tax |
69,684 |
100,000 |
79,000 |
90,000 |
1,098,568 |
1,178,069 |
1,098,271 |
1,231,608 | |||
c) Sales Tax on Motor Spirit | |||||||||||
and Lubricants | — |
— | — |
— | 564,497 |
699,554 |
685,807 |
799,343 | |||
d) Surcharge on Sales Tax |
— | — |
— | — |
4,472 |
3,409 |
4,331 |
4,981 | |||
e) Receipts of Turnover Tax |
— | — |
— | — |
1,027 |
566 | 569 |
571 | |||
f) Other Receipts | 11 |
20 | 20 |
20 | 40,221 |
15,081 |
17,425 |
33,896 | |||
ii) | State Excise | 60,641 |
74,000 |
72,500 |
85,000 |
1,711,010 |
2,019,039 |
1,928,153 |
2,157,439 | ||
iii) | Taxes on Vehicles | 16,676 |
19,000 |
19,000 |
21,000 |
764,437 |
834,847 |
845,625 |
947,473 | ||
iv) | Taxes on Goods and Passengers | 882 |
700 | 200 |
500 | 367,135 |
351,548 |
424,978 |
473,279 | ||
v) | Taxes and Duties on Electricity | — |
— | — |
— | 469,161 |
569,309 |
535,930 |
595,320 | ||
vi) | Entertainment Tax | 4,665 |
5,800 |
4,500 |
6,000 |
79,866 |
93,258 |
86,366 |
92,131 | ||
vii) | Other Taxes and Duties | 8,093 |
9,100 |
6,500 |
9,400 |
125,312 |
133,235 |
140,319 |
157,644 | ||
B. |
Share in Central Taxes |
— |
— |
— |
— |
5,221,527 |
6,259,518 |
5,736,151 |
6,298,594 | ||
II |
NON-TAX REVENUE (C+D) |
135,696 |
100,369 |
136,548 |
115,840 |
7,536,324 |
9,184,427 |
9,150,604 |
10,480,687 | ||
C. |
State’s own Non-Tax Revenue (1 to 6) |
87,606 |
51,572 |
81,360 |
64,354 |
3,228,090 |
3,774,212 |
3,595,638 |
4,138,529 | ||
1 | Interest Receipts | 78,982 |
45,262 |
73,060 |
55,754 |
920,520 |
936,297 |
886,890 |
929,589 | ||
2 | Dividends and Profits | 717 |
606 |
600 |
700 |
12,846 |
20,678 |
32,326 |
22,076 | ||
3 | General Services | 4,008 |
3,061 |
4,432 |
4,582 |
796,468 |
1,133,627 |
980,887 |
1,269,346 | ||
of which: State lotteries | — |
— | — |
— | 442,033 |
756,380 |
640,922 |
857,816 | |||
4 | Social Services (i to viii) | 1,904 |
1,290 |
2,030 |
2,080 |
255,803 |
279,930 |
281,289 |
316,940 | ||
i) | Education, Sports, Art and Culture | 544 |
417 | 600 |
625 | 66,391 |
79,095 |
79,157 |
89,583 | ||
ii) | Medical, Public Health and | ||||||||||
Family Welfare | 872 |
571 | 1,050 |
1,075 |
62,209 |
84,843 |
80,562 |
77,891 | |||
iii) | Housing |
168 | 155 |
200 | 200 |
12,784 |
17,153 |
19,896 |
31,714 | ||
iv) | Urban Development | 86 |
2 | 8 |
8 | 9,611 |
15,033 |
15,087 |
16,113 |
Appendix I : Revenue Receipts of Individual States (Concld.)
(Rs. lakh) | ||||||||||
NATIONAL CAPITAL TERRITORY OF DELHI |
ALL STATES | |||||||||
2001-02 |
2002-03 |
2002-03 |
2003-04 |
2001-02 |
2002-03 |
2002-03 |
2003-04 | |||
Items | (Accounts) |
(Budget |
(Revised |
(Budget |
(Accounts) |
(Budget |
(Revised |
(Budget | ||
Estimates) |
Estimates) |
Estimates) |
Estimates) |
Estimates) |
Estimates) | |||||
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 | ||
v) | Labour and Employment | 201 |
102 | 150 |
150 | 12,048 |
12,631 |
11,564 |
12,992 | |
vi) | Social Security and Welfare | 32 |
40 | 19 |
19 | 20,853 |
18,849 |
16,651 |
17,940 | |
vii) | Water Supply and Sanitation | — |
— | — |
— | 33,030 |
35,501 |
35,166 |
38,841 | |
viii)Others | 1 |
3 | 3 |
3 | 38,877 |
16,825 |
23,206 |
31,866 | ||
5 | Fiscal Services | — |
— |
— |
— |
15 |
7 |
9 |
9 | |
6 | Economic Services (i to xvii) | 1,995 |
1,353 |
1,238 |
1,238 |
1,242,438 |
1,403,673 |
1,414,237 |
1,600,569 | |
i) | Crop Husbandry | 40 |
55 | 40 |
40 | 29,079 |
29,202 |
22,405 |
25,305 | |
ii) | Animal Husbandry | 58 |
58 | 48 |
48 | 6,261 |
7,917 |
8,608 |
9,261 | |
iii) | Fisheries |
11 | 13 |
6 | 6 |
4,236 |
5,745 |
6,333 |
7,329 | |
iv) | Forestry and Wildlife | 4 |
4 | 7 |
7 | 146,625 |
192,578 |
193,343 |
191,293 | |
v) | Plantations |
— | — |
— | — |
206 | 277 |
277 | 291 | |
vi) |
Co-operation | 9 |
9 | 10 |
10 | 21,546 |
23,383 |
24,657 |
47,785 | |
vii) | Other Agricultural Programmes | 2 |
2 | 2 |
2 | 5,201 |
5,638 |
4,856 |
5,417 | |
viii) Major and Medium Irrigation projects |
258 | 290 |
180 | 180 |
63,403 |
101,445 |
79,307 |
117,453 | ||
ix) | Minor Irrigations | 10 |
14 | 5 |
5 | 8,696 |
10,629 |
8,147 |
10,133 | |
x) | Power |
5 | 7 |
— | — |
77,250 |
92,677 |
100,861 |
113,528 | |
xi) | Petroleum |
— | — |
— | — |
45,685 |
50,352 |
61,412 |
84,352 | |
xii) | Village and Small Industries | 748 |
543 | 512 |
512 | 6,904 |
6,965 |
7,263 |
7,997 | |
xiii)Industries@ | 12 |
21 | 12 |
12 | 519,455 |
609,324 |
599,355 |
676,984 | ||
xiv) | Ports and Light Houses | — |
— | — |
— | 10,918 |
6,350 |
6,101 |
7,245 | |
xv) | Road Transport | — |
— | — |
— | 72,604 |
74,822 |
67,724 |
75,539 | |
xvi) | Tourism |
— | — |
— | — |
2,029 |
2,456 |
3,355 |
4,029 | |
xvii) Others* | 838 |
337 | 416 |
416 | 222,340 |
183,913 |
220,233 |
216,628 | ||
D. |
Grants from the Centre (1 to 5) |
48,090 |
48,797 |
55,188 |
51,486 |
4,308,234 |
5,410,215 |
5,554,966 |
6,342,158 | |
1 | State Plan Schemes | 11,339 |
10,860 |
16,689 |
12,840 |
1,943,048 |
2,306,104 |
2,313,537 |
2,824,378 | |
of which: Advance release of | ||||||||||
Plan Assistance for Natural Calamities | — |
— | — |
— | — |
— | — |
— | ||
2 | Central Plan Schemes | — |
— | — |
— | 127,052 |
389,777 |
40,2031 |
474,948 | |
3 | Centrally Sponsored Schemes | 4,251 |
5,437 |
5,999 |
6,146 |
837,953 |
1,415,058 |
1,379,480 |
1,724,982 | |
4 | NEC/Special Plan Scheme | — |
— | — |
— | 21,489 |
63,074 |
68,963 |
79,647 | |
5 | Non-Plan Grants (a to c) | 32,500 |
32,500 |
32,500 |
32,500 |
1,378,692 |
1,236,202 |
1,390,955 |
1,238,203 | |
a) Statutory Grants |
32,500 |
32,500 |
32,500 |
32,500 |
958,421 |
913,803 |
940,261 |
881,325 | ||
b) Grants for relief on account | ||||||||||
of Natural Calamities | — |
— | — |
— | 59,489 |
51,244 |
73,309 |
48,657 | ||
c) Others | — |
— | — |
— | 360,782 |
271,155 |
377,385 |
308,221 |
Notes to Appendix I :
1. Additional Resource Mobilisation (ARM) measures are not included in Appindex I; the details of the same are presented in Statement 24. The ARM proposed by the State Governments for 2003-2004 is estimated at Rs.2,574 crore.
2. Where details are not available in respect of one or several sub-groups under a major group, the relevant amount is shown against the sub-group ‘Others’ except the Sales Tax where the relevant amount is shown against the sub-group ‘State Sales Tax’.
3. In case of ‘Grants from the Centre’, where details are not available in respect of ‘State Plan Scheme’ ‘Centre Plan Scheme’ ‘Centrally Sponsored Schemes’ and ‘Non-Plan Grants’, the relevant amount is shown against ‘State Plan Schemes’. Similarly, where the break-up of grants for ‘Central Plan Schemes’ and ‘Centrally Sponsored Schemes’ are not available, the relevant amount is shown against ‘Centrally Sponsored Schemes’.
4. Figures in respect of Bihar, Jammu & Kashmir, Jharkhand and Nagaland for 2001-2002 relate to revised estimates.
@ Includes Non-Ferrous Mining and Metallurgical Industries and Other Industries.
* Includes receipts from Dairy Development, Land Reforms, Other Rural Development Programmmes, Hill Areas, Civil Aviation, Inland Water Transport, Foreign Trade and Export Promotion, Non-conventional Energy Sources, General Economic Services, Civil Supplies, Roads and Bridges, etc.
— Nil/Not available.
RbiTtsCommonUtility
Related Assets
ਇਹ ਵੈੱਬਸਾਈਟ ਤੁਹਾਡੇ ਵਰਤੋਂਕਾਰ ਅਨੁਭਵ ਦੇ ਅਨੁਕੂਲਨ ਲਈ ਕੂਕੀਜ਼ ਦੀ ਵਰਤੋਂ ਕਰਦੀ ਹੈ .