MM-2024
-
बीजी की आय के प्रेषण के लिए केंद्रीकृत बैंक खाता
19 Feb, 2024
-
माल, सेवाओं और एलएसटीके निविदाओं की खरीद के लिए सामग्री प्रबंधन (एमएम) संगठन संरचना का केंद्रीकरण
15 Feb, 2024
-
GeM निविदाओं में सुरक्षा जमा/प्रदर्शन सुरक्षा
5 Feb, 2024
-
दरों की तर्कसंगतता सुनिश्चित करने के लिए कार्यप्रणाली के संबंध में स्पष्टीकरण
19 Jan, 2024
-
वस्तुओं, सेवाओं और एलएसटीके निविदाओं की खरीद के लिए सामग्री प्रबंधन (एमएम) संगठन संरचना का केंद्रीकरण
18 Jan, 2024
-
एनटीए और सीपीडी के बीच फाइलों की आवाजाही के लिए रूपरेखा-तत्संबंधी।
12 Jan, 2024
-
बाहरी विशेषज्ञ परिषद ('ओईसी') द्वारा मध्यस्थता/सुलह के माध्यम से विवादों के समाधान के लिए संशोधित दिशानिर्देश
12 Jan, 2024
-
वस्तुओं, सेवाओं और एलएसटीके निविदाओं की खरीद के लिए सामग्री प्रबंधन (एमएम) संगठनात्मक संरचना के केंद्रीकरण के हिस्से के रूप में मामलों को संभालना
9 Jan, 2024
-
विक्रेता प्रतिबंध मामलों के लिए जांच रिपोर्ट प्रस्तुत करने के लिए दिशानिर्देश
4 Jan, 2024
Java method "com.sun.proxy.$Proxy163.getFileEntry(long)" threw an exception when invoked on com.sun.proxy.$Proxy163 object "com.liferay.document.library.opener.google.drive.web.internal.service.DLOpenerGoogleDriveDLAppServiceWrapper@60ae4b44"; see cause exception in the Java stack trace. ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign fileEntry = dlAppService.getF... [in template "44029#44070#2170707" at line 45, column 65] ----
1<#assign dlAppService = serviceLocator.findService("com.liferay.document.library.kernel.service.DLAppService")>
2<#assign dlService = serviceLocator.findService("com.liferay.document.library.kernel.service.DLFileEntryLocalService")>
3<#assign ddmFieldLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMFieldLocalService")/>
4<div class="accordion-container bod">
5<h6 class="accordion-header" tabindex="0" role="link" aria-expanded="false">
6<#assign categories = entry.getCategories() />
7 <#if categories?has_content>
8 <#list categories as category>
9 ${category.getName()}
10 <#assign accId = category.getName()?replace('&[a-zA-Z]+;', '', 'r')?replace('[^a-zA-Z0-9. ]', '', 'r') >
11 </#list>
12 </#if>
13</h6>
14<#if entries?has_content>
15 <div class="accordion-content">
16 <ul class="list-group list-group-flush oa">
17 <#list entries as entry>
18 <#if entry.getClassName() == "com.liferay.journal.model.JournalArticle" >
19 <#assign assetRenderer = entry.getAssetRenderer()/>
20 <#assign journalArticle = assetRenderer.getAssetObject() />
21 <#assign ddmStructure = journalArticle.getDDMStructure() />
22 <#assign ddmForm = ddmStructure.getDDMForm()/>
23 <#assign ddmFormValues = ddmFieldLocalService.getDDMFormValues(ddmForm, journalArticle.getId()) />
24 <#assign ddmFormFieldValues = ddmFormValues.getDDMFormFieldValues() />
25 <#assign viewDetailURL = "/web/eng/detail?assetEntry="+entry.getEntryId()+"&assetClassPK="+entry.getClassPK() />
26 <#--<#assign viewDetailURL = "/web/eng/detail?assetEntry="+entry.getEntryId()+"&assetClassPK="+entry.getClassPK() />-->
27 <#assign fileEntryId =0>
28 <#assign contentUrl ="">
29 <#assign contentTitle ="">
30 <#list ddmFormFieldValues as fieldName>
31 <#if fieldName.getFieldReference() == 'contentUrl'>
32 <#assign contentUrl =fieldName.getValue().getString(locale)>
33 </#if>
34 <#if fieldName.getFieldReference() == 'Title'>
35 <#assign contentTitle =fieldName.getValue().getString(locale)>
36 </#if>
37 <#if fieldName.getFieldReference() == 'Upload90001913'>
38 <#assign jsonFactoryUtil = staticUtil["com.liferay.portal.kernel.json.JSONFactoryUtil"]>
39 <#assign customFieldJson = jsonFactoryUtil.createJSONObject(fieldName.getValue().getString(locale)) />
40 <#assign fileEntryId = getterUtil.getInteger(customFieldJson.get('fileEntryId'))>
41 </#if>
42 </#list>
43 <li class="list-group-item">
44 <#if fileEntryId?? && fileEntryId!=0>
45 <#assign fileEntry = dlAppService.getFileEntry(fileEntryId) />
46 <a class="pdf-link" href=/documents/${fileEntry.getGroupId()}/${fileEntry.getFolderId()}/${fileEntry.getFileName()}/${fileEntry.getUuid()}><span class="list-group-title">${contentTitle}</span></a>
47 <#elseif contentUrl?has_content>
48 <a href="${contentUrl}" target="_blank"><p class="list-group-title">${contentTitle}</p></a>
49 <#else>
50 <a href="${viewDetailURL}" title="Text"><p class="list-group-title">${contentTitle}</p></a>
51 </#if>
52 <p class="list-group-subtitle text-muted">${journalArticle.displayDate?date} <#--${journalArticle.displayDate?time}--></p>
53 </li>
54 </#if>
55 </#list>
56 </ul>
57 </div>
58</#if>
59
60</div>
61<style>
62.taglib-page-iterator{display: none;}
63</style>
64<script>
65function movePagination(){
66 $(".taglib-page-iterator").each(function(){
67 var taglibThis = $(this);
68 if(taglibThis.attr('data-moved') != "moved"){
69 taglibThis.show();
70 var appendIn = taglibThis.parent().find('.accordion-content');
71 taglibThis.appendTo(appendIn);
72 taglibThis.attr('data-moved', 'moved');
73 }
74 });
75
76 var accId = localStorage.getItem('accId');
77 var scrollpos = localStorage.getItem('scrollpos');
78 if (scrollpos){window.scrollTo(0, scrollpos);}
79 if(accId){document.getElementById(accId).style.display = 'block';}
80}
81
82setTimeout(movePagination, 1000)
83
84$('.accordion-header').click(function(){
85 var accId = $(this).parent().find('.accordion-content').attr('id');
86 localStorage.setItem('accId', accId);
87});
88
89window.onbeforeunload = function(e) {
90 localStorage.setItem('scrollpos', window.scrollY);
91};
92</script>
MM-2022
-
Common examples of "Restrictive and discriminatory conditions against the local suppliers" and "Other conditions which make the bid non-compliant to PPP-Mil Order".
22 Dec, 2022
-
खुली/सीमित निविदाओं में एकल प्रस्ताव पर विचार करने पर परिपत्र संख्या 51/2022 दिनांक 17.10.2022 के स्पष्टीकरण
15 Dec, 2022
-
सार्वजनिक खरीद (मेक इन इंडिया को प्राथमिकता) आदेश के संदर्भ में 13 आईटी उत्पादों के लिए मूल्यवर्धन गणना को अधिसूचित करने वाली एमईआईटीवाई अधिसूचना। 2017 - रेग।
13 Dec, 2022
-
200 करोड़ रुपये तक की निविदाओं के लिए ग्लोबल टेंडर इंक्वायरी (जीटीई) के लिए छूट मांगते समय अपनाई जाने वाली प्रक्रिया।
7 Dec, 2022
-
आयातित खेप की निकासी करते समय विलंब शुल्क भुगतान को संभालने के लिए प्रणालीगत सुधार
6 Dec, 2022
MM-2021
-
Clarification regarding Customs/GST Notification in respect to Disposa of specified Goods
28 Dec, 2021
-
Development Order Policy.
23 Dec, 2021
-
Extension of modified Budget/Sanction provision introduced for centralize1 procurement of Casing Pipe and Tubing at Corporate level, to other items being procured by Corporate MM.
17 Dec, 2021
-
Exemption of make in India (Mil) clause to oil and gas PSUs for procurement of Information and Communication Technology (ICT) related items through GeM
17 Dec, 2021
-
Clarification from bidders after tender opening.
7 Dec, 2021
MM-2018
-
खरीद प्राथमिकता नीति (स्थानीय सामग्री से जुड़ा हुआ) (पीपी-एलसी)
8 Sep, 2017
-
प्री-बिड सम्मेलन प्रक्रिया और तकनीकी मूल्यांकन में सिस्टम सुधार
9 Mar, 2018
-
सरकारी खरीद में घरेलू निर्मित आयरन ऐंड स्टील उत्पादों (डीएमआई और एसपी) को प्राथमिकता प्रदान करने के लिए नीति, भारत के राजपत्र सं। 357 दिनांक 09.05.2017 को अधिसूचित
9 Mar, 2018
-
टेकसील बिड पैकेज और एलएसटीके / ईपीसी निविदाओं में अनुमान लगाने के लिए प्राधिकरण को स्वीकृति देने के लिए समेकित एमएम मैनुअल के प्रावधानों की समीक्षा
9 Mar, 2018
-
रिसाव / वेसल्स की उपलब्धता
9 Mar, 2018
MM-2017
-
बैंक गारंटियों के आह्वान के खिलाफ दावों की इलेक्ट्रॉनिक रसीद
10 Jan, 2018
-
बैंक गारंटी के आह्वान के खिलाफ दावों की इलेक्ट्रॉनिक रसीद
10 Jan, 2018
-
माल की खरीद, सेवाओं की भर्ती, नौकरी अनुबंधों में तेल खान विनियम (ओएमआर) -2017 का अनुपालन
10 Jan, 2018
-
उचित वेतन नीति का कार्यान्वयन
9 Mar, 2018
-
नामांकन के मामलों की ऑनलाइन रिपोर्टिंग
9 Mar, 2018
MM-2016
-
ओबीएल की देर से रसीद के कारण डगमगाते पर बचने योग्य व्यय
5 Sep, 2017
-
नामांकन आधार पर मौजूदा अनुबंध का विस्तार
5 Sep, 2017
-
लोक खरीद नीति के तहत सुविधाएं / लाभ- दिल्ली के माननीय उच्च न्यायालय के 02.11.2015 के निर्णय, आईओसीएल बनाम बंसल ब्रदर्स के मामले में
5 Sep, 2017
-
सिस्टम का उल्लेख करने की आवश्यकता पीओ / ओएलए नंबर फर्मों को जारी किए गए नोए / लोए में
5 Sep, 2017
-
प्रतिबंधित मामलों के लिए प्रस्ताव प्रस्तुत करने में देरी से बचने के लिए सिस्टम सुधार उपायों
5 Sep, 2017
MM-2015
-
परिपत्र 2015
5 Sep, 2017