Skip to content

Instantly share code, notes, and snippets.

@anjesh
Last active May 22, 2018 06:16
Show Gist options
  • Save anjesh/70a7b5dc6854bc2bc8f994317b05a87a to your computer and use it in GitHub Desktop.
Save anjesh/70a7b5dc6854bc2bc8f994317b05a87a to your computer and use it in GitHub Desktop.
Scrapping Tenders information from bolpatra.org directly from the browser
# code from http://bgrins.github.io/devtools-snippets/#console-save
(function(console){
console.save = function(data, filename){
if(!data) {
console.error('Console.save: No data')
return;
}
if(!filename) filename = 'console.json'
if(typeof data === "object"){
data = JSON.stringify(data, undefined, 4)
}
var blob = new Blob([data], {type: 'text/json'}),
e = document.createEvent('MouseEvents'),
a = document.createElement('a')
a.download = filename
a.href = window.URL.createObjectURL(blob)
a.dataset.downloadurl = ['text/json', a.download, a.href].join(':')
e.initMouseEvent('click', true, false, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null)
a.dispatchEvent(e)
}
})(console)
# the following will scrape and give the json downloads
var tr_elements =document.querySelectorAll('table > tbody > tr')
var tender_data = []
for(var i=0;i<tr_elements.length;i++) {
tds = tr_elements[i].getElementsByTagName("td")
tender_data.push({
"rfp_no": tds[1].innerText,
"title": tds[2].innerText,
"procuring_entity": tds[3].innerText,
"type": tds[4].innerText,
"status": tds[5].innerText,
"published_date": tds[6].innerText,
})
}
console.save(tender_data, "tenders.json")
This file has been truncated, but you can view the full file.
[
{
"rfp_no": "NTV 074/75-10",
"title": "Supply and Delivery Of Earth station &amp; DSNG equipment and Accessories",
"procuring_entity": "Nepal Television",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "20-05-2018 07:00"
},
{
"rfp_no": "NTV- 074/75-09",
"title": "Supply &amp; Delivery Of TV Studio Equipment and Accessories",
"procuring_entity": "Nepal Television",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "17-05-2018 06:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-1",
"title": "Supply, Delivery and Related Services of Hospital Equipment-Neuro Surgical Operating Microscope",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 14:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-3",
"title": "Supply Delivery and Installation of Hospital Equipment- Anaesthesia Workstation",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 14:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-4",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Laparoscope System",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 14:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-5",
"title": "Supply, Delivery and Related Services of Hospital Equipment- EndoUrology Set",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 14:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-6",
"title": "Supply, Delivery and Related Services of Hospital Equipment-Neuro Surgical Instrument Set",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-7",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Ortho Drill Machine",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-8",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Spine Instrument Set",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-9",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Electro Surgical Unit",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-10",
"title": "Supply, Delivery and Related Services of Hospital Equipment- ICU Patient Monitor with Central Monitoring System",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-11",
"title": "Supply, Delivery and Related Services of Hospital Equipment- ICU Ventillator, Pediatric and Adult",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-12",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Infusion Pump",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-13",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Syringe Pump",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:10"
},
{
"rfp_no": "RAHS/HE/06/074/075-14",
"title": "Supply, Delivery and Related Services of Hospital Equipment- ECG Machine",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:10"
},
{
"rfp_no": "RAHS/HE/06/074/075-15",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Defibrillator",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:10"
},
{
"rfp_no": "RAHS/HE/06/074/075-16",
"title": "Supply, Delivery and Related Services of Hospital Equipment- ICU Ventillator, Pediatric and Neonatal",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:00"
},
{
"rfp_no": "RAHS/HE/06/074/075-17",
"title": "Supply, Delivery and Related Services of Hospital Equipment- Vedio Endoscopic with Bronscope System",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:00"
},
{
"rfp_no": "RAHS/HE/06/074/075 -2",
"title": "Supply, Delivery and Related Services of Hospital Equipment- ENT Operating Microscope",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-05-2018 16:13"
},
{
"rfp_no": "01/AR/MWSP II",
"title": "Construction of Access Road and Bridges for Melamchi Phase II",
"procuring_entity": "Melamchi Water Supply Development Bord",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "ICB-03-EMD-EE-074/75",
"title": "SUPPLY, DELIVERY, INSTALLATION AND TESTING OF AIRFIELD GROUND LIGHTING (AGL) SYSTEM AT CHANDRAGADHI AND JANAKPUR AIRPORT",
"procuring_entity": "Electro Mechanical Department",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "RAHS/HE/02/074/075",
"title": "Supply Delivery and Installation of Hospital Equipment- Digital X-Ray System",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-05-2018 19:00"
},
{
"rfp_no": "RAHS/HE/02/074 /075",
"title": "Supply Delivery and Installation of Hospital Equipment -Magnetic Resonance Imaging (MRI)",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-05-2018 19:00"
},
{
"rfp_no": "RAHS/HE/02 /074/075",
"title": "Supply Delivery and Installation of Hospital Equipment- High End Ultrasound Machine",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-05-2018 19:00"
},
{
"rfp_no": "RAHS/ HE/02/074/075",
"title": "Supply Delivery and Installation of Hospital Equipment -Echocardigraphy",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-05-2018 19:00"
},
{
"rfp_no": "01/TBSWAp/DTO Dadeldhura074/075",
"title": "Fabrication of steel parts and transportation up to site road of trail bridges.",
"procuring_entity": "District Technical Office (DTO), Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DWIDM/MMS/NCB/05/2074/75",
"title": "Supply of four wheeler jeep type vehicle(4wd)",
"procuring_entity": "Department of Water Induced Disaster Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DWIDM/MMS/NCB/06/2074/75",
"title": "Supply of Four wheeler double cab Pick up (4 wd)",
"procuring_entity": "Department of Water Induced Disaster Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DORMEB/CB/074-75/02",
"title": "Procurement of supply and Delivery of Chipping Spreader, Self Propelled",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Goods/T6",
"title": "Supply, Delivery, Installation, Testing and Commissioning of 1 Nos of additional Electrical Crematorium Equipment at Electric Crematorium Building at B12, Pashupati Area",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "07-05-2018 00:00"
},
{
"rfp_no": "NCB/075/76/1",
"title": "1. Swadeshi Ausadhi",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 06:00"
},
{
"rfp_no": "NCB/075/76/2",
"title": "2..BIDESHI AUSADHI",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 06:00"
},
{
"rfp_no": "NCB/075/76/3",
"title": "3..SURGICAL ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "NCB/075/76/4",
"title": "4..PATHOLOGY ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "NCB/075/76/5",
"title": "5..ORTHOPEDIC ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 06:00"
},
{
"rfp_no": "NCB/075/76/6",
"title": "6..DENTAL ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 06:00"
},
{
"rfp_no": "NCB/075/76/7",
"title": "7.RADIOLOGY ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 05:00"
},
{
"rfp_no": "NCB/075/76/8",
"title": "10..HYGINE &amp; SANITATION ITEMS",
"procuring_entity": "Directorate General of Medical Services",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 06:00"
},
{
"rfp_no": "15-074/75(1)",
"title": "Construction of Simply Supported, 35m Span, Cast-in-Situ, Prestressed Concrete Bridge over Mahesh Khola, Dharke- kebalpur, Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "01 / 2074 / 75",
"title": "Supply and Delivery of Vehicles (4WD Double Cab Pick Up)",
"procuring_entity": "Ministry of Internal Affairs and Laws, Province No.1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "01 / 2074 / 075",
"title": "Supply and Delivery of Vehicles (4WD Jeep)",
"procuring_entity": "Ministry of Internal Affairs and Laws, Province No.1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "Providing,Supply,Delivery and Installation of SAN Storage and FC Switch",
"title": "Providing,Supply,Delivery and Installation of SAN Storage and FC Switch",
"procuring_entity": "Ministry of Home Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 11:30"
},
{
"rfp_no": "001/2074-75",
"title": "procurement of Vehicle for Ministry of Industry, Tourism Forest and Environment , provinvce 1, Biratnagar",
"procuring_entity": "Ministry of Indusrty, Tourism, Forest and Environment, province 1, Biratnagar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "BMP/NCB/GOODS/2074-075/8",
"title": "For Supply and delivery of Hardtop Jeep and Sports Utility Vehicle",
"procuring_entity": "Bhimeshwor Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "BMP/NCB/GOODS/2074-075/9",
"title": "For Supply and delivery of Motorcycle and Scooter",
"procuring_entity": "Bhimeshwor Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/T18",
"title": "Narshimha Temple Reconstruction Works, Jayabageshwori",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "NCB/84/PROSEC/2074-75",
"title": "Supply,Delivery,Installation,Testing and Commissioning of Domestic Internal ATS Communication Network",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/T19",
"title": "Ved Vidhyashram Hostel maintenance Works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "13/GRMun/2074/075",
"title": "Construction of RCC Ward Office Building Gaidahawa - 3, Bishnupura.",
"procuring_entity": "Gaidahawa Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 09:00"
},
{
"rfp_no": "35-04-PM-074-075",
"title": "Re-gravelling of Abuwa-Brdi-Pauwatar-Kalamata-Airport Road; From CH 0+000 to CH 8+000",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 16:00"
},
{
"rfp_no": "69/GRMun/WB/2074/075",
"title": "Construction of RCC Ward Office Building Gaidahawa - 4, Pohawa",
"procuring_entity": "Gaidahawa Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 09:00"
},
{
"rfp_no": "70/GRMun/WB/2074/075",
"title": "Construction of RCC Ward Office Building Gaidahawa - 7, Sisai",
"procuring_entity": "Gaidahawa Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 09:00"
},
{
"rfp_no": "71/GRMun/WB/2074/075",
"title": "Construction of RCC Ward Office Building Gaidahawa - 8, Devinagar.",
"procuring_entity": "Gaidahawa Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 09:00"
},
{
"rfp_no": "72/GRMun/WB/2074/075",
"title": "Construction of RCC Ward Office Building Gaidahawa - 9, Dhusuwa.",
"procuring_entity": "Gaidahawa Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 09:00"
},
{
"rfp_no": "SNRTP-BAN-W-NCB-2-09-PM-074-75 (Re-Bid)",
"title": "Chaulika Chowk(RRM)-Mahendranagar-Hirminiya-Holiya Nayabasti(Border) Road., From CH 0+000 Km to CH 5+600 Km",
"procuring_entity": "District Development Commirtte (DDC), Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 13:00"
},
{
"rfp_no": "SNRTP-BAN-W-NCB-2-10-PM-074-75 (Re-Bid)",
"title": "Project for Strengthening the National Rural Transport Program (SNRTP)",
"procuring_entity": "District Development Commirtte (DDC), Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 15:00"
},
{
"rfp_no": "01 074 075",
"title": "SUPPLY AND DELIVERY OF &quot;HYDRAULIC EXCAVATOR&quot;",
"procuring_entity": "Gosaikunda Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 17:00"
},
{
"rfp_no": "RBBL/GSD/OE/AC&S/707&518/074/75",
"title": "Supply,installation &amp; commissioning of Various types &amp; capacities Air Conditioners - 707 Units &amp; Stabilizers - 518 units",
"procuring_entity": "Rastriya Banijya Bank Ltd",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "27/DSMC/2074/075",
"title": "Construction of 1 Span (1X15m) RCC Motorable Bridge at Sukuti Nala near Baal Bihani School",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T3-08",
"title": "Model Municipal Road Construction Works, Lahan-06 &amp; 10",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "DTO/MAH/LRBP/Bridge/01/074-075",
"title": "Procurement of bridge construction works",
"procuring_entity": "District Technical Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB-19/074/075",
"title": "Procurement of Waste Management Equipments",
"procuring_entity": "Mid-Western Regional Hospital , Surkhet",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T3-09",
"title": "Road Improvement Works, Lahan-10",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T3-10",
"title": "Road Improvement Works, Lahan-11",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T3-11",
"title": "Road Improvement Works, Lahan-08",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "MIP/MISP/01-074-075",
"title": "Construction of Intake,Canal and Canal Structures of Mulkulo Irrigation Subproject Gurwakot-10, Surkhet",
"procuring_entity": "Irrigation Development Division Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB-20/074/075",
"title": "Procurement of Laparoscopeic Surgery set.",
"procuring_entity": "Mid-Western Regional Hospital , Surkhet",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "2074/75/15-CN1",
"title": "Supply and Delivery of Non-Destructive Test (NDT) Equipments",
"procuring_entity": "Bridge Branch",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "Moeap/P4/NCB/G/01/074/75",
"title": "Procurement (supply and delivery) of 4 WD Hard Top Jeep.",
"procuring_entity": "Ministry of Economic Affairs and Planning",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "15/2074/75-CN02",
"title": "Supply and Delivery of Pile Driving Analyzer",
"procuring_entity": "Bridge Branch",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T3-12",
"title": "Road Improvement Works, Lahan-20",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "28/DSMC/2074/075",
"title": "Construction of 1 Span (1X20m) RCC Motorable Bridge at Sonbara Nala, Ward No. 10",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "RG-05-074/75",
"title": "Construction of Dhakre Khola Bridge at Tanahun District",
"procuring_entity": "Rishing rural municipal office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "NTPO/Khurkot/NCB/Works/074/75-07",
"title": "Road Construction Works within Approved Block Plan of Khurkot Land Pooling Area",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 20:00"
},
{
"rfp_no": "LHN/2074/075-T3-07.",
"title": "Road Improvement Works, Lahan-10, 11, 13 &amp; 14.",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "MoEAP/NCB/G-01/074-75",
"title": "Supply &amp; Delivery of 4 WD at Ministry of Economic Affairs and Planning,Province 1, Biratnagar",
"procuring_entity": "Ministry of Economic Affairs and Planning, Province No.1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "MoEAP/NCB/G-02/074-75",
"title": "Supply and Delivery of 2 WD Jeep to Ministry of Economic Affairs and Planning,Province 1,Biratnagar",
"procuring_entity": "Ministry of Economic Affairs and Planning, Province No.1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "DH-Mun/13/2074/75",
"title": "Construction of The Compound Wall Of Main Administrative Office Building",
"procuring_entity": "Dhangadhimai Municipality, Office of the Municipal Executive, Dhangadhimai",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "07/074/75",
"title": "DHADING BESI AREA CCTV BASED CITY SURVEILLANCE SYSTEM",
"procuring_entity": "Neelakantha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB-02/2074-075",
"title": "Design &amp; Installation of pump, construction of Reservoir and distribution System of pipe line system of Kudu Lift NITP Irrigation Project Area 1, Veri muncipility Ward No 13-kudu, Jajarkot",
"procuring_entity": "Irrigation Development Division Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB-03/2074-075",
"title": "Design &amp; Instalation of pump, construction of Reservoir and distribution System of pipe line system, Kudu Lift Irrigation Project Area-2 Veri muncipility Ward No 13-kudu, Jajarkot",
"procuring_entity": "Irrigation Development Division Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB-04/2074-075",
"title": "Design &amp; Installation of pump, construction of Reservoir and distribution System of pipe line system of Kudu Lift NITP Irrigation Project Area-3 Veri Municipality Ward No 13-Kudu, Jajarkot",
"procuring_entity": "Irrigation Development Division Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "10 -2074/75",
"title": "procurement of 4wd Jeep.",
"procuring_entity": "National Investigation Department, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NTPO/Khurkot/NCB/074/75-08",
"title": "Road construction and upgradation works from B.P. Highway to historic Sindhuligadhi",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 23:59"
},
{
"rfp_no": "ESRP/NRA/CLPIU/074/75-LALITPUR - 07",
"title": "Construction of Patan Secondary School Building Complex in Lalitpur District (ESRP/NRA/CLPIU/074/75-LALITPUR - 07)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 10:00"
},
{
"rfp_no": "DORMEB/CB/074-75/03",
"title": "Procurement of Supply and Delivery of Tipper Truck",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "DORMEB/CB/074-75/04",
"title": "procurement of supply and Delivery of Water Tanker",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "MGO/074/75/11..",
"title": "Supply of Bulletproof Jeep, Qty- 1 Unit",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "MGO/074/75/12..",
"title": "Supply of Escort Jeep, Qty 2 Units &amp; Bus Qty 1 Unit",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "MGO/074/75/64",
"title": "Supply of Ambulance, Qty-1 Unit",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "NCB/02-2074/75/ Goods",
"title": "Supply and Delivery of double cab pickup",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 10:00"
},
{
"rfp_no": "ESRP/NRA/CLPIU/074/75-DHADING - 11.",
"title": "Construction of 10 School Building Complexes in Dhading District",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 11:00"
},
{
"rfp_no": "04/ 074/075",
"title": "Construction of Road from road majh ko pipal to Lang mata temple and chahare khola to kalam in Sanfebagar Municipality, Sanfebagar ,Achham",
"procuring_entity": "NEW TOWN PROJECT OFFICE, SAFEBAGAR, ACHHAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "DROPKR/3371574/ 074/75- 51 (MYC)",
"title": "Construction of double lane single span (1 x 30 m) Prestressed Concrete Deck Slab motorable Bridge with Open Foundation across Bad Khola at Dhaduwa, Thuladihi, Syangja",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "DROPKR/3371574/ 074/75- 52 (MYC)",
"title": "Construction of double lane single span (1 x 25 m) Simple RCC Deck Slab motorable Bridge with Open Foundation across Aap Khola linking Lwang Ghalel &amp; Quibang, Kaski",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "BAPIDP-EQ-011/2074-075",
"title": "Supply and Delivery of 4WD Tractor- 2 No.s",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "NRA/W/NCB/WORK/DHARAHARA/02/2074/75",
"title": "Construction of Dharahara, IT complex, Parking",
"procuring_entity": "National Reconstruction Authority",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "ESRP/NRA/CLPIU/074/75-DHADING - 09.",
"title": "Construction of 11 School Building Complexes in Dhading District (ESRP/NRA/CLPIU/074/75-DHADING - 09)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 10:00"
},
{
"rfp_no": "NCB-11-2074/075",
"title": "Design, Supply &amp; Installation of Solar Street Light in major Street of Barahathawa Municipality",
"procuring_entity": "Barahathwa Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "02/BM/PAR/NCB/BRI/074-75",
"title": "Construction of Funty khola 20m RCC bridge",
"procuring_entity": "Birgunj Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 14:00"
},
{
"rfp_no": "MoEAP/NCB/02-2074/75/ Goods",
"title": "PROCUREMENT OF SUPPLY AND DELIVERY OF VEHICLES- Jeep",
"procuring_entity": "Ministry of Economic Affairs and Planning, Province-2",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "Namdu/IDD-02/074-75",
"title": "Namdu Kulo Irrigation Sub-Project, Phidim-1and 2, Panchthar",
"procuring_entity": "Irrigation Development Division Panchthar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "MoPID/NCB/G-07/074-75",
"title": "Supply and Delivery of Vehicles (Jeep 4 WD) for Minister of Ministry of Physical Infrastructure Development State No-1 Biratnagar.",
"procuring_entity": "Ministry of Physical Infrastructure Development State No-1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "BPKIHS-074-075-032",
"title": "ENT Surgical Microscope",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 11:00"
},
{
"rfp_no": "BPKIHS/074/075/033",
"title": "Three chip high definition camera system",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 11:00"
},
{
"rfp_no": "NAMS/NCB/74/75/34",
"title": "Supply &amp; Delivery &quot;A&quot; Grade Ambulance",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 11:00"
},
{
"rfp_no": "NAMS/NCB/74/75/35",
"title": "Supply &amp; Delivery of 7 Seater Van",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 11:00"
},
{
"rfp_no": "MRMST/Backhoe Loader/2074/075/03",
"title": "Procurement &amp; Supplying Of Backhoe Loader.",
"procuring_entity": "Maiwakhola Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/36",
"title": "Supply &amp; Delivery of Hatchback Car",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 11:00"
},
{
"rfp_no": "NAMS/NCB/74/75/37",
"title": "Supply &amp; Delivery of 5 Seater Van",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 11:00"
},
{
"rfp_no": "MoPID/NCB/G-08/074-75",
"title": "Supply and Delivery of Vehicles (Jeep 4 WD) for Office of Ministry of Physical Infrastructure Development State No-1 Biratnagar",
"procuring_entity": "Ministry of Physical Infrastructure Development State No-1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "PADT/2074-2075/Const/T17",
"title": "Debris management and conservation of Vishworup Temple",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 11:00"
},
{
"rfp_no": "PADT/2074-075/Const/T013",
"title": "JeetJung Prakasheshwor Temple Reconstruction Work",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "PADT/2074-075/Const/T014",
"title": "Saptami Sattal Reconstruction work at west Gate Pashupati",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "PADT/2074-075/Const/T016",
"title": "Reconstruction of Shivalayas at Mrigasthali Area",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "PADT/2074-075/Const/T015",
"title": "Laxmi Narayan Mandir Construction",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:30"
},
{
"rfp_no": "OATG/Gon/NCB/3/074-75",
"title": "Electronics equipment, accessories and Services",
"procuring_entity": "Office of the Attorney General, Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "GOODS/03/NCB/BBMOME/2074/075",
"title": "procurement of AWD Pickup -1 Unit",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 13:00"
},
{
"rfp_no": "GOODS/04/NCB/BBMOME/2074/075",
"title": "AWD Backhoe Loader -1 Unit",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 13:00"
},
{
"rfp_no": "GOODS/05/NCB/BBMOME/2074/075",
"title": "4x2 Hydraulic Dump Tipper Truck -1 Unit",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 13:00"
},
{
"rfp_no": "GOODS/06/NCB/BBMOME/2074/075",
"title": "Single Drum Soil Compactor -1 Unit",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 15:00"
},
{
"rfp_no": "NITC/G/NCB-9-074/75",
"title": "Renewal of License of Security Appliances",
"procuring_entity": "National Information Technalogy Center, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 12:00"
},
{
"rfp_no": "074/75/142",
"title": "Signal Communication Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 13:00"
},
{
"rfp_no": "DOHS/G/NCB-40.3/CHD-2074-75",
"title": "Printing &amp; Supply of Training Manual, Brochure and Poster for ROTA Vaccine",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "NCB/16/074/075",
"title": "Namuna Road Construction Work",
"procuring_entity": "Itahari Sub Metropolitan City, Sunsari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "BM/NCB/2074/75-28",
"title": "Supply and Installation of Solar System",
"procuring_entity": "Bansgadhi Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "BM/NCB/2074/075-05",
"title": "PROCUREMENT OF SOIL COMPACTOR (VIBRATING ROLLER).",
"procuring_entity": "Bansgadhi Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "KonjyosomRM/Lalitpur/Works/NCB/01/2074-075",
"title": "Construction of Office Building for Konjyosom Rural Municipality at Chaughare, Lalitpur",
"procuring_entity": "Office of Rural Municipal Executive Konjyosom , Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "MoFA 04/2074/75",
"title": "Supply and Delivery of Vehicle",
"procuring_entity": "Ministry of Foreign Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "MoFA 05/2074/75",
"title": "Supply and Delivery of Vehicle",
"procuring_entity": "Ministry of Foreign Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "MoFA 06/2074/75",
"title": "Supply and Delivery of Vehicle",
"procuring_entity": "Ministry of Foreign Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "SHM/MOR/NCB/G/11-2074/075",
"title": "Supply &amp; Installation of Solar Street Light in various Places of Municipality area",
"procuring_entity": "Sundarharaicha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 19:00"
},
{
"rfp_no": "PMO/074/075-03",
"title": "Construction of Municipality Office Building",
"procuring_entity": "Panchapuri Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-05-2018 09:00"
},
{
"rfp_no": "51/KFVMDB/NCB/074-75",
"title": "Hard top 4 WD JEEP(2100-2300) cc",
"procuring_entity": "Kalimati Fruits Vegetable & Market Development Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "52/KFVMDB/NCB/074-75",
"title": "BIDDING DOCUMENT FOR PROCUREMENT OF MOTORCYCLES 125&#65533;2 cc",
"procuring_entity": "Kalimati Fruits Vegetable & Market Development Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "53/KFVMDB/NCB/074-75",
"title": "PROCUREMENT OF SCOOTERS 109&#65533;5cc",
"procuring_entity": "Kalimati Fruits Vegetable & Market Development Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "54/KFVMDB/NCB/074-75",
"title": "PROCUREMENTOF Small Tipper Type Vehicle (Hooper Tipper)(700-800) cc",
"procuring_entity": "Kalimati Fruits Vegetable & Market Development Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "SRM/10/2074/075",
"title": "Construction of Rural Municipility Office Building",
"procuring_entity": "Sammarimai Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "DROBKT/09-054/2074/075",
"title": "Repair works of road damaged by sewer line construction in ARM -Srijananagar-katunje road.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 20:00"
},
{
"rfp_no": "04/DTO/RAS/TB/LSTB/074/075",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Ling Ling Trail Suspended Bridge (LSTB)",
"procuring_entity": "District Technical Office (DTO), Rasuwa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "DLPIU/Dolakha/Work/NCB/2074/75-05",
"title": "Jilu (Dihi, Fasmi) Integrated Settlement Development Project, Block-A(Dihi), Block-B(Fasmi), Jilu, Dolakha",
"procuring_entity": "District Level Project Implementation Unit-MoUD-Dolkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 18:00"
},
{
"rfp_no": "BPKMCH/NCB/53/074/075",
"title": "Video Bronchoscope one set",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 23:00"
},
{
"rfp_no": "BPKMCH/NCB/46/074/075",
"title": "CT X- Ray Tube Assembly for Neusoft Neuviz 64i CT Scanner",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 23:00"
},
{
"rfp_no": "BPKMCH/NCB/58/074/075",
"title": "Hospital Laundry System Including Washing Machine , Hydro extractor and Tumble dryer",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 23:00"
},
{
"rfp_no": "APF/NCB/G/08/2074/075",
"title": "4WD Double Cab Pickup",
"procuring_entity": "Armed Police Force, Nepal, Procurement Unit",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 13:59"
},
{
"rfp_no": "BPKMCH/NCB/59/074/075",
"title": "Modular Operation Theatre 2 units",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 23:00"
},
{
"rfp_no": "AKM/NCB/08/2074-75",
"title": "Maintenance Work of Baradi Giranchour Vangeri Hilekharka Road",
"procuring_entity": "Aanbookhaireni Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 10:00"
},
{
"rfp_no": "IFBGrSD207475T9FC9",
"title": "Procurement of Ground Power Unit for Aircraft Electrical System (GPU)",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "10/074-75/10",
"title": "Periodic Maintenance of Roads Mudli-Tulsibarwa Road (6km); Mudli-Tindubiya-Sabaithawa Road (6km); Bedhihari birta-Basantpur Road (6km); Padam Sadak-BahuwariRoad (6km); Bagahi-ParsaPatel Chowk (9km)",
"procuring_entity": "District Technical Office (DTO), Parsa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "10/2074-75/10",
"title": "Construction of Dharar Bridge at Ch 13+700 along Janta Sadak road",
"procuring_entity": "District Technical Office (DTO), Parsa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/15/Water Supply/ 074-75",
"title": "Drinking Water Supply Management (Construction of Overhead Reservoir Tank with Water Supply System and Other Associated Work) at Chhinedanda, Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-2",
"title": "Blacktopped Road Maintenance Works,Lahan-01 &amp; 08",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/17/074-75",
"title": "Clean &amp; Maintain the International Terminal And Other Building Complexes Including Solid Waste Management at TIA.",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "LHN/2074/075-T2-14",
"title": "Blacktopped Road Maintenance Works, Lahan-05 &amp; 07.",
"procuring_entity": "Lahan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/16/074-75",
"title": "Maintaining of Garden (Flower and Plants) and Ground in TIA.",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/18/074-75",
"title": "Cleaning &amp; Maintaining work of Land side Area at TIA.",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/15/074-75",
"title": "Construction of RCC Building For Police Barrack at TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "06-2074/75",
"title": "Construction of RCC Bridge over Galfodhar Khola",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 19:00"
},
{
"rfp_no": "006-2074/75",
"title": "Construction of RCC Bridge over Jharniya Khola",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 19:00"
},
{
"rfp_no": "6-2074/75",
"title": "Upgrading of Jhaapa Bazaar to Mechi Bridge Road",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 18:00"
},
{
"rfp_no": "RAHS/HE/ 04/074/075",
"title": "Supply Delivery and Installation of Hospital Equipment-CT Scan Machine",
"procuring_entity": "Rapti Academy of Health Sciences, Dang",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 16:00"
},
{
"rfp_no": "05/074/075-1",
"title": "Vehicles Spare Parts",
"procuring_entity": "Armed Police Force Headquarters, Halchowk, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 20:59"
},
{
"rfp_no": "05/074/075-2",
"title": "Workshop &amp; Generator Spare Parts",
"procuring_entity": "Armed Police Force Headquarters, Halchowk, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 20:59"
},
{
"rfp_no": "05/074/075-3",
"title": "Medicine Items",
"procuring_entity": "Armed Police Force Headquarters, Halchowk, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 22:30"
},
{
"rfp_no": "05/074/075-4",
"title": "Water Supply and Plumbing, Minor Engineering &amp; Other Items",
"procuring_entity": "Armed Police Force Headquarters, Halchowk, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 22:30"
},
{
"rfp_no": "05/074/075-5",
"title": "Stationary, Laundry and Other Items",
"procuring_entity": "Armed Police Force Headquarters, Halchowk, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 22:30"
},
{
"rfp_no": "CTEVT/TEVT Exp 2074/075,Civil-12",
"title": "Construction of Academic Building of SANTA ALPAMAI RAM NARAYAN YADAV NURSING COLLEGE, Malangawa, Sarlahi",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 13:00"
},
{
"rfp_no": "NSBBU/074/75/03",
"title": "O.G. SHODDY YARN",
"procuring_entity": "BAHU BYEBASAYA UDYOG",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "29-04-2018 06:00"
},
{
"rfp_no": "DUDBC/Bhaktapur/Works/NCB/01/074-75",
"title": "Stone Paving Work From Chyamasingh to Bhawarcho and Maintenance Work of Vajya Pukhu.",
"procuring_entity": "DUDBC, DIVISION OFFICE BHAKTAPUR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 05:00"
},
{
"rfp_no": "BPKIHS/074/075/031",
"title": "OT Light (As per specification)",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 11:00"
},
{
"rfp_no": "NCB/Kirtipur/Works-074/75",
"title": "Construction Of Kirtipur Multipurpose Covered Hall Kirtipur,Kathmandu",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 17:00"
},
{
"rfp_no": "IDD/Jajarkot/MIP/NCB-02/2074-075",
"title": "Construction of Side Inkate, Canal and Canal Structures Rasetara Dule Sub-Project, Junechadi Ga pa -4,Majkot",
"procuring_entity": "Irrigation Development Division Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "IDD/Jajarkot/MIP/NCB-01/2074-075",
"title": "Construction of Side Inkate, Canal and Canal Structures of Chankhila Irrigation Sub-Project, Chedaghat muncipility Ward No 5-Chankhila, Jajarkot",
"procuring_entity": "Irrigation Development Division Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "NCB-09/2074/75",
"title": "Procurement of GeneXpert Cartidge",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "NCB-10/2074/75",
"title": "Procurement of Mobile X-Ray System with DR &amp; Upgradation of existing X-Ray System",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/10/2074-75",
"title": "Up gradation of road ( Narayanpur-Sector)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "DUDBC/DANG/WORKS/NCB/11/074-075",
"title": "Up gradation of road ( Dudhrash-Sector)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 11:00"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/12/2074-75",
"title": "Up gradation of road ( Parseni-Sector)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 11:00"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/13/2074-75",
"title": "Up gradation of road ( Tarrigau-Sector)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 11:00"
},
{
"rfp_no": "DRODNG/3373204/074/75-034",
"title": "Construction of RCC bridge (1*25m) over Balim Khola along B.P marga, Ghorahi-Chaite Road, Dang",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 15:00"
},
{
"rfp_no": "DRODNG/3371574/074/75-033",
"title": "Construction of RCC Bridge (1*25m) over Lankini Khola along Shankhamul Road in Salyan",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 15:30"
},
{
"rfp_no": "DPO/Tanahun/NCB/Works/074/75-01",
"title": "Construction of Office Building of District Post Office, Tanahun",
"procuring_entity": "District Post Office, Tanahun",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 22:00"
},
{
"rfp_no": "IDD/STMSBK-MIP/NCB-Rajkulo-02/074-075",
"title": "Construction of Intake, Canal and canal structures of Rajkulo Irrigation Project, Shivaraj Municipality, Kapilvastu",
"procuring_entity": "Irrigation Development Division Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "SNRTP-RAS-W-NCB-20-06-PM-074-75",
"title": "Periodic maintenance of Sole-Bhimali-Hakubesi Road.",
"procuring_entity": "District Technical Office (DTO), Rasuwa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "DROCNP/337355-4/074-75/46",
"title": "Rigid Pavement works at Rajdevi Nagarpalika (Gadiya Bagamati Sirsiya Gaur Aruwa Nadi Katwarwa Sadak Rauthat )",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 08:00"
},
{
"rfp_no": "SNRTP-RAS-W-NCB-20-08-PM-074-75",
"title": "Periodic maintenance of Dashmure-Setidevi-Dhuseni-Rupsepani Road",
"procuring_entity": "District Technical Office (DTO), Rasuwa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "DROCNP/337355-4/074-75/47",
"title": "Rigid Pavement works at Rajdevi Nagarpalika (Hajaminiya Kumal tole Basantpur Sadak Rauthat )",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 08:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/48",
"title": "Patch works at Barahathwa-Samanpur-Katahariya-Kalaiya (at Garuda- Samanpur) Sadak, Ratahat",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 08:00"
},
{
"rfp_no": "DUDBC/Kavre/2074/075/NCB-05",
"title": "Saghan Sahari Bikas Karyakram (Construction of Main Urban Road,Sewerage and Treatment plant in Kavre District Headquarter ,Dhulikhel Muncipality.",
"procuring_entity": "DUDBC, DIVISION OFFICE, KAVRE",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 17:00"
},
{
"rfp_no": "PHQ/G/NCB/2074-075/36",
"title": "Supply and Delivery of Operational Jeep",
"procuring_entity": "Nepal Police Headquarter Procurememt Section, Naxal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "PHQ/G/NCB/2074-075/38",
"title": "procurement of Command Center Internet/Intranet renew and increment (91 Sites) For 1 year",
"procuring_entity": "Nepal Police Headquarter Procurememt Section, Naxal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "032/074-075",
"title": "Construction of Guest House Building at Tilottama-9, Rupandehi",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 23:00"
},
{
"rfp_no": "40/074-75",
"title": "Land Development and Land Scaping work at municipality Building",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:30"
},
{
"rfp_no": "HSRP/01/074/75",
"title": "Roadway excavation and retaining works",
"procuring_entity": "Hilsa Simikot Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 18:35"
},
{
"rfp_no": "MoFA 03A/2074/75",
"title": "Procurement of Machinery Equipment",
"procuring_entity": "Ministry of Foreign Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "MoFA 03B/2074/75",
"title": "MoFA Networking, IT Security and Support System",
"procuring_entity": "Ministry of Foreign Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "OIBN/CS/SRM/2074/075-6",
"title": "Feasibility Study of Ski Resort in Manang",
"procuring_entity": "Office of the Investment Board (OIBN)",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "22-05-2018 06:00"
},
{
"rfp_no": "OIBN/CS/LRSPNP/2074/075-5",
"title": "Feasibility Study of Shey Phokshundo Luxury Resort",
"procuring_entity": "Office of the Investment Board (OIBN)",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "OIBN/CS/GF/2074/075-3",
"title": "Feasibility Study of Glass Factory in Nepal",
"procuring_entity": "Office of the Investment Board (OIBN)",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "BPKIHS/074/075/022",
"title": "Food Stuff for Guest House",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 11:00"
},
{
"rfp_no": "ICB/01/PROSEC/2018(074-75)",
"title": "The Supply,Delivery,Testing & Commissioning of Large Foam Tender (LFT) Vehicle for TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "34/074-075",
"title": "AWD Backhoe Loader, Engine Power Output Not Less than 90 BHP &amp; Others are as per approved Technical Specification.",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 07:00"
},
{
"rfp_no": "33/074-075",
"title": "4WD Tractor with Hydraulic Dump Trolley, Engine Power Output Not Less than 55 BHP &amp; Others are as per Approved Technical Specification.",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 07:00"
},
{
"rfp_no": "BIP/MC/NCB-08/074/75",
"title": "Construction of Canal and Canal Structures (Ch 0+060 to Ch 0+450)",
"procuring_entity": "Praganna & Badkapath Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/02-07475",
"title": "Construction of Children Park, Malungphat, Bhingri New Town, Pyuthan",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "06 / 2074-075",
"title": "Construction of CDO &amp; Asst. CDO Quarter Building Construction Work at Rupakot Majhuwagadhi Municipality Diktel,Khotang",
"procuring_entity": "DUDBC, DIVISION OFFICE, UDAYAPUR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/04/074-75",
"title": "Kalikasthan- Puspalal Chok- Barahtakura- Karagar- Madhypahadi- Pipilneta Road Construction with Drainage Works, Musikot, Rukum(West) (Phase I).",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/07-07475",
"title": "Road Upgrading Works in Mathillo and Tall Bazaar of Rukumkot Bazaar Area, Rukumkot, Rukum(East)(Phase I).",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "04/wssdo/okhaldhunga/074-75",
"title": "Procurement of different work of Okhaldungha Co-financing water supply and sanitation project",
"procuring_entity": "Water Supply and Sanitation Division Office, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/30",
"title": "Supply &amp; Delivery of Nuclear medicine Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "NCB/MULPANI/WORKS-074/75",
"title": "CONSTRUCTION OF BOUNDARY WALL &amp; MAIN GATE AT MULPANI CRICKET STADIUM (PHASE-2) MULPANI, KATHMANDU NCB/MULPANI/WORKS-074/75",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 20:00"
},
{
"rfp_no": "NAMS/NCB/74/75/31",
"title": "Supply &amp; Delivery of Haematology &amp; Horiba Pentra XL 80 Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/74/75/32",
"title": "Supply &amp; Delivery of Pathology Haematology &amp; General Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "BPKIHS/074/075/028",
"title": "International Journal",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 11:00"
},
{
"rfp_no": "NAMS/NCB/74/75/33",
"title": "Supply, Delivery &amp; Installation of Anesthesia Workstation",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "MIP/IDD-Sindhu/02",
"title": "Construction of Headworks Canal and Canal Structures of Ninjel Khola Irrigation Project, Lisankhupakhar-01, Sindhupalchowk",
"procuring_entity": "Irrigation Development Division, Sindhupalchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 12:00"
},
{
"rfp_no": "BPKIHS/074/075/0279",
"title": "Videobronchoscopy with Endobronchial Ultrasound (EBUS)",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 11:00"
},
{
"rfp_no": "DROBKT/08-053/2074/075",
"title": "Retaining work Construction in Lamidanda- Dolalghat (Km 56+000) ARM",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 20:00"
},
{
"rfp_no": "BPKIHS/074/075/030",
"title": "Supply and installation of negative pressure room",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 10:00"
},
{
"rfp_no": "HMUN_RM_074/75-13",
"title": "Road Upgrading Work, Hetauda-10, Bypass Road",
"procuring_entity": "Hetauda Sub-Metropolitain City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 12:45"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/09-07475",
"title": "Chuiredanda-Aunakhola-Indredanda-Batasedanda-Beluwa-Khaira Road Upgrading Works, Pyuthan Municipality, Pyuthan (I Phase).",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "CGM/GOODS/NCB/01/2074/075",
"title": "Supply of AWD Pickup Vehicle",
"procuring_entity": "Chhedagada Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "CGM/GOODS/NCB/02/2074/075",
"title": "Supply of AWD Backhoe Loader",
"procuring_entity": "Chhedagada Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "SHM/MOR/NCB/G/10-2074/075",
"title": "Supply and delivery of Copper wound distribution outdoor Transformer with first filling of oil Ex 11/0.4KV 100KVA 3 Phase 50HZ ONAN with CSP System",
"procuring_entity": "Sundarharaicha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 12:00"
},
{
"rfp_no": "NCB/73/PROSEC/2074-75",
"title": "supply, delivery, testing commissioning of fork lift truck",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "NTPO/Khurkot/NCB/074/75-06",
"title": "Road upgradation works upto Bhimeshwor Ward No. 9",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 20:00"
},
{
"rfp_no": "MGO/074/75/62",
"title": "Supply of the DLCO (Chamber Plethysmograph for spirometry Testing Machine)",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-04-2018 00:00"
},
{
"rfp_no": "MGO/074/75/63",
"title": "Supply of Ventilator (Chamber Plethysmograph for spirometry Testing Machine)",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-04-2018 00:00"
},
{
"rfp_no": "SSRC 18-74/75",
"title": "Cleaning and Sanitation Work in Singhdurbar Premises.",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/GBAUP-IU/12/Cargo TB/074-75",
"title": "Construction of Cargo Terminal Building at Bhairahawa",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "AKM/NCB/07/2074-75",
"title": "Procurement of supply and delivery of Vehicle with specified specification",
"procuring_entity": "Aanbookhaireni Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "11/BAG/MUN/W/NCB/074/75",
"title": "Construction of Baglung Bus Park.",
"procuring_entity": "Baglung Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 16:00"
},
{
"rfp_no": "TNN9/DROSKT/337128-4/074/75-54",
"title": "Roadway improvement Work (Earth Work Excavation work) in Gumi -Patihalna Chaur Road (16+000km ~ 54+000km), Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "DCC/DTO/Lalitpur/Works/NCB-01/2074/075",
"title": "Construction of Nakkhu Khola (Sanu Ghatta) RCC Box Bridge at Godawari Municipalty-12 (Thecho) - Lalitpur Metropolitan City-22 (Bungmati)",
"procuring_entity": "DDC Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 06:00"
},
{
"rfp_no": "TNN9/DROSKT/337014-4/074/75-55",
"title": "Construction of Division Road Office Building in Subhakuna, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "NBL/MSD/Goods/9",
"title": "IT Support Outsource for the Head office and Kathmandu Valley branches",
"procuring_entity": "Nepal Bank Limited",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "IDSDS/MIP/JKKIP/NCB-01/074-075",
"title": "Construction of Canal And Canal Structures of Jokhu Khola Kabrabote ISP, Mukli, Solukhumbu",
"procuring_entity": "Irrigation Development Sub-Division, Solukhumbu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "MoPID/G/NCB/01/2074/75",
"title": "Procurement of Right Hand Drive Compact SUV",
"procuring_entity": "Ministry of Physical Infrastructure Development State No-3",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 13:00"
},
{
"rfp_no": "MoPID/G/NCB/02/2074/75",
"title": "Procurement of Right Hand Drive Hardtop Jeep",
"procuring_entity": "Ministry of Physical Infrastructure Development State No-3",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 13:00"
},
{
"rfp_no": "10-074-75/048 (RE)",
"title": "Improvement of Mitrapark Gaurighat Nayabasti Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 16:00"
},
{
"rfp_no": "KCRP/337145-4/074/75-9",
"title": "Construction of 1 Span (1X50 m) Steel Truss Motorable Bridge over Aandhi Khola, Aandhimuhan, Syanja.",
"procuring_entity": "Kaligandaki Corridor (Gaidakot-Ramadi-Maldhunga) Road Project, Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 06:00"
},
{
"rfp_no": "SSRC 19-74/75",
"title": "Construction of Road at Singhdurbar",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 11:30"
},
{
"rfp_no": "5-2074/75",
"title": "Construction of Prestressed RCC Bridge over Surai Khola (3 no*30 m span, total length 97.20 m), along Bahadurjung Ramnagar Road",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 18:00"
},
{
"rfp_no": "MOITFE-P4/NCB/01/074-75",
"title": "Purchase of Hard Top 4WD Jeep as per Technical Specification",
"procuring_entity": "Ministry of Industry Tourism Forest and Environment, Province No 4",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 10:00"
},
{
"rfp_no": "CON/NCB/MAN-10/074-75",
"title": "Construction of Vented Causeway at Katle Khola",
"procuring_entity": "Manahari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "KCRP/337320-4/074/75-10",
"title": "Construction of 1 Span (1X20 m )RCC T-Girder Motorable Bridge over Galuwa Khola, Baglung",
"procuring_entity": "Kaligandaki Corridor (Gaidakot-Ramadi-Maldhunga) Road Project, Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 06:00"
},
{
"rfp_no": "005-2074/75",
"title": "Construction of RCC Bridge over Betaha Khola (1 No*15 m span, Total length 16.20 m), along Rajbiraj Balan Road, Saptari",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 18:00"
},
{
"rfp_no": "05-2074/75",
"title": "Construction of Prestressed RCC Bridge over Soiya Khola (1 no*30 m span, total length 31.20 m), along Bahadurjung Ramnagar Road",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 18:00"
},
{
"rfp_no": "KTDC/Kohalpur/NCB/074/075-07",
"title": "Construction of Drain and Asphalt Concrete work in different phase of KTDC",
"procuring_entity": "Kohalpur Town Development Committee, Kohalpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 17:00"
},
{
"rfp_no": "0005-2074/75",
"title": "Construction of Prestressed RCC Bridge over Kalyandaha River Bridge (1 no*30 m span, total length 31.20 m), along Balan Kamala Road, Siraha",
"procuring_entity": "Postal Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 18:00"
},
{
"rfp_no": "KTDC/Kohalpur/NCB/074/075-08",
"title": "Construction of drain in different phase of KTDC",
"procuring_entity": "Kohalpur Town Development Committee, Kohalpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 17:00"
},
{
"rfp_no": "KTDC/Kohalpur/NCB/074/075-9",
"title": "Gabion work in Dunduwa Khola",
"procuring_entity": "Kohalpur Town Development Committee, Kohalpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 17:30"
},
{
"rfp_no": "IFBGrSD207475T8FC8",
"title": "Procurement of Boarding/De-Boarding Vehicle for Aircraft Passengers with Reduced Mobility (Ambulift)",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-13/FHD/2074-75",
"title": "Procurement of 5- Year Implant-90,000 set",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "23-04-2018 12:00"
},
{
"rfp_no": "IDDDANG/01/074-75",
"title": "Construction of Headworks and Related Structures of Jitpur Irrigation sub Project",
"procuring_entity": "Irrigation Development Division, Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "CAAN / AED /RARA/Retaining structure/ 074-75/25",
"title": "Construction of Retaining strutures and Other Associated Works at Rara Airport, Mugu",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "IDDDANG/02/074-75",
"title": "Construction of Headworks and Related Structures of Khatare Irrigation Sub Project",
"procuring_entity": "Irrigation Development Division, Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/SIA-IU/13/Office Building/074-75",
"title": "Construction of Project Site Office Building &amp; its Associated Works at SIA, Bara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "IDDDANG/03/074-75",
"title": "Construction of Headworks, Canal and Canal structures of Gurung Khola Irrigation sub Project",
"procuring_entity": "Irrigation Development Division, Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "CAAN/AED/KND/Culvert/074-75/29",
"title": "Culvert Improvement, Retaining Structure and Fence Construction Work at Khanidanda Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "CAAN / AED /DHI/Boring/ 074-75/28",
"title": "Deep Boring and Other Associated Works at Dhangadhi Airport, Dhangadhi",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "IDDDANG/04/074-75",
"title": "Construction of Headworks Canal and Canal Structures of Bhawani Kulo Irrigation Sub Project.",
"procuring_entity": "Irrigation Development Division, Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "41-LCM/074/75",
"title": "Purchase of Hard Top 4WD Jeep as per Technical Specification",
"procuring_entity": "Lumbini Cultural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "DROLTP-07-23/074/75",
"title": "Construction of RCC Bridge over Kotku Khola in Lalitpur.",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "GRM/RCH/W/NCB/03/074-75",
"title": "Construction of Prefab Office Building",
"procuring_entity": "Gokulganga Rural Municipality, Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 06:00"
},
{
"rfp_no": "CAAN / AED /KTM/Boring/ 074-75/26",
"title": "Deep Boring and Other associated works at Head office of CAAN, Babarmahal, Kathmandu",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "DROLTP-07-24/074/75",
"title": "Construction of Hanumante-Godawari Dobhan RCC Bridge",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "DROLTP-07-25/074/75",
"title": "Road Improvement and upgrading works at Latighumti road,Lele mahatgaun section,Latighumti lubhu-godamchaur-Bishankhu Narayan-Godawari-Badikhel-lele-Chhampi-Bungmati Road",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "CAAN / AED /RJB/Bldg/ 074-75/30",
"title": "Construction of Terminal building at Rajbiraj Airport and other associated works",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "IDDOKHALDHUNGA/05/074-75",
"title": "Construction of Sump Well, RVT, Pump etc and related Structures of Likhu Lift IP, Narmadeshwar-2, Okhaldhunga",
"procuring_entity": "Irrigation Development Division, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "DM/Ilam/Goods/NCB/01/2074-075",
"title": "Procurement, Supply &amp; Delivery of Steel Tubular Poles &amp; accessories at different Locations of Deumai Municipality Procurement, Supply &amp; Delivery of Steel Tubular Poles, &amp; accessories at different Lo",
"procuring_entity": "Deumai Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "074/75/140",
"title": "Automatic Transmission System Assembly Complete set (HMMWV)",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 11:00"
},
{
"rfp_no": "DROHTD/337320-4/074-75/IFB07/38",
"title": "River Training Works of Amlekhganj Bridge No.-2, Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 06:00"
},
{
"rfp_no": "DUDBC/Chitwan/Works/NCB/02/074/75",
"title": "Mahendra Chowk-Telauli(Prachand Marg), Pulchowk-Ramghat, Shahid Chowk-Dharma Chowk-Kachapache Chowk, Atithi Party Palace-JayNepal Chowk-Pullar, Shibghat-Janki Chowk-Pakadi , Diyalo Road and Drain Construction Work.",
"procuring_entity": "DUDBC, DIVISION OFFICE, CHITWAN",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 00:00"
},
{
"rfp_no": "DUDBC/Chitwan/Work/NCB-03/2074/075",
"title": "Construction of Road and Drainage (Including Blacktopped) in different areas of Ramgram Municipality, Nawal Parasi, Approx 11.7 Km (Areas are: Lankahawa, Kunwar Ranipakad, Ujaini and Jokbar )",
"procuring_entity": "DUDBC, DIVISION OFFICE, CHITWAN",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/GBAUP-IU/14/Security BLDG/074-75",
"title": "Construction (Renovation) of Security Building and Other Associated Work at Bhairahawa",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "NIRTTP/PCO/TEPC/G/NCB-25",
"title": "Supply, Delivery and Installation of ICT Hardware &amp; Other Equipment and Accessories for Nepal Trade Information Portal (NTIP)",
"procuring_entity": "Trade and Export Promotion Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "DROHTD/337366-4/074-75/IFB07/39",
"title": "Name of Project:-Road Construction and Improvement Works on Parsauni Bhattha Naurangiya Gardaul Road, Parsa Location:- Parsa, District",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 06:00"
},
{
"rfp_no": "PKBSMUN/NCB/2074/075/4",
"title": "Construction of Ramche View Tower",
"procuring_entity": "Pakhribas Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "PKBSMUN/NCB/2074/075/3",
"title": "Construction of Municipality Office Building",
"procuring_entity": "Pakhribas Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 06:00"
},
{
"rfp_no": "SIP/Works/08-074/75",
"title": "Drainage Development Works at Pidari Nala",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 08:00"
},
{
"rfp_no": "DROCNP/337329-4/074/75-045",
"title": "Rigid Pavement and Drain works at Gaur-Pipara-Samanpur-Santapur-Nunthar Sadak, Rautahat",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "SIP/Works/09-074/75",
"title": "Command Area Protection Work at Rapti River 2700m downstream from Sidhaniya Ghat Bridge.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 08:00"
},
{
"rfp_no": "NCB/JRM/W/07/074/075",
"title": "Construction of Covered Hall of Janaki Rural Municipality",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 00:00"
},
{
"rfp_no": "SIP/Works/10-074/75",
"title": "Drainage Development Works at Kiran Nala and Junctions of Kiran Nala &amp; Pidari Nala with Minor Streams",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 08:00"
},
{
"rfp_no": "10-MUN-2074-75/Road",
"title": "Bijuwar Mitramani Chowk To Administrative Building of Pyuthan municipality Premix Carpeting Pavement Road Extension",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "12-Mun-2074-75/RB",
"title": "Kharibot-Majuwa-Thulasim -Chundarikhola -chucha Rural Road mantainance Project",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "SIP/Works/11-074/75",
"title": "Construction of Canal and Structures of Gohawa Sub-Secondary Canal (Ch. 0+000 to 2+050).",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 08:00"
},
{
"rfp_no": "13-Mun-2074-75/RB",
"title": "Gejbang-Managau-Lamchayangneta Rural Road maintenance Project.",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "SIP/Works/12-074/75",
"title": "Construction of Canal and Structures of Akalgharwa Secondary Canal (Ch. 0+000 to 4+600)",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 08:00"
},
{
"rfp_no": "SIP/Works/13-074/75",
"title": "Construction of Canal and Structures of Persenipur Secondary Canal (Ch 0+000 to 4+750)",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "SIP/Works/14-074/75",
"title": "Construction of Canal and Structures of Pidari Secondary Canal (Ch 0+000 to 4+100)",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "KTFT-NCB-Materials 2074/75-2",
"title": "Construction Materials",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:30"
},
{
"rfp_no": "DOHS/G/ICB-39/PHCRD/2074-75",
"title": "Procurement of Drugs for Mental Health Programme",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "OIBN/CONSULTANTANCY SERVICES/METRO/2074/075-1",
"title": "Detailed feasibility study for the Development, Operation and Management of Metrorail Project (Dhulikhel to Naghdhunga)",
"procuring_entity": "Office of the Investment Board (OIBN)",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "17-05-2018 06:00"
},
{
"rfp_no": "DADOChitwan/goods/05/074-75",
"title": "Procurement and Installation of Electrical Equipments for Chitwan Samudayik Machha Dana Udhyog",
"procuring_entity": "District Agriculture Development Office, Chitwan",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-05-2018 10:45"
},
{
"rfp_no": "DROKTM2/3373314/074/75-27",
"title": "Supplying and Applying of thermoplastic paint- package 1 (Swoyambhu -Kalanki Road)",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DROKTM2/3373314/074/75-28",
"title": "Supplying and Applying of thermoplastic paint- package 2 ( Balaju-Junction-Banasthali-Swoyambhu,Samakhusi Tokha Road)",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-05-2018 01:00"
},
{
"rfp_no": "DROKTM2/3373314/074/75-29",
"title": "Supplying and Applying of thermoplastic paint- package 3 ( Maharajganj - Balaju Bypass Junction)",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75-30",
"title": "Supply of construction materials at Office yard or as per directed by Engineer.",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DROKTM2/ Dharauti /074/75-31",
"title": "Maintenance of SRN/SURN Roads damaged during excavation of Pipe line, electric pole,Telephone pole &amp; Sewerage line etc.",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-05-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371574/074/75-26",
"title": "Construction of RCC Slab Culvert over Sere khola, Khadkagaun,Kalanki",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "EEAP/KASKI/02",
"title": "Upgrading of Sishuwa-Polyangtar Road (16.2Km)",
"procuring_entity": "District Technical Office, Kaski",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 10:00"
},
{
"rfp_no": "SNRTP-SIND-W-NCB-34-04-PM-074-75",
"title": "Periodic Maintenance of Naubise-Chautara-Melamchi Road CH 0+000 km to CH 43+000 km",
"procuring_entity": "Office of the District Co-ordination Committee, District Technical Office, Sindhupalchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 10:00"
},
{
"rfp_no": "GMB/C/NCB/02/074-075",
"title": "CONSTRUCTION OF GAURADAHA MUNICIPAL OFFICE BUILDING (BLOCK B,C AND D)",
"procuring_entity": "Gauradaha Municipality, Office of Municipal Executive, Province No.1, Nepalnnce",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "KRM/10/074/75",
"title": "Construction of Rural Municipal Office Building (Phase I)",
"procuring_entity": "Kotahimai Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "02/074/75/DUDBC/KASKI",
"title": "Upgrading of road and drain in main urban area, Kushma Municipality, Parbat District.",
"procuring_entity": "DUDBC, DIVISION OFFICE, KASKI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "02/074/75/DUDBC/KASKI.",
"title": "Upgrading of road and drain in main market area, Putalibazar Municipality, Syangja District.",
"procuring_entity": "DUDBC, DIVISION OFFICE, KASKI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "SMBCP 19 /2074/075",
"title": "Mariyadhar II Bridge Harinagara Basantapur Sunsari Approach Road Construction work Sunsari",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 14:45"
},
{
"rfp_no": "DOHS/G/NCB-25 /EDCD/2074/075",
"title": "Procurement of Hand compressor Pump for Indoor Sprayer",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 13:00"
},
{
"rfp_no": "2074/75 Online UPS 008",
"title": "15 no of 3KVA online and 30 no of 2KVA online UPS Purchase",
"procuring_entity": "Nepal Bank Limited",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 16:30"
},
{
"rfp_no": "074/75/141",
"title": "Searchlight and Generators",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 11:30"
},
{
"rfp_no": "PADT/2074-075/PDRF/Rev/Re02",
"title": "Chandra vinayak conservation works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-05-2018 00:00"
},
{
"rfp_no": "PPMO/SQ/WORKS/02/074/75",
"title": "Procurement of prefab construction on Samiti Building",
"procuring_entity": "Public Procurement Monitoring Office, Tahachal Kathmandu",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "21-05-2018 10:00"
},
{
"rfp_no": "RBBL/GSD/CS/SYSTEM (IT/IS) AUDIT/01/074/075",
"title": "Rastriya Banijya Bank Ltd (RBBL) System (IT/IS) Audit,2075",
"procuring_entity": "Rastriya Banijya Bank Ltd",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "RSDPAF II- DoR-G-ICB-19",
"title": "Procurement of Supply and Delivery of All Terrain Crane",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "3-074 /75",
"title": "Construction of Canteen,Toilet and Parking in Birgunj ICD",
"procuring_entity": "Nepal Intermodal Transport Development Board",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 11:56"
},
{
"rfp_no": "NCB/2074-75/REG/15",
"title": "Structural Works of Emergency Block(8 storey including basement)",
"procuring_entity": "Nepal Police Hospital Maharajgunj Kathmandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 14:30"
},
{
"rfp_no": "DoEnv 08/2074-75",
"title": "THE SUPPLY, INSTALLATION, TRAINING AND DEMONSTRATION OPERATION OF THERMAL DESORPTION",
"procuring_entity": "Department Of Environment",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "02/DTO/Uday/TB/LSTB/074-075",
"title": "Fabrication of Steel Parts, Supply, Construction and erection of Chiptar Sunspension Trail Bridge",
"procuring_entity": "District Development Committee, Udayapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 06:00"
},
{
"rfp_no": "NCB/W/05/074/75",
"title": "Construction of Hospital Building",
"procuring_entity": "Sarada Municipality, Khalanga, Salyan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 12:00"
},
{
"rfp_no": "MM/ACH/W/NCB/01/074-75",
"title": "Construction Work of Buildings for Achham Campus Building",
"procuring_entity": "Mangalsen Municipality, Achham",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "SNRTP-MAK-W-NCB-14-07-PM- 074-75",
"title": "Periodic maintenance of roads, drainage, and off-road structures of Pulkomukh-Indrenichaur-Phatbazar-Phedigaun-Chisapani-Chalti Road from CH 0+000 to CH 24+500 and Gairigaun-Pakani-Dandakharka-Bharta-Chainpur-Manahari Road from CH 0+000 to CH 20+660",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-05-2018 15:00"
},
{
"rfp_no": "RAP/MIP/NCB-01/074-75",
"title": "Construction of Irrigation System Including H/W, Canal and Structures",
"procuring_entity": "Irrigation Development Division, Sarlahi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-05-2018 10:00"
},
{
"rfp_no": "5/074_75",
"title": "Abutment Protection work at Guigad Bridge, Bajura",
"procuring_entity": "501 Division Road Office Sanphebagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-05-2018 00:00"
},
{
"rfp_no": "NCB/works/ TCH-16/74/75",
"title": "Construction of Truss Structure Prefabricated Covered Hall at Dasarath Stadium, Tripureshwor,KTM",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "MRM/SIN/GOODS/NCB/07-074-075",
"title": "precurement of electric goods",
"procuring_entity": "Marin Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "NCB/07/074/75",
"title": "Construction of Boundary wall,shutter,Park &amp; Garague Place-Rangeli Municipality office",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 00:00"
},
{
"rfp_no": "NCB/08/074/75",
"title": "Construction of Cottage &amp; Shutter Room place-Rangeli Hatiya Rangeli-7",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 00:00"
},
{
"rfp_no": "DOE/G/NCB/02/2074-75",
"title": "Supply and Delivery of Hatch Back Car",
"procuring_entity": "Department of Education",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 00:00"
},
{
"rfp_no": "06/2074-075",
"title": "Canteen &amp; Arrival hall construction ,At Nepalgunj Airport.",
"procuring_entity": "Nepalgunj Civil Aviation Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 10:00"
},
{
"rfp_no": "MIP/1/2074/75",
"title": "Construction of irrigation system including intake, canal and structures of Charnath Irrigation System",
"procuring_entity": "Irrigation Development Division, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 00:00"
},
{
"rfp_no": "BKM/UDA/NCB/2074/75/01",
"title": "Hydraulic Excavator having engine specification six-cylinder in line, Direct injection turbocharged, water-cooled, Diesel engine, developing maximum gross Power not less than 108 KW at governed rpm.",
"procuring_entity": "Belaka Municipality Office, Rampur Udayapur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "DORMEB/CB/074-75/01",
"title": "Procurement of Supply and Delivery of Backhoe loader and Spare parts",
"procuring_entity": "Mechanical Branch",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "MG/G/BMO-04/2074-75",
"title": "ICT hardware and equipment",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 16:00"
},
{
"rfp_no": "MG/G/BMO-05/074-075",
"title": "solar power backup system",
"procuring_entity": "Barbardiya Municipality",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 16:00"
},
{
"rfp_no": "SC/19/074/75",
"title": "Supply of LED Street Light 25W for Rangeli Municipality Rangeli ,Morang",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/Rev/T4",
"title": "Stone Paving at ITTA PAKHA",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "DROLTP-08-27/074/75",
"title": "Construction of traffic safety structures at Lamatar-Lakuribhanjyang-Manedovan Road",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "DROLTP-08-28/074/75",
"title": "Construction of traffic safety structures at Satdobato-Godawari-Pulchowki Road",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "DROLTP-08-29/074/75",
"title": "Providing and fixing of cat's eye.",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "07-074/75.(01)",
"title": "Construction of 20 m,One Span, Simply Supported, Cast-in-situ, 2 Webbed Reinforced Concrete Slab-Deck Bridge over Chhepar River, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-05-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/12/074/075",
"title": "Causeway Construction",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-05-2018 07:00"
},
{
"rfp_no": "lFBOMD207475T1C1",
"title": "Procurement of Unit Load Device (ULD) Pooling for NAC's A330-200 Aircraft",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "17-04-2018 22:00"
},
{
"rfp_no": "NCB/WOB/2074/075",
"title": "Construction of Ward Office Building of Ward No -1",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "NCB/WOB-4/2074/075",
"title": "Construction of Ward Office Building of Ward No- 4",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "NCB/WOB-7/2074/075",
"title": "Construction of Ward Office Building of - 7",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "NCB/WOB-9/2074/075",
"title": "Construction of Ward Office Building of Ward No- 9",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "NCB/WOB-6/2074/075",
"title": "Construction of Ward Office Building of Ward No- 6",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 00:00"
},
{
"rfp_no": "KRM-03/074/075",
"title": "Simara-Gorpar-Baramajhiya Road Uprading work ( Black Top )",
"procuring_entity": "kanchanrup Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 16:30"
},
{
"rfp_no": "NCB/ PHQ/REG/2074-075/ 05",
"title": "Construction of Barrack Block ( GF+FF+SF+TF Structure Only) for Motor and Transport Division",
"procuring_entity": "Nepal Police Head Quarter, Kathmandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 12:00"
},
{
"rfp_no": "KRM-03/074/075",
"title": "Rupnagr-Kanchanpur-Bakal-Pathari-Pademara Road Upgrading work (Black Top)",
"procuring_entity": "kanchanrup Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "KRM/SPT/NCB-09/074/075",
"title": "Kanchanpur Phatepur Rooad - Kanchanpur Hatiya Road ( Black Top &amp; Brick Masonry Drain)",
"procuring_entity": "kanchanrup Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "KRM/SPT/NCB-10/074/0759",
"title": "Baluwa chowk-Saini chowk - Rupnagar Road Upgrading work (Black Top &amp; Brick Masonry Drain)",
"procuring_entity": "kanchanrup Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "KRM/SPT/NCB-11/074/075",
"title": "Construction of Rupnagar commercial Building",
"procuring_entity": "kanchanrup Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "NITC/G/NCB-8-074/75",
"title": "SUPPLY, DELIVERY AND INSTALLATION OF SERVER, STORAGE, VIRTUALIZATION AND ENTERPRISE MAIL SYSTEM",
"procuring_entity": "National Information Technalogy Center, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 12:00"
},
{
"rfp_no": "06/NCB/Goods/074/075",
"title": "Invitation for Bids Procurement of Hospital Equipment",
"procuring_entity": "Seti Zonal Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 13:55"
},
{
"rfp_no": "047/75/139",
"title": "Trailers",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 13:00"
},
{
"rfp_no": "07/2074/75",
"title": "Construction of Jawan line,Kitchen with Dining and ten sitter toilets and bathroom.",
"procuring_entity": "EASTERN DIVISION HQ",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 00:00"
},
{
"rfp_no": "BAPIDP-EQ -008/2074-075",
"title": "Supply and Delivery of 4WD Jeep (SUV), 2 No.s",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 00:00"
},
{
"rfp_no": "DCC/MAK/WS/10/074/75",
"title": "Procurement of HDPE pipe for supply to different water supply projects located in different rural areas of Makwanpur district.",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-05-2018 00:00"
},
{
"rfp_no": "DDP/Casting Plant/074/75/01",
"title": "Horizontal Continuous Casting Plant",
"procuring_entity": "Directorate of Defense producation",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 06:00"
},
{
"rfp_no": "MoPID/SQ/G-06/074-75",
"title": "Supply and Delivery of Motorcycles at Ministry of Physical Infrastructure Development, Province-1, Biratnagar.",
"procuring_entity": "Ministry of Physical Infrastructure Development State No-1",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "SRM/WORK/05/074-75",
"title": "Construction of Rural Municipal Office Building",
"procuring_entity": "Suddodhan Rural Municipality Office of Rural Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 10:00"
},
{
"rfp_no": "NCB/Works/Nepalgunj- Gstand/10/74/75",
"title": "Construction of Foundation for Grandstand with Supply and Installation of Modular Steel Trusses Grandstand of Nepalgunj Stadium at Banke",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-05-2018 23:59"
},
{
"rfp_no": "GORKHAPATRA/G/ICB/2074/75/02",
"title": "Supply, Delivery, Installation &amp; Commissioning and Training of Computer to Plate (CTP) Machine",
"procuring_entity": "Gorkhapatra Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "RSDPAF/6/2074-75",
"title": "Site Preparation for Staking of 2 sets of HS 20-44 Single Lane Modular Steel Bridge Parts at DRO Mahendranagar Site Camp at Dhanghadi, Kailali and HED Godawari, Kailali",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-1/2074-75",
"title": "Site Preparation for Staking of 2 Set HS 2044 Modular Steel Bridges at DRO Nepalgunj Camp and 1 Set at HED Nepalgunj Camp, Banke",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-2/2074-75",
"title": "Site Preparation for Staking of 1 Set of HS 20 44 Modular Steel Bridge Parts at DRO Butwal Site Camp Bardaghat, Nawalparasi",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-3/2074-75",
"title": "Site Preparation for Staking of 2 Set of HS 20 44 Modular Steel Bridge Parts at DRO Shivapur Camp, Kapilvastu",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-4/2074-75",
"title": "Site Preparation for Staking of 2 Set AASHTO P7 Modular Steel Bridge Parts and 4 Set HS 20 44 Modular Steel Bridge Parts at Shakhar Camp, Mugling",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-5/2074-75",
"title": "Site Preparation for Staking of 2 Set HS 20 44 Modular Steel Bridge Parts at DRO Damalui Camp, Damauli and 2 Set HS 20 44 Modular Steel Bridge Parts at Dumre Site Camp, Tanahun",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-6/2074-75",
"title": "Site Preparation for Staking of 1 Set HS 20 44 Modular Steel Bridge Parts at HED Camp, Pokhara, Kaski",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-7/2074-75",
"title": "Site Preparation for Staking of 2 Set HS 20 44 Modular Steel Bridge Parts at HED camp Hetauda, Makawanpur",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-8/2074-75",
"title": "Site Preparation for Staking of 1 Set HS 20 44 Modular Steel Bridge Parts at HED Kathmandu Camp, Minbhawan, Kathmandu",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-9/2074-75",
"title": "Site Preparation for Staking of 1 Set AASHTO P9 Modular Steel Bridge Parts and 3 Set HS 20 44 Modular Steel Bridge Parts at DRO Lahan Camp, Lahan",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "RSDPAF/6-10/2074-75",
"title": "Site Preparation for Staking of 1 Set HS 20 44 Modular Steel Bridge Parts at DRO Biratnagar Site Camp Dharan, Sunsari",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 01:00"
},
{
"rfp_no": "NCB/TB/SAN/074-075/001",
"title": "Fabrication of steel parts and transportation up to road heads of Tagado,Devichhanga,Tetekhumbu,Kalleri Puchhar,Samatar,Ordare,Apswa SSTB.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sankhuwasabha",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 05:00"
},
{
"rfp_no": "CRM/W/NCB/02/2074-075",
"title": "Construction of Office Building complex of Ward Number-06, Chure Rural Municipality",
"procuring_entity": "Chure Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-05-2018 00:00"
},
{
"rfp_no": "CRM/W/NCB/01",
"title": "Construction of Office Building complex of Chure Rural Municipality",
"procuring_entity": "Chure Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-05-2018 00:00"
},
{
"rfp_no": "52-074-75",
"title": "Procurement of Electro - Hydraulics operation table",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-05-2018 02:00"
},
{
"rfp_no": "53-074-75",
"title": "Procurement of Electric Operation table",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-05-2018 02:00"
},
{
"rfp_no": "BM/NCB/2074/75-19",
"title": "Box Culvert at tallo Bato, Near Danda Khatri House",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "BM/NCB/074/75-20",
"title": "Box Culvert Near Ghugutel House",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-05-2018 00:00"
},
{
"rfp_no": "02/074/75 supply and delivery of Mechanical equipments",
"title": "supply and delivery of Mechanical equipments, Exacvator",
"procuring_entity": "Simraungadh Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "03/2074/75 supply and delivery of machanical equipments",
"title": "supply and delivery of machanical equipments, Tipper",
"procuring_entity": "Simraungadh Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "04/2074/75 supply delivery of tractor with hvdraulic Trailer",
"title": "supply and delivery of mechanical equipments",
"procuring_entity": "Simraungadh Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "05/2074/075 Supply and Delivery Of a Suction machine trailor mounted and one number of tractor",
"title": "Supply and Delivery Of a Suction machine trailor mounted and one number of tractor",
"procuring_entity": "Simraungadh Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "04/074/75/3371014",
"title": "Maintenance for drain, Stone masonry wall, Gabion wall and Road safety work.",
"procuring_entity": "Gaighat Diktel Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 21:00"
},
{
"rfp_no": "14-074/75",
"title": "Black top (Asphalt Concrete) and Road Furniture works on Bharatpur Madi Thori Road (Cancer Hospital-Prembasti-Rapti Pul Section) , Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 10:00"
},
{
"rfp_no": "SSDRP/05/074/075-009",
"title": "Construction of Road structures &amp; Cross drainage Works from Gangare (135+000) to Near Devisthan (162+000) section along Saljhandi -Shandhikharka - Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 10:00"
},
{
"rfp_no": "SSDRP/05/074/075-007",
"title": "Construction of Road structures , Cross drainage works from Balebang (60+000) to Fudbang (68+500m) section along Saljhandi -Shandhikharka - Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 10:00"
},
{
"rfp_no": "SSDRP/05/074/075-008",
"title": "Construction of Road structures &amp; Cross drainage from Mate (74+000) to Near Myalpokhari (104+000) section along Saljhandi -Shandhikharka - Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 10:00"
},
{
"rfp_no": "SSDRP/05/074/075-010",
"title": "Construction of Road structures &amp; Cross drainage works from Burtibang (167+000) to Dhorpatan (195+000) section along Saljhandi -Shandhikhark - Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 10:00"
},
{
"rfp_no": "SNRTP-SAP-W-NCB-24-14-PM-074-075",
"title": "Periodic Maintenance of Kalyanpur-Inarwa-Phulbariya-Banaula-Banuli-Barahi Kushaha Road",
"procuring_entity": "District Technical Office (DTO), Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 00:00"
},
{
"rfp_no": "DROLTP-06-22/074/75(Re)",
"title": "Supply of Construction materials",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "DOHS/G/SQ-47/MD/2074- 75",
"title": "Printing of Annual Report",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "18/SC/074/75",
"title": "Supply of LED Straight Light 25W Rangeli Municipality Rangeli Morang",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-05-2018 00:00"
},
{
"rfp_no": "Finishing Works of Barrack Block at Metropolitan Police Range, Lalitpur",
"title": "Finishing Work of Barrack Block",
"procuring_entity": "Metropolitian Police Range Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-05-2018 12:15"
},
{
"rfp_no": "DOHS/G/SQ-40.1/ MD/2074- 75",
"title": "Printing of LMIS Form and Stock Books",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-05-2018 18:00"
},
{
"rfp_no": "NCB/1/2074/075",
"title": "Construction of Municipal Office Building",
"procuring_entity": "Kishnapur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 11:15"
},
{
"rfp_no": "NAC/GS&PMD/PS/24/2074/75",
"title": "Fluorescent Ramp Jacket &amp; Raincoat for Nepal Airlines Corporation for Fiscal Year 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 10:00"
},
{
"rfp_no": "03/ 074/075",
"title": "Construction of sabgrigh at junction of Chipe Khola,Pravaligad and Budhiganga, Sanfebagar",
"procuring_entity": "NEW TOWN PROJECT OFFICE, SAFEBAGAR, ACHHAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "06/074-075",
"title": "Procurement of Different size of gabion boxes",
"procuring_entity": "Marin Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 12:00"
},
{
"rfp_no": "07/074/075/mechi",
"title": "Conference Hall construction",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "13-074/075",
"title": "Construction of Nepal Rastra Bank's Banking Office Building,Thapathali, Kathmandu",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 09:00"
},
{
"rfp_no": "KRMC/MOR/FE /NCB-07 (074/75)",
"title": "Construction of Premix Road Carpeting Bagaincha to Pragati Chowk",
"procuring_entity": "Kerabari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 12:00"
},
{
"rfp_no": "KRMC/MOR/FE /NCB-06 (074/75)",
"title": "Construction of Premix Road Carpeting Amrit Chowk to Mugu Khola",
"procuring_entity": "Kerabari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 12:00"
},
{
"rfp_no": "GON/KAISERMAHAL/2074-75/NCB - 01",
"title": "Construction of Prefabricated library hall at Kaisermahal, Kathmandu",
"procuring_entity": "Kaiser Library",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 10:00"
},
{
"rfp_no": "1 Exa.brk/074/075",
"title": "Purchase of excavator with breaker",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "1 Back/074/75",
"title": "purchase of backhoe loader",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "1 Four wheel 074/75",
"title": "purchase of Four wheel vehicle",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "1 Exaevator 074/75",
"title": "purchase a excavator",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "-1/BHO/G/TB/074/075",
"title": "Procurement of Fabrication of steel parts for 8 nos trial bridges",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Bhojpur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 11:00"
},
{
"rfp_no": "TIACAO/CED/10/074-75",
"title": "Annual maintenance of runway,taxiway,apron &amp; Associated works.",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "JZH/074/075/11",
"title": "supply and delivery of Carm machine ortho",
"procuring_entity": "Janakpur Zonal Hospital Development Committee",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "JZH/074/075/12",
"title": "Supply and Delivery of Hospital bed &amp; matress",
"procuring_entity": "Janakpur Zonal Hospital Development Committee",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "14-05-2018 00:00"
},
{
"rfp_no": "ICB-01-RFFD-074/75",
"title": "The Supply, Delivery, Testing &amp; Commissioning of ARFF Vehicle for Pokhara Airport",
"procuring_entity": "Civil Aviation Authority of Nepal, Rescue & Fire Fighting Deparment",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "19/074-075",
"title": "Road Improvement Work from ward No 2 Pipalbot-DDC Hall-Ganesh Mandir-District Administrative Office Gate at Khalanga Jajarkot",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 05:00"
},
{
"rfp_no": "NBSM-3-2074/75",
"title": "Procurement of Multifunction Calibrator",
"procuring_entity": "Nepal Bureau of Standards and Metrology1",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 00:00"
},
{
"rfp_no": "01/NWSCNPJ/EOI/2074-075",
"title": "Detailed Engineering Survey, Design, Drawing and Preparation of Detailed Project Report and Contract Document for upgrading of water supply project in Nepalgunj Sub-Metropolitan City.",
"procuring_entity": "Nepal Water Supply Corporation, Nepalgunj",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 06:00"
},
{
"rfp_no": "PADT/2074-075/PDRF/Retender",
"title": "Reconstruction of Dhyo Chhen (Devata Ghar) at Dathu Tole, Pashupati",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/PDRF/Retender1",
"title": "Kirateshwor Sattal Conservation and Rehabilitation Work",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/PDRF/Retender2",
"title": "Drainage Works at Pancha Deval-Bhashmeshwor Road",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "01/074/075-",
"title": "Science city master plan and phase wise DPR Preparation",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "02/074/075-",
"title": "Periodic Plan Preparation work",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "03/074/075-",
"title": "MTMP Preparation",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "04/074/075-",
"title": "Agriculture Whole sale Market(Krishi Mandi)Master plan and phasewise dpr preparation",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "05/074/075-",
"title": "Municipality Profile Prepaaration",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "06/074/075-",
"title": "Mini market Master plan and DPR Preparation",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-05-2018 00:00"
},
{
"rfp_no": "DOHS/G/NCB-52/EDCD-2074-75",
"title": "Procurement of Fogging Machine",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 00:00"
},
{
"rfp_no": "CTEVT/TEVT Exp./074/75-Civil-10",
"title": "Construction of Principal Quarter, Canteen and Other Works of Dhading Polytechnic Institute, Gajuri, Dhading",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 13:00"
},
{
"rfp_no": "01 / 2074-075",
"title": "District Administration Office, Udayapur Building Construction Work at Udaypur, Triyuga Municipality",
"procuring_entity": "District Administration Office, Udayapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 00:00"
},
{
"rfp_no": "BPKIHS/074/075/024",
"title": "Laparoscopic High Definition visual System with Light Source",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 11:00"
},
{
"rfp_no": "NAMS/NCB/Works/74/75/03",
"title": "Bir Hospital Sanitary Sewer Improvement Works",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 10:00"
},
{
"rfp_no": "BPKIHS/074/075/025",
"title": "Cautery Machine",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 11:00"
},
{
"rfp_no": "BPKIHS/074/075/026",
"title": "High End Patient Bed Side Monitor for ICU",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 11:00"
},
{
"rfp_no": "KTS/Jumla/Works/NCB/01-074/075",
"title": "Construction of Class Room Building",
"procuring_entity": "Karnali Technical School",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 00:00"
},
{
"rfp_no": "CIAA-NCB-06-2074/075",
"title": "The Supply Delevary and Installation of IT Infrastructure(Email Systm,Office Automation System)",
"procuring_entity": "Commission for the Investigation of Abuse of Authority (CIAA), Tangal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 14:00"
},
{
"rfp_no": "DORP/3373644/2074/075-08",
"title": "Road Upgradation works (Back/Grade cutting , drainage and sub base Works) along Madan Bhandari Marga Sadak ( CH: 71+000 to CH: 76+000 Dovan nageswari Section ),Taplejung District.",
"procuring_entity": "North South (Taplejung-Olangchungola) Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 19:00"
},
{
"rfp_no": "074/75/135",
"title": "EMERGENCY ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 10:30"
},
{
"rfp_no": "074/75/136",
"title": "PHYSIOTHERAPY ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 10:30"
},
{
"rfp_no": "3373644/074/75-09",
"title": "Road Upgradation works (Back/Grade cutting , drainage and sub base Works) along Madan Bhandari Marga ( CH: 76+000 to CH: 80+000 Nnageswari -Bahanande- Section ),Taplejung District.",
"procuring_entity": "North South (Taplejung-Olangchungola) Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 14:00"
},
{
"rfp_no": "39/074-75",
"title": "Sahari Swosthya Kendra Bhawan Nirman",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-04-2018 14:00"
},
{
"rfp_no": "33/074-75",
"title": "Construction of Seminar Hall at Tilottama-9, Kewlani",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 17:00"
},
{
"rfp_no": "PDRF-65/074/075",
"title": "Reconstruction work of Jyangter Sangpal Hise Gumba",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "PDRF-66/074/075",
"title": "Reconstruction work of Minguyur samling Gumba",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "PDRF-67/074/075",
"title": "Reconstruction work of Nasamana Bhajan Sattal",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 06:00"
},
{
"rfp_no": "PADT/2074-075/Const/Rev/T11",
"title": "Pashupati Paripath Nirman works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "CRRD-01-01/074/75(Re)",
"title": "Road Rehabilitation &amp; Overlay work",
"procuring_entity": "Central Regional Road Directorate",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-05-2018 00:00"
},
{
"rfp_no": "NTPO/Khurkot/Quotation/074/75-2",
"title": "Rehabilitation and improvement works in Narbadeshwor Mahadev Temple",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "11-05-2018 23:00"
},
{
"rfp_no": "NCB/01-2074/75/ Goods",
"title": "Supply and Delivery of 4WD Jeep",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 10:00"
},
{
"rfp_no": "CTEVT/TEVT Exp.Unit 2074/075,Civil-09",
"title": "Construction of Hostel Building (Above Plinth level)of B.P. Memorial Polytechnic Institute Sapahi, Dhanusha",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 13:00"
},
{
"rfp_no": "DOHS/G/NCB-66/MHZ/2074/075",
"title": "Procurement of Hospital Equipment &amp; Furniture for Mahakali Zonal Hospital Mahendranagar, Kanchanpur, Nepal",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "MUN-MLT-BLD-05-074-075",
"title": "Construction of Devdaha Multipurpose Building",
"procuring_entity": "Devdaha Municipality, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "01/074/075/Bmc",
"title": "Construction of Building of Butwal Multiple Campus",
"procuring_entity": "Butwal Multiple Campus",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 10:00"
},
{
"rfp_no": "MIP/Dauwa/IDD.Syangja/NCB-01/074-75",
"title": "Construction of Headworks, Canal and Canal Structure of Dauwaphat Irrigation Project",
"procuring_entity": "Irrigation Development Division Syangja",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 06:00"
},
{
"rfp_no": "01-AZP-074/75",
"title": "Harre Tunibote Arid Zone water supply project, Sangachok, Sindhupalchok",
"procuring_entity": "Water Supply and Sanitation Division Office, Sindhupalchok",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Saptari/Work/NCB/7/ 074/075",
"title": "Construction of Ayodhyanagar Healthpost Building Construction Work, Ayodhyanagar, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "NBL/MSD/Works/02",
"title": "KALIMATI BRANCH - Civil construction, Counter, Aluminium partition, painting, electrical networking and AC works.",
"procuring_entity": "Nepal Bank Limited",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 17:00"
},
{
"rfp_no": "DUDBC/Saptari/Work/NCB/8/ 074/075",
"title": "Construction of Lahan Healthpost Building Construction Work, Lahan, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Saptari/Work/NCB/9/ 074/075",
"title": "Construction of Badaharamal Healthpost Building Construction Work, Badaharamal, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "13/DROBRT/3373664/2074/75-43",
"title": "Construction of Black Top Road including Drainage structure in Katahari-Majhare-Pokhariya-Nocha Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 12:00"
},
{
"rfp_no": "13/DROBRT/3373664/2074/75-44",
"title": "Blacktopped Road Construction Works including Drainage StructuresRangeli road ko Ramchowk dekhi Rameshwor mandal ko ghar hudai sisbani jahada Pokhriya sima sadak,Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 12:00"
},
{
"rfp_no": "DORMEB/3370124/074-75/03 (R)",
"title": "Re Invitation: Procurement of Supply and Delivery of Truck Mounted Bitumen Distributor",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "NRM/GOODS/ SQ/32/2074/075",
"title": "Supply, Deliver, Installation and other approved Technical Specification of Generator 30 KVA.",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-05-2018 07:00"
},
{
"rfp_no": "074/75-03",
"title": "Laboratory Support Works",
"procuring_entity": "Central Road Laboratory",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "DOHS/G/SQ-65/PHCRD/ 2074/075",
"title": "Printing of PEN Protocol flip chart",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "GORKHAPATRA/G/ICB/2074/75/01/P1",
"title": "Supply of 1000 m.tons of European origin or equivalent quality standard newsprint reels",
"procuring_entity": "Gorkhapatra Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-04-2018 10:00"
},
{
"rfp_no": "GORKHAPATRA/G/ICB/2074/75/01/P2",
"title": "Supply, Delivery, Installation &amp; Commissioning and Training of Web Offset Machine",
"procuring_entity": "Gorkhapatra Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-04-2018 10:00"
},
{
"rfp_no": "IFBGrSD207475T7FC7",
"title": "Procurement of Self Propelled Aircraft Potable Water Vehicle",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "07/2074/075",
"title": "Construction of Academic Building, Puranchour, Kaski",
"procuring_entity": "Agriculture and Forestry University (AFU), Central Office, Rampur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "DUDBCBalgung/ NCB/Works/074/75-02",
"title": "Construction of Healthpost Building at Dhorpatan Municipality-4 Khunga, Baglung (RCC Load Bearing Structure)",
"procuring_entity": "DUDBC DIVISION OFFICE, BAGLUNG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 12:00"
},
{
"rfp_no": "JCO 22 /2074-75",
"title": "Construction of septic tank-,manholes, walking path way, aprone drain, all complete set.",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 14:00"
},
{
"rfp_no": "BM/NCB/2074/75-25",
"title": "Construction of Dondre Khola Bridge (Multi cell Box Culvert)",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 06:00"
},
{
"rfp_no": "BM/NCB/2074/75-26",
"title": "Upgrading of Lakhna Ranjha Road",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 06:00"
},
{
"rfp_no": "NAMS/NCB/74/75/28",
"title": "Supply, Delivery &amp; Installation of Operation Table (OT) Table",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 10:00"
},
{
"rfp_no": "BM/NCB/2074/75-27",
"title": "Construction of ward Office Building of ward No. 8",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 06:00"
},
{
"rfp_no": "NAMS/NCB/74/75/29",
"title": "Supply, Delivery &amp; Installation of Electric Cautery Unit",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 10:00"
},
{
"rfp_no": "DUDBC/ Balgung/ NCB/Works/074/75-03",
"title": "Construction of Healthpost Building at Nisi Khola GaunPalika -1 Devisthan, Baglung (RCC Load Bearing Structure)",
"procuring_entity": "DUDBC DIVISION OFFICE, BAGLUNG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 12:00"
},
{
"rfp_no": "ramechhapmun/NCB/03/074-75",
"title": "procurement of Back Hoe Loader",
"procuring_entity": "Ramechhap Municipality office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 06:00"
},
{
"rfp_no": "ramechhapmun/NCB/04/074-75",
"title": "Procurement of Hydraulic excavator",
"procuring_entity": "Ramechhap Municipality office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 06:00"
},
{
"rfp_no": "DOHS/G/NCB-48/CHD/2074/075",
"title": "Procurement of Drug for CBIMNCI Programme",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 11:00"
},
{
"rfp_no": "Metro/Bhr/W/NCB/10/074/075",
"title": "PCC wall including GI mesh Jali fixing Works ward no-28",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 07:00"
},
{
"rfp_no": "17/074/075/Butwal",
"title": "Blacktop Repairing works",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 16:00"
},
{
"rfp_no": "STMISP-1/074/075",
"title": "Construction of Canal &amp; Structures at Madela Kulo Irrigation Project, Thakurbaba Na. Pa. Bardiya",
"procuring_entity": "Irrigation Development Sub-Division, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 17:00"
},
{
"rfp_no": "07-2074/2075",
"title": "Roadway Excavation &amp; structural works along Dovan-Taplejung-Olangchung Gola -Tiptala (China Tibet Border) Road Sector (Ch 26+000 ~66+000 ,Taplejung District",
"procuring_entity": "North South (Taplejung-Olangchungola) Highway Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 10:00"
},
{
"rfp_no": "12/DROBRT/3373664/2074/75-40",
"title": "Construction of Black Topped Road &amp; Culvert in Laxmimarg dekhi dakshin Dangihat-Banauli-Karsiya hudai Aamahi(Bharat sima) sadak, Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 12:00"
},
{
"rfp_no": "12/DROBRT/3373664/2074/75-41",
"title": "Construction of Black Top Road including Drainage structure in Sunsari Xetra no 4 - Sahebjung (Bharat Border)- Ra. Shi. Ga.Bi.Sa. Thakurbadi chowk hudai Ra. Shi. 6,5,4,3,2 hudai Gautampur Ga. Bi. Sa. Itabhatta hudai Hatiya chowk - Jalpapur Ga. Bi. Sa. Babiya Ga. Bi. Sa. hudai Shastra Sima Prahari hudai -Hanuman chowkbat Rajmarg 20 km",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 12:00"
},
{
"rfp_no": "12/DROBRT/3373664/2074/75-42",
"title": "Construction of Black Top Road including Drainage structure in KaptanganjPanchau Simar NayaahatiyaPaschim Devanganj ga.bi.sa.hudai Madhyarsili harinagaraThana Ramnagar Bhutaha Chaprahi Narsing Janta Chowk MRM Sunsari",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 12:00"
},
{
"rfp_no": "12/DROBRT/3373544/2074/75-39",
"title": "Blacktopped Road Construction Works including Drainage Structures in Katahari chowk batta Lohandra Khola Hudai Majhare Jodne sadak",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 12:00"
},
{
"rfp_no": "074/75/133",
"title": "PAEDITRIC ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 11:30"
},
{
"rfp_no": "074/75/134",
"title": "PHARMACY ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-04-2018 12:40"
},
{
"rfp_no": "NFDB/EOI/C/2017/18/01",
"title": "Inspection, Digitization and Restoration Services of Film Content (Feature &amp; Documentaries)",
"procuring_entity": "Film Development Board, Nepal",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "09-05-2018 12:15"
},
{
"rfp_no": "NCB-G2/RNE/2074/075",
"title": "LP System and Earthing System with Single Phase and Three Phase.",
"procuring_entity": "Radio Broadcasting Service, Radio Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "NCB/2074-75/REG/13(RE)",
"title": "Construction of Six Story Ladies Barrack Building and Ward Block(Structural Works)",
"procuring_entity": "Nepal Police Hospital Maharajgunj Kathmandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/Rev/T7",
"title": "Flagstone Works on Darshan Marga (Charshivalaya, Rajrajeshwori, Panchadeval)",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "NCB-G3 /RNE/2074/ 075",
"title": "The SUPPLY &amp; Delivery of Studio Equipment",
"procuring_entity": "Radio Broadcasting Service, Radio Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 00:00"
},
{
"rfp_no": "06/047/075",
"title": "Electrification Extension work at different wards of Narayan Municipality",
"procuring_entity": "Narayan Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 17:00"
},
{
"rfp_no": "CAAN-CNAD-ICB-05-074-75",
"title": "The Supply, Delivery, Installation and Testing of ATC Tower Console at Different Domestic Airports of Nepal",
"procuring_entity": "Communication And Navigation Aid Department, Civil Aviation Authority of Nepal",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "RRRSDP/Sindhu/RR/NCB/ 002/074-75",
"title": "Reconstruction and Rehabilitation of Chautara - Syaule - Okhreni - Selang - Golche Road, Sub-Project (CH 0+000 to CH 12+000), Sindhupalchowk",
"procuring_entity": "Office of the District Co-ordination Committee, District Technical Office, Sindhupalchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 10:00"
},
{
"rfp_no": "NCB/works/Squash- 74/75",
"title": "Construction Of Central Court Of Squash at Satdobato,Lalitpur (Contract Identification No: NCB/works/Squash- 74/75)",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 20:00"
},
{
"rfp_no": "KRMC/MOR/FE /NCB-04 (074/75)",
"title": "PREMIX CARPETING ROAD (Belbari-Devijhoda-Kerabari Road)",
"procuring_entity": "Kerabari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 12:00"
},
{
"rfp_no": "MIP/NCB-01/074-75",
"title": "Chhepe Khola Kharte Khola ISP,Rupakot Majhuwagadhi Municipality-06,Nerpa ,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-02/074-75",
"title": "Dhiplung ISP,Temma 2,4&amp;8,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/07/074-75",
"title": "Kankhe Khola ISP,Baksila-09,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-08/074-75",
"title": "Mahabhir ISP ,Sawakatahare 2 to 9,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-03/074-75",
"title": "Kavre Khola Debithan Muhan Katahare Kulo ISP,Chisapani 4,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-04/074-75",
"title": "Saur Khola ISP,Chisapani 2&amp;5,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-05/074-75",
"title": "Chapleti Sapla Jukepani Sumtel Hurking ISP,Kepilashgadhi Rural Municipality-05,Sapteshwor",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MIP/IDD/NCB-06/074-75",
"title": "Dhode Khola Dovane Khet Tulasedanda Khet ISP,Rupakot Majhuwagadhi Municipality-03,Khotang",
"procuring_entity": "Irrigation Development Division Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "DFTQC/Bhariahawa/01/074/75",
"title": "Construction of Office Building.",
"procuring_entity": "Regional Food Technology and Quality Control Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "004/MF/CHT-KMun/NCB/074-075",
"title": "Construction of Ward Office (Administrative Building), Ward No - 3, Khairahani Municipality",
"procuring_entity": "Khairahani Municiapality Office, Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 11:00"
},
{
"rfp_no": "SM/17/2074/75",
"title": "Construction of Box culvert and Hume Pipe Culvert",
"procuring_entity": "Sukhipur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "7/074/75-29",
"title": "Jhimruk khola Bridge (open foundation and Board Pile foundation of Span Pre-stressed 3x 40m )",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 10:00"
},
{
"rfp_no": "DRMORME, Dhakari, Achham NCB/GOODS/DRMORME/01/2074/075",
"title": "Supply of AWD Pickup -1 Unit",
"procuring_entity": "Dhakari Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "SMBCP 14/074/75",
"title": "Kajala Khola Bridge Approach Road Maintenance work",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 14:10"
},
{
"rfp_no": "SMBCP 18/074/75",
"title": "Mariya khola bridge approach road maintenance work bhutaha sunsari",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 14:35"
},
{
"rfp_no": "SMBCP 15/074/75",
"title": "Singiya khola bridge Gokuwaghat to Lakhantari road approach road maintenance work",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 14:22"
},
{
"rfp_no": "SMBCP 16\\074\\75",
"title": "Keshaliya khola bridge river training protection work Amaduwa Sunsari",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 14:30"
},
{
"rfp_no": "SMBCP 17\\074\\75",
"title": "Kuruwa khola bridge river training protection work inaruwa sunsari",
"procuring_entity": "Sunsari Morang Bridge Construction Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 15:05"
},
{
"rfp_no": "DUDBC/Lalitpur/Works/NCB/01/074/75",
"title": "Construction of Sewerage system in Lubu Buspark,Mahalaxmi Municipality-8, Lalitpur",
"procuring_entity": "DUDBC DIVISION OFFICE, LALITPUR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 18:00"
},
{
"rfp_no": "DUDBC/Lalitpur/Works/NCB/02/074/75",
"title": "Preservation and Infrastructure Development of Naagdah Pokhari,Dhapasi Lalitpur Metropolitancity-23, Lalitpur",
"procuring_entity": "DUDBC DIVISION OFFICE, LALITPUR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 18:00"
},
{
"rfp_no": "14-074/75 Works",
"title": "Additional Work of Ward Office Building, Ward No.2",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 10:00"
},
{
"rfp_no": "15-074/75 Work",
"title": "Additional Work (first floor) of Satya Guru Kabir Nath bal Ashram, Ward No. 8",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 10:00"
},
{
"rfp_no": "16-074/75 Works",
"title": "Additional work Ward Office Building, Ward No. 27, Lohana",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "17-074/75 Works",
"title": "Maintenance of Ward Office Building, ward no. 13",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "18-074/75 Works",
"title": "Construction of PCC road at Ward No.-12, From Rajdevi Temple to Mahadev Temple",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "19-074/75 Works",
"title": "Construction Of ward office Building, Ward No. 14",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "20-074/75 Works",
"title": "Construction of Side Drain at Ward No. 13, From House of Lal Sah to Ram Sebak and Prithwi Sah",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "51/074/075",
"title": "Procurement of Anaesthesia Workstation",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/11/074/075",
"title": "Road Improvement work with Gabion Work.",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 07:00"
},
{
"rfp_no": "10-074-75/061(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 1)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/062(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 2)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/063(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 3)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/065(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 5)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/067(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 7)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/068(RE)",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 8)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 13:00"
},
{
"rfp_no": "10-074-75/079",
"title": "Supply of construction materials at DRO Yard",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 14:00"
},
{
"rfp_no": "10-074-75/080",
"title": "Supply of Bitumen and Emulsion at DRO Yard",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-05-2018 14:00"
},
{
"rfp_no": "KTFT/NCB/2074/75/19",
"title": "Supply and Installation of Lab Equipments",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-05-2018 19:00"
},
{
"rfp_no": "IFB 37/074/075",
"title": "Construction of Office Building Ward 7 Nagadesh",
"procuring_entity": "Madhyapur Thimi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 06:00"
},
{
"rfp_no": "MM/RCH/WORKS/NCB/03/074/075",
"title": "Construction of Devkota Chowk-District Pollice Office-Buspark road",
"procuring_entity": "Manthali Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "BMP/NCB/WORKS/2074-075/6",
"title": "Multipurpose Building with Public Toilet",
"procuring_entity": "Bhimeshwor Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "TNN8/DRONGJ/3373204/074/75-35",
"title": "Bridge Protection Works (Gabion Retaining wall) at Aurahi Bridge on Thakurdwara-Khada Road.",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 07:00"
},
{
"rfp_no": "TNN8/DRONGJ/3373204/074/75-36",
"title": "Bridge Protection work on MRM (Agaiya -kohalpur) section (at Gandheli, &amp; Paruwa Bridge) on MRM (Agaiya -kohalpur) section",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "NCB/64/PROSEC/2074-75",
"title": "Supply,Delivery,Testing and Commissioning of Backhoe Loader",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "2/Trail Bridge SWAP/Kailali/DTO/2074/075",
"title": "Chauribhatta Thapapur Suspension Bridge , Rajipur Kanchhi Bazzar Suspension Bridge, Pathariya Suspension Bridge and Pathariya Tangtutli Truss Bridge and transportation up to road head",
"procuring_entity": "District Coordination Committee Office, kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "12-2074/075",
"title": "Construction of Security Block in Minister Quarter Pulchowk",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 10:00"
},
{
"rfp_no": "TNN8/DRONGJ/3373664/074/75-38",
"title": "Road Upgrading works on Kothiya-Thakurdwara-Amreni Road.",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 07:00"
},
{
"rfp_no": "07--2074/075",
"title": "Construction of Blacked Topped road in Laxmipur Chowk Dekhi Thalaha Kataha -velha Jane Road",
"procuring_entity": "Bishnupur Rural Municipality, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 12:00"
},
{
"rfp_no": "08--2074/075",
"title": "Construction of RCC road in Laxmipur Pra. Ma. toll -( Utar and Dachhin Simana Dekhi from both sides)",
"procuring_entity": "Bishnupur Rural Municipality, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 12:00"
},
{
"rfp_no": "09--2074/075",
"title": "Drain Construction work in Gauripur Gau ko Nahar dekhi Harinagara ko Gate hudai Bhola Mukhiya Najik Pahuna Ghar Hudai Siraha Jane Main Road samma.",
"procuring_entity": "Bishnupur Rural Municipality, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 12:00"
},
{
"rfp_no": "10--2074/075",
"title": "Drain Construction work in Rajpur-1 satnarayan Ghar Dekhi JA.U.Ma VI. nahar uttar Rajpur sima- sati sah smark dachhin adharvut pravi Rajpur &amp; adharvut prabi garahiya purano sadak Hudai Bhola baba main road samma.",
"procuring_entity": "Bishnupur Rural Municipality, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 12:00"
},
{
"rfp_no": "11--2074/075",
"title": "Drain Construction work Barki Pokhari ko Pashim Bariya Dil Dekhi Utar Mul Sadak Sabik Rajpur 1 Satyanarayan Ghar Sama Road.",
"procuring_entity": "Bishnupur Rural Municipality, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 12:00"
},
{
"rfp_no": "JCO 21/ 2074-75",
"title": "Construction of Quarentine builidng including Plant, Animal and Food",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 15:00"
},
{
"rfp_no": "SNRTP-UDA-W-NCB-30-15-PM-074-75*",
"title": "Periodic Maintenance of Murkuchi-Puwarebhanjyang-Bhuttar Rural Road",
"procuring_entity": "District Development Committee, Udayapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "MIP/IDDRAM/NCB-03/074-75",
"title": "Construction of Intake, canal and canal structures, Tamakoshi Irrigation Project, Gelusajujar Manthali Municipality-11",
"procuring_entity": "Irrigation Development Division Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:00"
},
{
"rfp_no": "MIP/IDDRAM/NCB-04/074-75",
"title": "Construction of Intake, canal and canal structures, Lambirebeshi Likhu Khola Irrigation Project, Likhu-4",
"procuring_entity": "Irrigation Development Division Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:00"
},
{
"rfp_no": "NITP/IDDRAM/NCB-01/074-75",
"title": "Construction of Sump well Intake, Rvt, G.I and HDEPE Pipe, Canal and Canal Structures,Sunkoshi Sitkha Lift Irrigation Project Khadadevi-03",
"procuring_entity": "Irrigation Development Division Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:00"
},
{
"rfp_no": "DUDBC/Kailali/works/NCB/08/74/75",
"title": "construction of road at Bhajani New town Kailali",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 18:00"
},
{
"rfp_no": "074/75/129",
"title": "DENTAL ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:00"
},
{
"rfp_no": "074/75/131",
"title": "RADIOLOGY ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:00"
},
{
"rfp_no": "DUDBC/Kailali/works/NCB/09/74/75",
"title": "construction of road at Belauri New town Kanchanpur",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 18:00"
},
{
"rfp_no": "047/75/130",
"title": "PATHOLOGY ITEMS",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-04-2018 13:20"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/16/Beautification/ 074-75",
"title": "Landscaping, Beautification and Other Works at Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 00:00"
},
{
"rfp_no": "11-mun-2074-75/RT",
"title": "Jhimruk River Training work (Tikuri buspark )",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "14-Mun-2074-75/RT",
"title": "Jumri Stream Training works",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "15-Mun-2074-75/RT",
"title": "Jhimruk River Training works (Damti Area)",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-05-2018 10:00"
},
{
"rfp_no": "RSDPAF II- DoR-G/ICB-17",
"title": "procurement of supply and delivery of chipping Spreader",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "RSDPAF II- DoR-G/ICB-18",
"title": "Procurement of supply and Delivery of Asphalt Paver",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "04/NWSCNPJ/2074-075",
"title": "Laying and Jointing of 500mm Diameter and 250mm Diameter Ductile Iron Pipe from Rapti Bridge at Sidaniyaghat to Nepalgunj.",
"procuring_entity": "Nepal Water Supply Corporation, Nepalgunj",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-04-2018 06:00"
},
{
"rfp_no": "DUDBC/Kailali/Works/NCB/06/074/75",
"title": "Construction of clock tower at Tikapur Kailali",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 12:00"
},
{
"rfp_no": "DUDBC/Kailali/works/NCB/07/74/75",
"title": "construction of road and drain at Bhi.Na. Pa. 16 Sarswati ma.vi. &amp; Mahakali tole",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "SNRTP-MAK-W-NCB-14.08-BRI-074-075",
"title": "Construction of Dubu Khola Bridge, (Ch 9+800 along Chuniya-Namtar-Bharta-Khairang Road)",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-04-2018 06:00"
},
{
"rfp_no": "18/PLMC/074-075",
"title": "CONSTRUCTION OF HOSTEL BUILDING AND TRAINING CENTER OF SHUKRARAJ SECONDARY SCHOOL, KASKI",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "MG/W/NCB/GNP-12/074 /075/Drain Construction Work, Gulariya Municipality,Ward No - 7 Chaugurgi",
"title": "Drain Construction Work, Gulariya Municipality,Ward No - 7 Chaugurgi",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "MG/W/NCB/GNP-13/074 /075/Drain Construction Work, Gulariya Municipality,Ward No - 9 Dabba Gau",
"title": "Drain Construction Work, Gulariya Municipality,Ward No - 9 Dabba Gau",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "SNRTP-KAN-W-NCB-10.05-BRI-074-075",
"title": "Maleriya Nala Bridge.",
"procuring_entity": "Office of District Coordination Committee (ODCC) Kanchanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "DROPKR/3371574/074/75- 50 (MYC)",
"title": "Construction of Double lane Motorable Bridge over Phusre Khola at Damsadighat, Kaski District",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 10:00"
},
{
"rfp_no": "GRM/GORKHA/E.Pole/Goods/NCB/074/075-02",
"title": "Procurement and Supply of hot dip Galvanized Steel tubular poles for Ward No 1-8 Of Gandaki Rural Municipality",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 11:00"
},
{
"rfp_no": "GMUN/02/074/75",
"title": "Premix Carpeting Works of Rastriya Chowk to Bhukhale chowk Road (Chainage 0+000 to 0+445)",
"procuring_entity": "Ghodaghodi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "9-DROMNR/074/75-026",
"title": "Construction of RCC Bridge over Tultule Nala Bridge (1X25 m), Krishnapur, Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 12:00"
},
{
"rfp_no": "9-DROMNR/074/75-025",
"title": "Periodic Maintenance of Mahakali Highway (Attariya-Godawari Section) ch 14+550 to Ch 20+175, Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-04-2018 12:00"
},
{
"rfp_no": "GMUN/03/074/75",
"title": "Premix Carpeting Works of Pahalwanpur to South road (Chainage 0+000 to 0+500)",
"procuring_entity": "Ghodaghodi Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "2-074 /75",
"title": "CONSTRUCTION OF WAREHOUSE AND INSPECTION SHED IN BIRGUNJ ICP",
"procuring_entity": "Nepal Intermodal Transport Development Board",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-05-2018 11:55"
},
{
"rfp_no": "06/74/75-25",
"title": "Specific Maintenance of Side Drain",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 07:00"
},
{
"rfp_no": "06/74/75-14 Re",
"title": "Construction of Manthali Sanghutar Ghorakhori Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 07:00"
},
{
"rfp_no": "06/74/75-16 Re",
"title": "Construction of Baghkhor Jhormuna Gaun Keraghari Debitar Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 07:00"
},
{
"rfp_no": "06/74/75-20 Re",
"title": "Construction of Those Falam Khani Approach Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 07:00"
},
{
"rfp_no": "06/74/75-21 Re",
"title": "Construction of Those Falam Khani Approach Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-05-2018 07:00"
},
{
"rfp_no": "DMG/02/Consultancy/074-75A",
"title": "Expression of Interest (EOI)For Consultancy Service: Geophysical Survey of Dhaubadi Iron Prospect,Dhaubadi-Pokhari Area, Nawalparasi District (East), Province No.4, Nepal",
"procuring_entity": "Department of Mines and Geology",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "06-05-2018 17:20"
},
{
"rfp_no": "DMG/02/Consultancy/074-75B",
"title": "Expression of Interest (EOI) For Consultancy Service Geophysical Survey of Dhaubadi Iron Prospect,Pokhari- Ramjikot Area, Nawalparasi District (East), Province No.4, Nepal",
"procuring_entity": "Department of Mines and Geology",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "06-05-2018 18:50"
},
{
"rfp_no": "BAPIDP-HT-01-074/75",
"title": "Construction of River Training Work, Road Work and Miscellaneous Works along Hanumante River",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "6-074/75/NCB",
"title": "CONSTRUCTION OF HEALTH POST BUILDING IN AURHI ,SARLAHI",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "06-074/075/NCB",
"title": "Construction of Health post Building at Laxmipur ,Sukhchaina, Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "06----074/075/NCB",
"title": "Construction of Health post Building at Mahinathpur, Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "06---074/075/NCB",
"title": "Construction of HP at Laxmipur Kodraha ,Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "04/KM/NCB/2074-75",
"title": "Construction of Black Topped Road at Ward no. 4, Kawasoti Municipality",
"procuring_entity": "Kawasoti Muncipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "NCB 01/074/075",
"title": "UPGRADING OF SALIMARANG KHOLA - KRISI CAMPUS GATE ROAD TO BITUMINOUS PREMIX (CARPET) STANDARD",
"procuring_entity": "Sundarbazar Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "TRIP/BUTWAL-02/074/75",
"title": "Road Marking work (Thermoplastic Painting) at Belahiya Butwal Road (0+750 to 1+500, 2+200 to 4+800 &amp; 21+000 to 24+000)",
"procuring_entity": "Trade Route Improvement Project (Belhiya-Butwal Road)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "DRODNG/ 3371574/074/75-029",
"title": "Construction of RCC Bridge (1*25m) over Langikini Khola Charange along Tribeni- Chhayachhetra Road in Salyan",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 15:00"
},
{
"rfp_no": "Notice No.:- DUDBC/Rupandehi/09/074/75(1)",
"title": "Construction of Thulopokhara Health Post Building, Arghakhanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/09/074/75(2)",
"title": "Construction of Asurkot Health Post Building, Arghakhanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/09/074/75(3)",
"title": "Construction of Patauti Health Post Building, Arghakhanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/09/074/75(6)",
"title": "Maintainance work at Butwal Ladies Jaycees for Pradesh No. 5",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-04-2018 23:59"
},
{
"rfp_no": "DUDBC/Rupandehi/09/074/75(4)",
"title": "Construction of Panena Health Post Building, Arghakhanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Rupandehi/09/074/75(5)",
"title": "Construction of Bhagwati Health Post Building, Arghakhanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-04-2018 01:00"
},
{
"rfp_no": "OSSRM-ROL-01-074/75",
"title": "Procurement of CGI Sheets and accessories for office of Sunil Smriti Rural Municipality,Sulichaur Rolpa.",
"procuring_entity": "Sunil Smriti Rural Municipality, Office of Rural Municipal Executive,Sulichaur, Rolpa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-05-2018 00:00"
},
{
"rfp_no": "DROBTL/08-074/075",
"title": "Specific maintenance work at Daunne Land slide zone 40+050 along MRM Butwal-Narayanghat Section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3373564/074-75/030",
"title": "Specific maintenance work at Daunne Land slide zone 40+050 along MRM Butwal - Narayanghat Section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3371654/074-75/031",
"title": "Emergency and Special Road Maintenance of MRM Bardaghat - Chormara Section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3071084/074-75/032",
"title": "Construction of Road structure along Hongshi cement Factory Access Road at Dumkibas (Ch.0+000 to Ch.7+800), Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3071084/074-75/033",
"title": "Construction of Road structure along Hongshi cement Factory Access Road at Dumkibas (Ch. 7+800 to Ch.11+000), Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3071084/074-75/034",
"title": "Construction of Road structure along Hongshi cement Factory Access Road at Dumkibas (Ch. 11+000 to Ch.20+000 ), Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": "DROBTL/3371654/074-75/035",
"title": "Maintinance of Abutment Raft of Turiya Bridge, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-05-2018 10:00"
},
{
"rfp_no": ". NTC/G/ICB-1.1/2018-19",
"title": "Procurement of First Line Drug of Tuberculosis 4 FDC/HRZE (Isoniazid 75mg, Rifampicin 150mg, Pyrazinamide 400mg and Ethambutol 275mg 1,546,735 tablets)",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.2/2018-19",
"title": "Procurement First Line Drug of Tuberculosis3 FDC/HRE (Isoniazid 75mg, Rifampicin 150mg, and Ethambutol 275mg 720,853 tablets)",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.3/2018-19",
"title": "Procurement First Line Drug of Tuberculosis 2 FDC/HR (Rifampicin 150mg and Isoniazid 75mg, 13,477,973 tablets)",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.4/2018-19",
"title": "Procurement Second Line Drug of Tuberculosis,Second Line Drug of Tuberculosis (Amoxicillin 875+Clavulanic Acid 125mg) 137,890 tablet",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.5/2018-19",
"title": "Procurement Second Line Drug of Tuberculosis Second Line Drug of Tuberculosis (Linezolid 600mg) 45,000 tablet",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.6/2018-19",
"title": "Procurement Second Line Drug of Tuberculosis Second Line Drug of Tuberculosis (Ethionamide 250mg) 306,944 tablets",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "NTC/G/ICB-1.7/2018-19",
"title": "Procurement Second Line Drug of Tuberculosis Second Line Drug of Tuberculosis (Moxifloxacin 400mg) 160,000 tablet",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "CRMSO/KTM-03/074-75",
"title": "Procurement of Construction and Supply of Different Items of Mahadevsthan Matatirtha (Chandragiri) Co-financing Water Supply Project",
"procuring_entity": "Regional Monitoring and Supervision Office Kathmandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DOHS/G/NCB-10/CHD/2074/075",
"title": "Procurement of Syringe",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/W/NCB/05/074/075",
"title": "River Training and Road Improvement Works",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 07:00"
},
{
"rfp_no": "BMP/NCB/WORKS/2074-075/7",
"title": "Bhimeshwor Entry Gate",
"procuring_entity": "Bhimeshwor Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "6/2074-075",
"title": "Flag Stone Paving Work,Darbar Gate to Shitalpati Area,Tansne-3 and 4, Palpa",
"procuring_entity": "Tansen Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "DRODMK/3371244/074/75-17",
"title": "Construction of Black-topped Road on Damak Chisapani Road",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/W/NCB/06/074/075",
"title": "Blacktopped Road Maintenance VAT Offuce chowk to Hospital Culvert",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 07:00"
},
{
"rfp_no": "CNP/CHITWAN/WORKS/NCB/ 12-074/75",
"title": "Construction of Building (Commander's Quarter, Kitchen and ACO's Quarter)",
"procuring_entity": "Chitwan National Park",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "DUDBC/ Sindhupalchowk/Works/02/2074/75-NCB",
"title": "Construction of Integrated Infrastructure development in Giranchaur of Melamchi Municipality of sindhupalchowk district",
"procuring_entity": "DUDBC, DIVISION OFFICE SINDHUPALCHOWK",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "CTEVT/TEVT Exp.074/75, Civil-08",
"title": "Construction of Girls Hostel of Ramechhap Polytechnic Institute, Manthali, Ramechhap",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-04-2018 13:00"
},
{
"rfp_no": "HMUN_RM_074/75-12",
"title": "Road Maintenance Works, Hetauda 1 to 19",
"procuring_entity": "Hetauda Sub-Metropolitain City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 12:00"
},
{
"rfp_no": "IFB/NCB/THAHAOFFICEBLDG-19/074/075",
"title": "Construction of second and third floor of office building",
"procuring_entity": "Thaha Municipality Office, Makawanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "CNM/ROAD/NCB/17/074/075",
"title": "Construction of Chhinasangu-Chyana Road Construction Works",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "IFB/NCB/Flexibleandrigidpavement-20/074/075",
"title": "Maintainance of Jaycees Marga Road",
"procuring_entity": "Thaha Municipality Office, Makawanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "09-074-75/074",
"title": "Specific maintenance of Mitrapark Gaurighat Nayabasti Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 23:59"
},
{
"rfp_no": "074/75/127",
"title": "PHYSIOTHERAPY",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 11:00"
},
{
"rfp_no": "074/75/128",
"title": "ORTHO Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 11:00"
},
{
"rfp_no": "09-074-75/075",
"title": "Specific maintenance of Sankhu Lapsiphedi Bhotechaur Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 14:00"
},
{
"rfp_no": "09-074-75/076",
"title": "Improvement of Bu.Na.Pa. 8 Highland Bhangal Krishna Mandir Lokeshwor Mahadev Mandir Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 14:00"
},
{
"rfp_no": "09-074-75/077",
"title": "Improvement of Tilganga Bagmati Corridor Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 14:00"
},
{
"rfp_no": "09-074-75/078",
"title": "Improvement of Ringroad Shoulder (Suekedhara Narayangopal chowk)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 15:00"
},
{
"rfp_no": "DTO/CHT/G/NCB/TB/04/2074-75",
"title": "fabrication and supply of steel parts of 6 SSTB bridges in chitwan district .",
"procuring_entity": "District Technical Office (DTO), Chitwan",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-05-2018 00:00"
},
{
"rfp_no": "6-074/75(3)-Re",
"title": "Road improvement works on Sitapaila-Dharke Road (CH-10+240 - 23+900)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-04-2018 00:00"
},
{
"rfp_no": "01/IT/NCB/CDSC",
"title": "Supply, Delivery, Installation and Commencement of Hardware and Software System in CDS and Clearing Limited (CDSC)",
"procuring_entity": "CDS and Clearing Limited",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "IDDJHAPA/03/074-75",
"title": "Construction of Head works, Canal and Canal Structures of Harchana Tinmukhe Irrigation Sub Project, Birtamod Municipality-8, Jhapa",
"procuring_entity": "Irrigation Development Division, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "ARG/DTO/05/2074-75",
"title": "Construction of Samne Khola Bridge at CH: 31+000 along Sandhikharka-Pakale-Dharapani-Chujathati Road",
"procuring_entity": "District Technical Office (DTO), Arghakhanchi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 13:00"
},
{
"rfp_no": "NCB/P4/DPOGRK/074-75/01",
"title": "Re-Construction of Office/Barrack, Mess, Toilet, Septic Tank, Soak Pit, Water Tank and Retaining Wall at Area Police Office Takukot, GORKHA",
"procuring_entity": "District Police Office Gorkha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-05-2018 05:00"
},
{
"rfp_no": "DRODNG/3371653/074/75-030",
"title": "Recurrent Maintenance Works along MRM (Dhan khola - Lamahi Ch.676+000 to 715+00) Road in Dang District.",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "DRODNG/3371653/074/75-031",
"title": "Recurrent Maintenance Works along MRM (Bhalubang - Lamahi Section Ch.690+000 to 715+00) &amp; Bhalubang-Ganaha Road (0+000 to 8+000) Road in Dang District.",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "DRODNG/3371653/074/75-032",
"title": "Recurrent Maintenance Works along Rapti Rajmarga (Tulsipur -Kapurkot Sector) in Dang &amp; Salyan District. (Chainage 29+000 to Ch.51+000)",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "02-05-2018 15:00"
},
{
"rfp_no": "NCB/GOODS/PACKAGE-I/2074/75",
"title": "Sports Goods Purchases, Tripureshwor, Kathmandu Contract No. 02-074/075 Package I",
"procuring_entity": "National Sports Council",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-05-2018 14:00"
},
{
"rfp_no": "03/Social/BBDMP/074/75",
"title": "Geruwani Solar lift Irrigation SP",
"procuring_entity": "Bheri Babai Diversion Multipurpose Project, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-04-2018 10:00"
},
{
"rfp_no": "04/Social/BBDMP/074/75",
"title": "Hattikhal Chepang Solar Lift ISP, Bheriganga-5, Bansgadi-1",
"procuring_entity": "Bheri Babai Diversion Multipurpose Project, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-04-2018 10:00"
},
{
"rfp_no": "EQRP/PHQ/MUSIC/2074-75/02",
"title": "Finishing Works of Barrack Block at Nepal Police Music School(GF,FF,SF and TF)",
"procuring_entity": "Nepal Police Head Quarter, Kathmandu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 12:00"
},
{
"rfp_no": "PSS4/01/074-075",
"title": "Upgrading of Road Works",
"procuring_entity": "Province Assembly Secretariat No. 4",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 11:00"
},
{
"rfp_no": "24/DSMC/2074/075",
"title": "Construction of Blacktopped Road with Retaining Works and Side Drain (CH 0+000 to CH 0+575) Location: Purano Baalbihani to Khutiya Sadak, Taranagar, Ward No.5",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-04-2018 00:00"
},
{
"rfp_no": "25/DSMC/2074/075",
"title": "Construction of Blacktop Road with Side Drain Works (CH 0+000 to CH (0+505) Location:.Prakash Thapa's House to Ram Bahadur Sunar to Sarita Devi Bohara's House , Ward No. 5, Jyotinagar",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-04-2018 00:00"
},
{
"rfp_no": "DORMEB/3371653/074-75/01",
"title": "PROCUREMENT OF SUPPLY AND DELIVERY OF BACKHOE LOADER",
"procuring_entity": "Mechanical Branch",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "16-04-2018 00:00"
},
{
"rfp_no": "074/75/124",
"title": "GYNE/OBS Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-04-2018 12:30"
},
{
"rfp_no": "074/75/125",
"title": "HYGIENE AND SANITATION",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-04-2018 13:30"
},
{
"rfp_no": "074/75/126",
"title": "OT, General Surgery and ICU Equipments",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-04-2018 14:00"
},
{
"rfp_no": "13-074/75(2)-Re",
"title": "Specific Maintenance Works on Lother-Parsa Road(Chainage-444+000 to 445+000)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-05-2018 11:00"
},
{
"rfp_no": "13-074/75(3)-Re",
"title": "Specific Maintenance Works on MRM, postal highway, Aaptari Devghat Road Pulchok- pokhara Buspark, Yagyapuri- Lanku-Belchowk- Sahidchowk Road, chitwan .",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-05-2018 11:00"
},
{
"rfp_no": "13-074/75(6)-Re",
"title": "Supply of Bitumen Emulsion for departmental recurrent maintenance works",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-05-2018 11:00"
},
{
"rfp_no": "13-074/75(5)-Re",
"title": "Supply of Tools and Accessories for Length Workers of Routine Maintenance Works.",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-05-2018 11:00"
},
{
"rfp_no": "BAPIDP-W19-074/75",
"title": "Hilltop Erosion Control at Mrigasthali Area",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "TRM/NUW/W/NCB/01/074-075",
"title": "Upgrading of Chandani-Newarpani-Simle-Rayalchhap-Dangsing Road",
"procuring_entity": "Tarakeshwor Rural Municipality, Dangsing, Nuwakot",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 06:00"
},
{
"rfp_no": "DC/ROLPA/NCB/WORKS/01-074/75",
"title": "Construction of Rolpa District Court Security Barrack Building, Liwang, Rolpa",
"procuring_entity": "Rolpa District Court",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(4)",
"title": "Specific Maintenance works on Malekhu Dhadingbesi bazar Road",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "IDDPARSA/01/074-75",
"title": "Construction of Headworks, Canal and Related Structures",
"procuring_entity": "Irrigation Development Division, Parsa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/12/074-75",
"title": "Carpeting at ITB First Floor (Departure) at TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 03:00"
},
{
"rfp_no": "03 /074 /75",
"title": "Construction and upgrading of Ring Road at Katahari - Haldi Bari Sector, Biratnagar",
"procuring_entity": "DUDBC, DIVISION OFFICE, MORANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "03/074 /75",
"title": "Construction and upgrading of Ring Road at Kathari-Jhorahat sector, Biratnagar",
"procuring_entity": "DUDBC, DIVISION OFFICE, MORANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "GON/G/NCB/Lalitpur/Mahalaxmi/09/074/75",
"title": "Road Extension work from Changathali Club to Tallo Chautara ward 7",
"procuring_entity": "Mahalaxmi Municipality, Office of Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "TIACAO/CED/11/074-75",
"title": "Flooring Works at International Terminal Building at TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 03:00"
},
{
"rfp_no": "TIACAO/CED/13/074-75",
"title": "Construction of Domestic Cargo Prefab shed and Associated work at DTB in TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 03:00"
},
{
"rfp_no": "GON/G/NCB/Lalitpur/Mahalaxmi/8/074/75",
"title": "Construction of Siddhipur Ward Officer ( Ward 6 )",
"procuring_entity": "Mahalaxmi Municipality, Office of Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "KRM/NCB/05/074-75",
"title": "Construction of Prefab Office Buildings",
"procuring_entity": "Khandadevi Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "NCB/BAHRADASHI/RBRR/03/074-75",
"title": "CONSTRUCTION OF RAJGADH BAZAAR RING ROAD (BLACK TOPPED STANDARD)",
"procuring_entity": "Bahradashi Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 12:45"
},
{
"rfp_no": "NITC/G/NCB-7-2074/75",
"title": "SUPPLY, DELIVERY AND INSTALLATION OF SECURITY APPLIANCES AND NETWORK DEVICES",
"procuring_entity": "National Information Technalogy Center, Kathmandu",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 13:00"
},
{
"rfp_no": "TRM-1-074/075",
"title": "Earthwork in Raralihi-Ghode Mahadev Section (Ch. 4+000Km to 8+000Km)",
"procuring_entity": "Tila Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 17:45"
},
{
"rfp_no": "TRM-2-074/075",
"title": "Earthwork in Raralihi-Manechaur Section(Ch. 3+500Km to 8+250Km)",
"procuring_entity": "Tila Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-04-2018 17:30"
},
{
"rfp_no": "DOHS/G/ICB-41.30/PHCRD/2074-75",
"title": "Procurement of Tab Hydrochlorthiazide 6.25mg",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-04-2018 15:00"
},
{
"rfp_no": "DOHS/G/ICB-41.28/PHCRD/2074-75",
"title": "Procurement of Tab Enalapril 2.5mg and 5mg",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-04-2018 15:00"
},
{
"rfp_no": "DOHS/G/ICB-2/CHD/2074/075",
"title": "Procurement of Iron Folic Acid",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "IDDMorang/MIP/074-075/NCB-02",
"title": "Construction of Headworks, Canal and Canal Structures of Dorlakhna ISP.",
"procuring_entity": "Irrigation Development Division Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DC/Pyuthan/NCB/Works/01-074/075",
"title": "Construction of Pyuthan District Court Security Barrack Building, Khalanga, Pyuthan.",
"procuring_entity": "Pyuthan District Court",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371574/074/75-20",
"title": "Construction of RCC Slab Culvert over Mahadev khola, Thatigaun-2, Tarkeshwor",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DROKTM2/3373564/074/75-21",
"title": "Construction and Improvement of Thankot- Naubise ( Nagdhunga-Pipalamod Section)",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Ramechhap/NCB/Works/2/074/075",
"title": "Construction of Health Post (Gothgaaun)",
"procuring_entity": "DUDBC, DIVISION OFFICE RAMECHHAP",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "04/074/75-17",
"title": "Construction of 2 Webbed RCC slab deck bridge over Jahari Khola, Sahkari Kholagaun , Rukum",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "04/074/75-18",
"title": "Construction of Prestressed bridge over Melainauli-Chharikhola, Chaurjahari Municipality, Rukum",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "04/074/75-19",
"title": "Construction of 2 Webbed RCC slab deck bridge over Dopai Khola Chhiwang, Rukum",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "04/074/75-20",
"title": "Construction of 2 Webbed RCC slab deck bridge over Sibhrutu Khola Bhalakcha, Rukum",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "IDDMorang/074-075/NCB-01",
"title": "Construction of Headworks, Canal and Canal Structures of Khadamjudi ISP, Morang.",
"procuring_entity": "Irrigation Development Division Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DRODKT/3373204/074/075-27",
"title": "Maintenance and Protection of Bridges and Cross Drainage Structures",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Kavre/2074/075/NCB-02 Infrastructure DEvelopment Work at Nala Bazzar Kavre",
"title": "Infrastructure Development Work at Nala Bazzar ,Kavre",
"procuring_entity": "DUDBC, DIVISION OFFICE, KAVRE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 06:00"
},
{
"rfp_no": "01/CF/WSSSDOBardiya/074/75",
"title": "Construction and procurement work of Kusumba Sahalagani Water Supply and Sanitation Project- Madhuvan Municipality, Bardiya",
"procuring_entity": "Water Supply and Sanitation Sub-division Office, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "24/074/75 Lalitpur",
"title": "Construction and Procurement work of Mulpani Shankhadevi Sahalagani Water Supply and Sanitation Project-Lalitpur",
"procuring_entity": "Water Supply and Sanitation Division Office, Lalitpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Kavre/2074/075/NCB-03,Infrastructure development work at Saga Bazzar ,kavre",
"title": "Infrastructure development work at Sanga,Kavre",
"procuring_entity": "DUDBC, DIVISION OFFICE, KAVRE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 06:00"
},
{
"rfp_no": "2/cf/wsssdo Bardiya/74/75",
"title": "Construction and Procurement of Gulariya Sahalagani Water Supply Project, Gulariya Bardiya",
"procuring_entity": "Water Supply and Sanitation Sub-division Office, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "1/074/75/ sahalagani Sankhuwasabha",
"title": "Procurement of Chainpur co-financing water supply and sanitation project -Sankhuwasabha",
"procuring_entity": "Water Supply and Sanitation Sub-Division Office Shankhuwasava",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 04:00"
},
{
"rfp_no": "DUDBC/Kavre/2074/075/NCB-04,Infrastructure development work at Buddha park Nepane,Dapcha,Namobuddha",
"title": "Infrastructure development work at Buddha park Nepane,Dapcha,Namobuddha Municipality",
"procuring_entity": "DUDBC, DIVISION OFFICE, KAVRE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 06:00"
},
{
"rfp_no": "SNRTP-BAN-W-NCB-02.07-BRI-074-075",
"title": "Gandhali Nala Box Bridge Construction work.",
"procuring_entity": "District Development Commirtte (DDC), Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 11:00"
},
{
"rfp_no": "074/75/121",
"title": "Furniture Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 11:00"
},
{
"rfp_no": "074/75-123",
"title": "Medicine Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 13:15"
},
{
"rfp_no": "074/75/122",
"title": "Kitchen Items",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 14:15"
},
{
"rfp_no": "32-LCM/074/075",
"title": "Bharwaliya Gau Dekhi utar pitch bato Dekhi thulo ekla samma kalopatre Garne",
"procuring_entity": "Lumbini Cultural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 10:00"
},
{
"rfp_no": "33-LCM/074/075",
"title": "Ward Karyalaya Dekhi ajma Jane bato Base Nirman",
"procuring_entity": "Lumbini Cultural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 10:00"
},
{
"rfp_no": "NRB-Car-NCB-02/074/75",
"title": "Procurement of Hatchback Cars",
"procuring_entity": "Nepal Rastra Bank",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 06:00"
},
{
"rfp_no": "MG/W/NCB/TBNP-03/074/075",
"title": "Construction of Black Top Road - Bagnaha-Mirchaiya- Neulapur-Thakurdwara Sadak",
"procuring_entity": "Thakurbaba Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 09:00"
},
{
"rfp_no": "MG/W/NCB/TBNP-08/074/075",
"title": "Construction of RCC Box slab culvert - (1.0 X 4.0 X 4.0) Mtr. - Thakur Baba Municipality -06, Nikunja Jane Bato ma.",
"procuring_entity": "Thakurbaba Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 09:00"
},
{
"rfp_no": "MG/W/NCB/TBNP-09/074/075",
"title": "Construction of RCC Box Slab Culvert - (2x3.5x3.5) Mtr.- Gobinpur Road",
"procuring_entity": "Thakurbaba Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 09:00"
},
{
"rfp_no": "MG/W/NCB/TBNP-10/074/075",
"title": "Construction of RCC Box Slab Culvert - ( 2 X 3.5 X 3.5) Mtr. - Sital Chowk, Mirchaiya",
"procuring_entity": "Thakurbaba Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 09:25"
},
{
"rfp_no": "MG/W/NCB/TBNP-11/074/075",
"title": "Construction of RCC Box Slab Culvert - (2 X 5 X 4) Mtr. - Sukhad -Chitkaiya Link Road",
"procuring_entity": "Thakurbaba Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 09:25"
},
{
"rfp_no": "SM/15/2074/75",
"title": "Supply Of Motor Grader",
"procuring_entity": "Sukhipur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "DOLRM/G/NCB-5.02/074/075",
"title": "Procurement of Vehicle-Hatch Back Car-9 units",
"procuring_entity": "Department of Land Reform and Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "DOLRM/G/NCB-5.01/2074/075",
"title": "Procurement of Vehicle-Two Wheel Drive Jeep-1 unit",
"procuring_entity": "Department of Land Reform and Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Rupandehi/07/074/75(2)",
"title": "Construction of Drinking Water and Sanitary Sub Division Office Building, Taulihawa, Kapilvastu",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/07/074/75(3)",
"title": "Construction of Bishnupur Health Post Building, Pathardaiya, Kapilvastu",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/07/074/75(4)",
"title": "Construction of Shivgadi Health Post Building, Shivagadi, Kapilvastu",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/07/074/75(1)",
"title": "Construction of Heavy Equipment Division Office Building, Division Office, Butwal, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/07/074/75(5)",
"title": "Construction of Security Quarter shed for Pradesh Pramukh at Butwal, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 13:00"
},
{
"rfp_no": "001/074-075",
"title": "Mahendra Multiple Campus Building Construction work.",
"procuring_entity": "Mahendra Multiple Campus, Nepalgunj",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-04-2018 17:00"
},
{
"rfp_no": "18/074/075/Butwal",
"title": "Black Top Repairing and Maintenance Work",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "29-04-2018 18:00"
},
{
"rfp_no": "NCB/20/PROSEC/2074-75 (Re-Invitation)",
"title": "Supply,Delivery,Installation and Commissioning of Stationary Lead Acid Batteries in Radar System (Re-Invitation)",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 00:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075-17",
"title": "Road Way excavation, Road way embankment construction, Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 17",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 10:00"
},
{
"rfp_no": "6/074-75",
"title": "Procurement of fabrication for Trikhandi et all bridges",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 21:00"
},
{
"rfp_no": "09/074-75",
"title": "Procurement of Machine made gabion boxes",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "29-04-2018 23:00"
},
{
"rfp_no": "10/074-075",
"title": "Procurement of HDPE pipes for small WS Projects",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "29-04-2018 23:50"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "DOHS/G/SQ-40.1/LMD-2074-75",
"title": "Printing &amp; Supply of LMIS Reports and Stock Book",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "27-04-2018 12:00"
},
{
"rfp_no": "IFB No. NCASC /P-ARVD/01/2074/2075",
"title": "Procurement of ARV drugs Slice 3",
"procuring_entity": "National Center for AIDS and STD Control",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "22-04-2018 23:59"
},
{
"rfp_no": "01/074/75/DUDBC/KASKI",
"title": "Road and Drain Upgrading work (Malunga to PHC), Galyang Municipality, Syangja",
"procuring_entity": "DUDBC, DIVISION OFFICE, KASKI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "01/074/75/DUDBC/KASKI.",
"title": "Construction of Gorkha Smarak Park, Salmedanda, Syangja",
"procuring_entity": "DUDBC, DIVISION OFFICE, KASKI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "MoUD/DLPIU/KTM/NCB WORKS-EBID-2/074/075",
"title": "Construction of New Office Building for Attorney General Office at Ramshapath, Kathmandu",
"procuring_entity": "District Level Project Implementation Unit-(MoUD)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-04-2018 20:00"
},
{
"rfp_no": "Thali Milan Chowk Road/W/NCB/8/2074-075",
"title": "Construction of masonry wall and side drain in Thali Milan chowk to Mulpani road,",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "Tej Binayak Chowk Road /W/NCB/09/ 2074 -075",
"title": "Construction of black top bituminous road from Tej Binayak Chowk to Mahantar,",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "NPPP/NCB/CW/02-074/75",
"title": "construction of library building and other infrastructure",
"procuring_entity": "Nepal Mountain Academy",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "NPPP/NCB/CW/03-074/75",
"title": "construction of toilet",
"procuring_entity": "Nepal Mountain Academy",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "Chautaritar Road /W/NCB/10/ 2074 -075",
"title": "Construction of black top bituminous road from Chautaritar &#65533; Thapa gaun - Suryamandali",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "Shahid Adarsha-Triveni chowk Road /W/NCB/11/ 2074 -075",
"title": "Construction of masonry wall and side drain in Sahid Adarsha Campus - Bhatmase - Triveni Chowk road",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "Birendra Chowk Road /W/NCB/14/ 2074 -075",
"title": "Construction of masonry wall and side drain in Birendra Chowk to ward no 9 office road",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "Thali ground /W/NCB/12/ 2074 -075",
"title": "Development of Thali Ground as per Master Plan",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "16/074-075/WSSDO/Damauli_Tanahu",
"title": "Chaurbote Water Quality Improvement Project , Tanahun",
"procuring_entity": "Water Supply and Sanitation Division, Tanahun",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "09-04-2018 12:00"
},
{
"rfp_no": "Mulpani ground / W/NCB/13/ 2074 -075",
"title": "Development of Mulpani ground as per master plan",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "06/074-75/WSSDO/PALPA",
"title": "Construction of Prabash Co-Financing Water Supply and Sanitation Project",
"procuring_entity": "Water Supply & Sanitation Division Office, Palpa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 18:00"
},
{
"rfp_no": "Danchhi Bhadrabas WSS /W/NCB/15/ 2074 -075",
"title": "Construction of RCC Reservoir (220 cu.m.) - 2 Nos. for Danchhi Bhadrabas Drinking Water Supply Project",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/TS/06/2074-75",
"title": "Purchase of Single Cab Pick-up",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 10:00"
},
{
"rfp_no": "CAAN/NPP/GBAUP-IU/11/Shed/ 074-75",
"title": "Construction of Vehicle Parking Shed and Other Associated Work at Bhairahawa.",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "Supply of Gravel/G/NCB/16/ 2074 -075",
"title": "Supply of gravel and delivery up to 1 to 9 ward of Kageshwori Manohara Municipality",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "16 (1)/074/075",
"title": "Construction of Drain and Road from Diththadhara-Siyalagaun-Satkhamba-Madesiun-Piplakhali-Rajakandh at Dullu Municipality Dailekh",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "6/74-75",
"title": "Construction of Aduwa Khola Bridge",
"procuring_entity": "District Technical Office (DTO), Rautahat",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "05/SSTB/DAR/074/075",
"title": "Procurement of fabricated steel parts",
"procuring_entity": "District Technical Office (DTO), Darchula",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 12:00"
},
{
"rfp_no": "16 (2)/074/075",
"title": "Construction of Road and Drain from Pipira to Pritana ,Birendranagar -12 Surkhet",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 05:00"
},
{
"rfp_no": "074/75/120",
"title": "Delivery of Hardtop Jeep",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-04-2018 15:00"
},
{
"rfp_no": "DOLRM/CS/QCBS-4.01/2074/075",
"title": "Consulting service for image/scanning of Written documents(Likhat), files(Misil) and Land records(Moth shresta) in Land Revenue Office Dillibazar, Kalanki, Chabil (Khanda 'Ka')",
"procuring_entity": "Department of Land Reform and Management",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "23-04-2018 06:00"
},
{
"rfp_no": "DOLRM/CS/QCBS-4.02/2074/075",
"title": "Consulting Service for the Images/Scanning of Written documents(Likhat), Files(Misil)and Land Record (Moth Shrestha) in Land Revenue Offices- Bhaktapur and Lalitpur",
"procuring_entity": "Department of Land Reform and Management",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "23-04-2018 06:00"
},
{
"rfp_no": "NCB/34/PROSEC/2074-75 (re-bid)",
"title": "Tyre and tubes for fire mechanical unit transport and civil maintenance unit (re-invitation)",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-04-2018 00:00"
},
{
"rfp_no": "BPKIHS/074/075/014",
"title": "Intensive Care Ventilator",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 11:00"
},
{
"rfp_no": "NIRTTP/PCO/NITDB/W/ICB-4",
"title": "Construction of Kathmandu ICD/CFS (Part A: Main block)",
"procuring_entity": "Nepal Intermodal Transport Development Board",
"type": "Works  ICB",
"status": "Bid Published",
"published_date": "14-03-2018 05:00"
},
{
"rfp_no": "BPKMCH/NCB/44/074/075",
"title": "Electrical Neurosurgical Drill",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/48/074/075",
"title": "Portable Breast Screening Device",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/49/074/075",
"title": "Immunohistochemistry Related Reagents/Kits",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "15/074-075/WSSDO Tanahun",
"title": "Labdikhola Water Quality Improvement Project , Tanahun",
"procuring_entity": "Water Supply and Sanitation Division, Tanahun",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "09-04-2018 12:00"
},
{
"rfp_no": "BPKMCH/NCB/50/074/075",
"title": "Medical Monitor System",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/51/074/075",
"title": "Laparoscopic Camera Unit",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/52/074/075",
"title": "Lapascopic Hand Instrument",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/54/074/075",
"title": "Biosafety Cabinet(Chemotherapy Preparation Use )",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/55/074/075",
"title": "ICU Ventilator System",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/57/074/075",
"title": "Head,Neck,Pelvic Mask &amp; Accessories Related Item",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/45/074/075",
"title": "Advanced Tissue Management System",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "AEPC/WESC/G/NCB/2074/75-03",
"title": "Design, Supply, Delivery, Installation, Testing and Commissioning of Wind Met Mast System at Chhusang, Mustang District, Nepal",
"procuring_entity": "Alternative Energy Promation Centre",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "01/LRBP/NCB/Sardu/074/075",
"title": "Construction of Sardu Khola Box Bridge",
"procuring_entity": "Local Bridge Section, DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 12:00"
},
{
"rfp_no": "02/LRBP/NCB/LUHAM/074/075",
"title": "Construction of Luham Khola Bridge",
"procuring_entity": "Local Bridge Section, DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 12:00"
},
{
"rfp_no": "BAPIDP-EQ 007/2074-075",
"title": "Supply and Delivery of Bus (26 seater)",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-I",
"title": "Supply, Delivery and Commissioning of Laboratory Equipment",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-II",
"title": "Supply, Delivery and Commissioning of Laboratory Equipment",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-III",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-IV",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-V",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75(02)",
"title": "Road Construction Including Earthwork &amp; Gabion works on Darsantar-Upallodihi-Taruka-Kauchheni-Kaule Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-VI",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75 (01)",
"title": "Road Construction including Earthwork &amp; Gabion works on Raisingh - Harkapur - Deurali - Meghang - Kimtang Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75 (03)",
"title": "Road Construction Including Earthwork, Gabion Works on Koloni-Akkare-Tupche-Sole-Jamune-Chilaune-Kirnebagar-Bumtang-Deurali Road, Nuwakot (Pkg-02)",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-VII",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-VIII",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-IX",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-X",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-XI",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-XII",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "DFTQC/NCB-05/2074-75, Package-XIII",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75 (05)",
"title": "Road Improvement Works of Damki-Phalante Road, Nuwakot (Pkg-02)",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75 (04)",
"title": "Periodic Maintenance works on Phalakhu khola - Dhunche- Shyaphru Road, Rasuwa (Pkg-02)",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "Road/W9/2074/75",
"title": "Blacktop Road Construction of Different Roads of Ward no. 5,6,7",
"procuring_entity": "Lamahi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 19:00"
},
{
"rfp_no": "MG/G/SQ/GNP-03/074/075/Procurement of Supply & Delivery of TractorWith Trailer",
"title": "Procurement of Supply &amp; Delivery of TractorWith Trailer",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "DOHS/G/SQ-64/LMD/2074-75",
"title": "Procurement of Pallet",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "25-04-2018 00:00"
},
{
"rfp_no": "TBSWAp/DTO-Jajarkot/NCB/G/02/074-75.",
"title": "PROCUREMENT OF FABRICATION AND SUPPLY OF STEEL PARTS",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "30-04-2018 00:00"
},
{
"rfp_no": "DoLIDAR/RCIP/NCB-04/2074/075",
"title": "Upgrading and Performance Based Maintenance of 1. Mangalbare - Pungfung -Ektappa Sikari Bhanjyang-Phakphok- Ra.ma.bi. Khambang Chowk -Thingepur -Aamchok -Jungetar -Phuyatappa-Rabi road (Suru bindu khanda) [Road_1] and 2.Nepaltar-Shantidada-Gagrebhangyang-Mangalbare-Dhuseni -Gajurmukhi-Ebhang-Chaturemoad Aadipur-Larumwa-Gharti Dobhan- Chapeti-Beldagi Damak Road (Ebhang - Chaturemoad Sector) [Road_2] at Ilam District.",
"procuring_entity": "Rural Connectivity Improvement Project (RCIP), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 06:00"
},
{
"rfp_no": "DoLIDAR/RCIP/NCB -04/2074/075",
"title": "Upgrading and Performance Based Maintenance of 1. Khorshane - Kerawari -Singhadevi Road [Road_1] and 2. Laxmimarga-Dangihat-Banaul-Babiyabirta-Amahi Road [Road_2] at Morang district.",
"procuring_entity": "Rural Connectivity Improvement Project (RCIP), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 06:00"
},
{
"rfp_no": "DoLIDAR/ RCIP/NCB-04/2074/075",
"title": "Upgrading and Performance Based Maintenance of 1. Dudhauli-Lakhima-Ratmata Kartha - Thakur Dama-Arunthakur[Road_1] and 2. Tallo Ranibas-Harshahi-TadiDhanshari [Road_2] at Sindhuli district 3. Bansbari- Bageswori Purano Health Post to VDC Building [Road_3] at Bhaktapur district and 4. Badbhanjyang-Sanomasino-Thulomasino- Satghumti Road [Road_4] at Kathmandu district.",
"procuring_entity": "Rural Connectivity Improvement Project (RCIP), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 06:00"
},
{
"rfp_no": "DoLIDAR/RCIP/NCB-04 /2074/075",
"title": "Upgrading and Performance Based Maintenance of 1. Phisling - Tolang - Baspur - Oralang - Mayatar-Terse- Uprandangadi-Shaktikhor Bazar Road [Road_1] at Chitwan district.",
"procuring_entity": "Rural Connectivity Improvement Project (RCIP), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 06:00"
},
{
"rfp_no": "02/074-75 WSSDO Kavrepalanchowk",
"title": "Construction of Timal Brihat Arid Zone Water Supply and Sanitation Project/ Kaverepalanchowk",
"procuring_entity": "Water Supply and Snaitation Division Office, Kavrepalanchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "12-074/75(1)",
"title": "Concrete (Rigid) Pavement Construction Work on Chepang Marga (Thori-Bhandara - Lothar- Malekhu) Road,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "NCB-12-16/074/75 : Contract ID : CTP-12/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Mahadevsthan and Gagan Khola Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "DWIDM/NCB/SSE/01/2074-75",
"title": "Procurement of survey goods",
"procuring_entity": "Department of Water Induced Disaster Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 07:00"
},
{
"rfp_no": "NCB-12-16/074/75 : Contract ID : CTP-13/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Thulabisauna Jogidhara and Kaulegauda Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "DUDBC/BTRTC/Works/NCB/E-BID/01/074/75",
"title": "Physical Infrastructure Construction Works in Shahid Smriti Park, Hetauda, Makwanpur",
"procuring_entity": "BUILDING TECHNOLOGY RESEARCH & TRAINING CENTER",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 10:00"
},
{
"rfp_no": "NCB-12-16/074/75 : Contract ID : CTP-14/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Narayansthan Mudikuwa, Modibeni Dibyadham and Yamdi Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "NCB-12-16/074/75 : Contract ID : CTP-15/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Saribang and Girubari Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "NCB-12-16/074/75 : Contract ID : CTP-16/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Pelma Tatopani Trail Bridge Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 15:00"
},
{
"rfp_no": "BM/NCB/2074/75-22",
"title": "Construction Of Ward Office Building of Ward No. 1",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "NCB /7/074/075",
"title": "Construction of East-west highway to Healthpost (Hattiya) Road Kalayanpur, Saptari",
"procuring_entity": "Khadak Municipality, Saptari",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BM/NCB/2074/75-23",
"title": "Construction Of Ward Office Building of Ward No. 6",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "DRM ROADS/C/NCB/02/074-075",
"title": "Construction Of Madyaharsahi Boarder_yadavtol_miya Tol_Manaraj ghar Road",
"procuring_entity": "Dewangunj Rural Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 12:00"
},
{
"rfp_no": "SNRTP-PAL-W-NCB-17-05-BRI-074-75",
"title": "Construction of tinahu khola (Amlihan)Bridge",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BM/NCB/2074/75-24",
"title": "Construction of ward Office Building of ward No. 9",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "DRM ROADS/C/NCB/1/074-075",
"title": "Construction of Dewangunj Health post_Guski Road",
"procuring_entity": "Dewangunj Rural Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-04-2018 12:00"
},
{
"rfp_no": "MG/W/NCB/GNP-11/074 /075",
"title": "MG/W/NCB/GNP-11/074 /075",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 10:00"
},
{
"rfp_no": "Construction of Rural Municipality office Building Contract Identification No: 13/074-75",
"title": "Construction of Rural Municipality office Building Contract Identification No: 13/074-75",
"procuring_entity": "Barju Rural Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-04-2018 19:00"
},
{
"rfp_no": "METRO/SBMCL/ W /NCB /01-074/75",
"title": "construction of Office Cum Multi Purpose Hall of Shree Bakhan Sahakari Multipurpose Cooperative Ltd.",
"procuring_entity": "Bakhan Multipupose Co-operative",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "24-04-2018 00:00"
},
{
"rfp_no": "RBN/08/2074/075",
"title": "Collection of Road Users' Fee on the basis of competitive bidding at Hetauda-Narayanghat Road Section of Mahendra Highway (Chainage 396+000 km to 473+000 km)",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 17:00"
},
{
"rfp_no": "RBN/08/2074/2075",
"title": "Collection of Road Users' Fee on the basis of competitive bidding at Bhairahawa-Bhumahi Road (Chainage 000+000 km to 029+150 km)",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-05-2018 17:00"
},
{
"rfp_no": "074/75/137",
"title": "Bed Sheet",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 13:00"
},
{
"rfp_no": "074/75/138",
"title": "PAL AND SAYAR",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-04-2018 12:30"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-DHADING - 10.",
"title": "Construction of 10 School Building Complexes in Dhading District (ESRP/MOE/CLPIU/074/75-DHADING - 10)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-NUWAKOT - 14.",
"title": "Construction of 11 School Building Complexes in Nuwakot District (ESRP/MOE/CLPIU/074/75-NUWAKOT - 14)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-GORKHA - 15.",
"title": "Construction of 12 School Building Complexes in Gorkha District (ESRP/MOE/CLPIU/074/75-GORKHA - 15)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-MAKWANPUR - 08.",
"title": "Construction of 12 School Building Complexes in Makwanpur District (ESRP/MOE/CLPIU/074/75-MAKWANPUR - 08)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "01/CIAA Pokhara/ NCB/ 074-75",
"title": "Construction of Office building of Commission for the Investigation of Abuse of Authority (CIAA) office, Pokhara",
"procuring_entity": "DUDBC, DIVISION OFFICE, KASKI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 13:30"
},
{
"rfp_no": "05-74-075",
"title": "Dhading Besi-Khalte Road Maintenance Works",
"procuring_entity": "Neelakantha Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "11-2074/075",
"title": "Construction of Nepal Administrative Staff College,Jawalakhel,Lalitpur",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 10:00"
},
{
"rfp_no": "ConMB/01/2074/75",
"title": "Construction of Municipal Office Building",
"procuring_entity": "Panauti Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 10:00"
},
{
"rfp_no": "03/NWSCNPJ/2074-075",
"title": "Construction of Intake or Sump Well at the bank of Rapti River near Sidaniyaghat Bridge.",
"procuring_entity": "Nepal Water Supply Corporation, Nepalgunj",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 07:00"
},
{
"rfp_no": "CAAN-CNAD-NCB-04-074-75",
"title": "The Supply,Delivery, Installation and Testing of CCTV Surveillance at Different Domestic Airports of Nepal",
"procuring_entity": "Communication And Navigation Aid Department, Civil Aviation Authority of Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "02-KCBJKRP/337320-4/074/75-04",
"title": "Construction of Bridges ( Markindhunga Khola Bridge (Pre-stressed 3 x 40), Chussang Khola Bridge (Pre-stressed 3 x 30) Along Kaligandaki Corridor Beni Jomsom Road, Mustang",
"procuring_entity": "kaligandaki Corridor (Beni-Jomsom-Korola ) Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 06:00"
},
{
"rfp_no": "NCB/58/PROSEC/2074-75",
"title": "Supply and delivery of spare parts for Rosenbauer Fire Vehicles",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 00:00"
},
{
"rfp_no": "14/074-075",
"title": "Construction of Road and Drain from Kunti to Chaukhi Dhunga Chowk at Birendranagar Municipality-10 Surkhet",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 05:00"
},
{
"rfp_no": "03/DTO-KAPIL/2074-075",
"title": "Procurement of Fabricated Steel Parts for Sonwa Gadh, Kumal Ghat, Bhitariya Ghat , Rangain Dhamauli and Tikkar Ram Dattewal Suspension Bridges and transportation up to Project Sites. Contract No: 02/GOODS/SSTB/DTO-KAPIL/2074-075",
"procuring_entity": "District Co-ordination Committee Office Kapilvastu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 06:00"
},
{
"rfp_no": "02-KCBJKRP/337320-4/074/75-06",
"title": "Construction of Charang Khola Bridge , Mustang (Pre-stressed 2 x 40) Along Jomsom korala Road, Mustang",
"procuring_entity": "kaligandaki Corridor (Beni-Jomsom-Korola ) Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 06:00"
},
{
"rfp_no": "15/074-075",
"title": "Construction of Road and Drain at Core City area of Birendranagar Municipality Surkhet (Airport-Kalunchowk-Ganesh Chowk Road Improvement Work)",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 05:00"
},
{
"rfp_no": "ConRBP/02/2074/075",
"title": "Maintenance of Samudayik chowk to Sankhel Road",
"procuring_entity": "Panauti Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 10:00"
},
{
"rfp_no": "DTO/W/NCB/03/074-075",
"title": "Periodic Maintenance of CHAULIKA CHOWK (RRM)- MAHENDRANAGAR - HIRMINIYA - HOLIYA NAYABASTI (BORDER) ROAD, from CH 0+000 Km to CH 5+600 Km",
"procuring_entity": "District Development Commirtte (DDC), Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 15:00"
},
{
"rfp_no": "DTO/W/NCB/04/074-075",
"title": "Periodic Maintenance of CHANDANICHOWK (MRM)-TITIHIRIYA-SIMALGHARI(SONPUR)-UDHARAPUR-GAUGHAT ROAD, from CH 0+000 Km to CH 11+500 Km",
"procuring_entity": "District Development Commirtte (DDC), Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 16:00"
},
{
"rfp_no": "NBL/MSD/Goods/006",
"title": "Procurement of 40 units of Router for the branches",
"procuring_entity": "Nepal Bank Limited",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "08-04-2018 17:00"
},
{
"rfp_no": "SNRTP-SAR-W-NCB-25-09-BRI-074/75",
"title": "construction of Motorable Bridge at Gadauli khola",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sarlahi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-04-2018 23:59"
},
{
"rfp_no": "03/JANAKI/NCB/Road/074/075",
"title": "Katari babakutti hudai Suresh ko mill hudai dobato Jodne Road PCC and side drain construction work.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "04/JANAKI/NCB/Road/074/075",
"title": "Brick Soling work,Wad-6 Ditthapur Janaki.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "2/074/75/mechi",
"title": "Fire brigade and Municipality police block partition work",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "05/JANAKI/NCB/Road/074/075",
"title": "Gunthe Dhobi ko Ghar dekhi Surkhet Road samma Road PCC and side drain construction work.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "06/JANAKI/NCB/Road/074/075",
"title": "Jagatram Ahir ko ghar Dekhi Madarasha hudai Keshav Vat ko ghar samma Road PCC and side drain construction",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "07/JANAKI/NCB/Road/074/075",
"title": "Nahar Chowk Dekhi Kapasi Hudai Amritpur Jane bato samma Road PCC and side drain construction work.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-04-2018 00:00"
},
{
"rfp_no": "74/75-132",
"title": "Bibhinna Shikshyan Sansthaka Saman",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-04-2018 13:30"
},
{
"rfp_no": "47/2074/075",
"title": "Ambulatory Apnea Screening Device",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "imo/ilam/ncb/works/06/2074/75",
"title": "City Mart Building Construction Work",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 09:00"
},
{
"rfp_no": "IDDGulmi/01/074-75",
"title": "Procurement of Construction of Intake, Canal and Canal Structures of Bandip Aanp Chour ISP, Rupakot, Gulmi",
"procuring_entity": "Irrigation Development Division, Gulmi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 07:00"
},
{
"rfp_no": "NIRTTP/PCO/DOC/G/NCB-63",
"title": "SUPPLY, DELIVERY, INSTALLATION AND COMMISSION OF GCMS EQUIPMENT &amp; ACCESORIOS For Department of Customs",
"procuring_entity": "Department of Customs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 17:00"
},
{
"rfp_no": "NIRTTP/PCO/DOC/G/NCB-32",
"title": "SUPPLY, DELIVERY, INSTALLATION AND COMMISSION OF WDXRF EQUIPMENT &amp; ACCESORIOS For Department of Customs",
"procuring_entity": "Department of Customs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 17:00"
},
{
"rfp_no": "SNRTP-SIR-W-NCB-26.09-BRI-074-75",
"title": "Construction Of Mainawati Khola Bridge on Siraha-Sukhipur Road",
"procuring_entity": "District Technical Office (DTO), Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 10:00"
},
{
"rfp_no": "DOA-92/074/075",
"title": "Reconstruction work of Ratannath temple,Akhanda Bhandar,Bhajan Hall and two small Temple,Ghorahi,Dang",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "CNM/ROAD/NCB/11/074/75",
"title": "Construction of New Bridge-Khalla Road upgrading",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "CNM/ROAD/NCB/12/074/75",
"title": "Construction of Airport-Dansangu Road Upgrading",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "CNM/ROAD/NCB/13/074/75",
"title": "Construction of Bazar-KTS Road upgrading",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "CNM/ROAD/NCB/14/074/75",
"title": "Construction of Talium Road upgrading",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "CNM/ROAD/NCB/15/074/75",
"title": "Construction of Land Fill site road upgrading",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "18/RM/NCB/WORKS/074/75",
"title": "Construction of RCC Bridge at Rataiya Nala, Puraina",
"procuring_entity": "Rajapur Municipality Office, Rajapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 13:00"
},
{
"rfp_no": "TNN8/DRONGJ/3371653/074/75-30(Re)",
"title": "Recurrent Maintenance Work (Road side Protection &amp; Drain Works) on Mahendra Rajmarga (Shivakhola - Kohalpur Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "TNN8/DRONGJ/3371653/074/75-31(Re)",
"title": "Specific Maintenance Work (Road side Protection &amp; Drain Works) on Mahendra Rajmarga (Shivakhola - Kohalpur Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "TNN8/DRONGJ/3371653/074/75-33(Re)",
"title": "Specific Maintenance Work (Side Drain Works) on Mahendra Rajmarga ( Kohalpur- Karnali Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "TNN8/DRONGJ/3371653/074/75-34(Re)",
"title": "Recurrent Maintenance Work (Maintenance of Black Top Road) on Nepalgunj-Gulariya Road",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "48/2074/075",
"title": "Procurement of Defibrillator",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "KRMORME",
"title": "Supply of 20 Ton Catagory Excavator with Breaker - 1 unit",
"procuring_entity": "Kaike Rural Municipality, Shahartara, Dolpa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "MGO/074/75/50",
"title": "Supply of Truck Utility Cargo (6 ton to 10 ton), Qty-23 Units",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "TNN8/DRONGJ/3371653/074/75-37",
"title": "Traffic Safety Works (Thermoplastic, Enamel Painting, Road Furniture Writing Works) on Ratna Rajmarga (Hattisar-Harre Section) &amp; MRM (Shivakhola-Karnali Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "22-04-2018 08:00"
},
{
"rfp_no": "Construction of Gravel Road (ward:-04) Bechepur",
"title": "Construction of Gravel Road (ward:-04) Bechepur",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "22-04-2018 00:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-NUWAKOT - 13",
"title": "Construction of 5 school Building Complex in Nuwakot District (ESRP/MOE/CLPIU/074/75-NUWAKOT - 13)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 11:00"
},
{
"rfp_no": "BPKIHS/075/075/020",
"title": "Operation and maintenance contract of the central air conditioning plant",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 11:00"
},
{
"rfp_no": "08-WSSDORUKUM/074/75",
"title": "Construction of Bijayshwori Chaurjahari (Arid Zone) Water Supply and Sanitation Project, Chaurjahari Municipality 1,2,3, Rukum West",
"procuring_entity": "Water Supply and Sanitation Division Office, Rukum",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "03/074-75/WSSDO/Kavrepalanchowk",
"title": "Construction of Chaurikhola Dhokadanda Pumping Arid Zone Water Supplya and Sanitation Project/ Kavrepalanchowk",
"procuring_entity": "Water Supply and Snaitation Division Office, Kavrepalanchowk",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "DOT-02/074/75",
"title": "Project: Manaslu Area Reconstruction Project, Gorkha District\tSite: Rupinala Trail (Section-Thanderi Dharchee Danda -Nampe Bhanjyang 10 Km)",
"procuring_entity": "Department of Tourism",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "DOT02/074/75",
"title": "Project: Khumbu Area Reconstruction Project, Solukhumbu District\tSite : Surkhe-Tok Tok- Jorsale(11 Km)",
"procuring_entity": "Department of Tourism",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "DOT--02/074/75",
"title": "Annapurna Chhetra Reconstruction Project\tSite : Simal Chaur - Khudi-Jagat-Chame-Lower Pisang",
"procuring_entity": "Department of Tourism",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 08:00"
},
{
"rfp_no": "DOT---02/074/75",
"title": "Project:- Mude- Saillung trekking, Dolakha. Site : Dolakha.",
"procuring_entity": "Department of Tourism",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 08:00"
},
{
"rfp_no": "BM/NCB/2074/75-18",
"title": "Box Culvert at Sinha Bhawani Khola",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "46/074/075",
"title": "Procurement of Stapes Drill System",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "NCB/16/2074/075",
"title": "Construction of blacktop Road,Prahari Karyalaya Dekhi south,Lalbandi-16",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "MRMUN /02/074-75",
"title": "Construction of Mayadevi Municipalty Ward Office (Phase I)",
"procuring_entity": "Mayadevi Rural Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 10:00"
},
{
"rfp_no": "JCO /13/ 2074/075",
"title": "Construction of Vehicle Dumping",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 11:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/23/2074/75",
"title": "Blanket &amp; Pillow required for NAC In-flight Service for Fiscal Year 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 10:00"
},
{
"rfp_no": "14-074/75 WSSDO-Dhading",
"title": "Construction &amp; Supply of different items for Khanikhola Cofinancing Water Supply and Sanitation Project- Dhading",
"procuring_entity": "Water Supply and sanitation Division Office, Dhading",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "2 074/075",
"title": "Supplying and Delivery of 500 Watt FM transmitter system at Mid western University Surkhet",
"procuring_entity": "Mid-Western University",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 10:00"
},
{
"rfp_no": "TTDC/Dang/NCB/Works/03-074/75",
"title": "Construction of Road Drain at Doghare ( ka and Ga Line)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "TTDC/Dang/NCB/Works/04-074/75",
"title": "Construction of Drain at Doghare-Tulsipur ( Gha and Na line)",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "TTDC/Dang/NCB/Works/2-074/75",
"title": "Construction of drain and RCC Cover slab at Tulsipur Road-Tulsipur-Dang",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "10/JANAKI/NCB/Road/074/075",
"title": "Bridge Maintenance work at Amritpur Road.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "11/JANAKI/NCB/Road/074/075",
"title": "Pond retaining and road PCC work near to Bakaspur Village, Janaki-5",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "NPWF/CHITWAN/074-75",
"title": "Construction of Fuel Station (First Phase) at,JPOC, Bharatpur,Chitwan",
"procuring_entity": "Police Welfare Fund",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "12/JANAKI/NCB/Road/074/075",
"title": "Nahar chowk to purba ramgaun road Gravelling project.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "45/2074/075",
"title": "Procurement of Non Invasive Ventillator",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/08/074/075",
"title": "Culvert Extension and Maintenance",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 07:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/09/074/075",
"title": "Causeway Construction for Protection from Wild animal.",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 07:00"
},
{
"rfp_no": "13/JANAKI/NCB/Road/074/075",
"title": "Bhatanpur Gaudekhi Jamunihawa hudai Highway samma road Gravelling project.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "PDRF-04/074/075",
"title": "Reconstruction work of main compound wall of Narayanhiti Palace Museum",
"procuring_entity": "Narayenhiti Place Museum",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-04-2018 12:10"
},
{
"rfp_no": "14/JANAKI/NCB/Road/074/075",
"title": "Main road dekhi Nagarmal kurmi ko khet hudai Gaupalika samma Road Gravel.",
"procuring_entity": "Janaki Rural Municipality, Banke",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 00:00"
},
{
"rfp_no": "6/2074/75",
"title": "Main entry gate works at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-04-2018 14:00"
},
{
"rfp_no": "7/2074/75",
"title": "Changing room and water body at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-04-2018 17:00"
},
{
"rfp_no": "8/2074/75",
"title": "Typical Nepali house, Kiosks at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-04-2018 18:00"
},
{
"rfp_no": "9/2074/2075",
"title": "Ticket house and store rooms works at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-04-2018 19:30"
},
{
"rfp_no": "10/2074/2075",
"title": "Platform work(ch.024-082 m) at Jwagal main entry gate, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-04-2018 19:30"
},
{
"rfp_no": "DTO/ KTM/ Goods/ NCB-02/074-075",
"title": "Fabrication of steel Parts and transportation up to road heads of a)Okhareni Bhangal Steel Truss Bridge Sundarijal b)Sundarimai Steel Truss Bridge Sundarijal c) Bagarkhola Steel Truss Bridge Lapsiphedi",
"procuring_entity": "District Technical Office (DTO), Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-04-2018 20:00"
},
{
"rfp_no": "03-074/75/WSSDO Malangwa",
"title": "Different work of Hariwon Co-financing water supply and sanitation project.",
"procuring_entity": "Water Supply and Sanitation Division Office, Sarlahi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 09:00"
},
{
"rfp_no": "SIP/Works/01-074/75",
"title": "Construction of Revetment and Spur at Muguwa Khola in Hariharpur",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/02-074/75",
"title": "River training work at Harakundi at Chainage 8+400 of Western Main Canal.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/03-074/75",
"title": "Construction of Embankment and Protection Works at Jharana Khola in Tikulipur.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/04-074/75",
"title": "Construction of Protection Works at Dunduwa Khola in Sidhaniya.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "KFVMDB/NCB/Works/03/074-075",
"title": "Construction of RCC Road and Guard Post near Ice Plant",
"procuring_entity": "Kalimati Fruits Vegetable & Market Development Board",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "CTEVT/TEVT Exp./074/75-Civil-06",
"title": "Construction of Girls Hostel Block of Ratnakumar Bantawa Polytechnic Institute, Bharatpur, Chitwan, Sankhejung, Ilam",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 14:00"
},
{
"rfp_no": "17/PLMC/074-075",
"title": "Procurement of IT Equipments",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "11-074/75(1)",
"title": "Construction of RCC Slab Culvert on Chepang Marga Near Pyari Dhap , Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "03/074/75-14",
"title": "Roadway Excavation, Construction of Retaining Structures etc. at Chheda Thalaha Majhkot Jumla Sadak, Jajarkot",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "03/074/75-15",
"title": "Roadway Excavation, Construction of Retaining Structures etc. at Khalanga Panchkatiya Barakoti Jumla Road, Jajarkot",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "03/074/75-16",
"title": "Roadway Excavation, Construction of Retaining Structures etc. at Devesthal Kainikada Chaurjahari Dolpa Road, Rukum",
"procuring_entity": "404 Division Road Office Chaurjahari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "Newtown/Dumre-Bhansar/Works/ NCB/074/75-03",
"title": "Construction of Green &amp; Recreational Park at Bhanu Municipality-1.",
"procuring_entity": "NEW TOWN PROJECT OFFICE DUMRE - BHANSAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 22:00"
},
{
"rfp_no": "Newtown/Dumre-Bhansar/Works/ NCB/074/75-04",
"title": "Construction of Material Testing Laboratory of New Town",
"procuring_entity": "NEW TOWN PROJECT OFFICE DUMRE - BHANSAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 22:00"
},
{
"rfp_no": "SIP/Works/05-074/75",
"title": "Construction of Protection Works at Boksini Khola near Sikta Barrage and Causeway at Sukhar Khola",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/06-074/75",
"title": "Command Area Protection Works at Paruwa Khola U/S to Existing Irrigation Headworks L/S Bank.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "PRM/Ilam/Goods/NCB/02/074-075",
"title": "Procurement &amp; Supply of Crawler Mounted Hydraulic Excavator (As Per Approved Technical Specification)",
"procuring_entity": "Phakphokthmun Rural Municipality, Ilam",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 10:00"
},
{
"rfp_no": "Kambze/NCB/Works-1-074/75",
"title": "Construction of office and quarter building",
"procuring_entity": "Kamalbazar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "Kambze/NCB/Works-2-074/75",
"title": "Upgrading of rcc road kamalbazar municipality",
"procuring_entity": "Kamalbazar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "1/NCBGOODS/RATNANAGAR/074-75",
"title": "Supply and delivery of motor grader",
"procuring_entity": "Ratnanagar Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "URG/NCB/MAN-06/074-75",
"title": "Upgradding of Hadikhola Road (Lamitar-Chakari Road Ch 0+000 to 17+637)",
"procuring_entity": "Manahari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "PRM/Ilam/Goods/NCB/01/074-075",
"title": "Procurement and supply of Electric Poles, Wires, Transformer and other accessories at different wards.",
"procuring_entity": "Phakphokthmun Rural Municipality, Ilam",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 10:00"
},
{
"rfp_no": "14/074/75/Butwal SubMetropolitan City",
"title": "Construction of Flag Tower &amp; Statue Post",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 10:00"
},
{
"rfp_no": "DUDBC/Chitwan/Work/NCB-01/2074/075",
"title": "Muktaraj Chowk- ward no. 25, Pullar Chowk-Ganganagar, Parijat-Ujjalnagar, Mahendra chowk- Telauli Road (Prachanda Marga),Kailash Chowk-Chanauli Bazar and Gondarng-22no ward Road Constucction and Drain Work.",
"procuring_entity": "DUDBC, DIVISION OFFICE, CHITWAN",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 13:00"
},
{
"rfp_no": "UGR/NCB/MAN-07/074-75",
"title": "Upgrading of Dardara -Basanta - Dillipur Road (Ch 0+000 to 4+174)",
"procuring_entity": "Manahari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "NCB/ PHQ/REG/2074-075/ 04",
"title": "Construction of West Gate,Reception Block,Drainage works And landscape in front of six story building",
"procuring_entity": "Nepal Police Head Quarter, Kathmandu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 13:15"
},
{
"rfp_no": "PMUN/GORKHA/05/2 074/75",
"title": "Upgrading of Radhakrishna &#65533; Bahra Pirke Road (Phase II)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PMUN/GORKHA/06/2 074/75",
"title": "Construction of Ward no. 9 Office Building (Phase I)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 15:00"
},
{
"rfp_no": "BM/ NCB/B/03/074-075",
"title": "Beni Nagarpalikako Sarsaphai Kendra Nirman",
"procuring_entity": "Beni Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 10:26"
},
{
"rfp_no": "SNRTP-GOR-W-NCB-35-5-BRI-074-75",
"title": "CONSTRUCTION OF LUDI KHOLA BRIDGE (CH. 3+000 LAXMIBAZAR-TINMANE-JUMLICHAUTARA-RAINAS-BUTAR ROAD)",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 13:15"
},
{
"rfp_no": "4-074/75 Works",
"title": "Ugrading/Maintenance of Existing PCC Road at Ward No. 6, From House of Satis Mandal to Md. Kaiyum Khan and Rahimpath",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "2-074/75 Works",
"title": "Maintenance/Resurfacing of PCC Road at Ward No. 2, From Udhyog Banijaya Sangh to house of Bhola Thakur",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "5-074/75 Works",
"title": "Maintenance of PCC Road at Ward No. 8, From West of Ward Office to House of Laxmi Bhadari and Ramchandra Yadav",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "6-074/75 Works",
"title": "PCC Road and Drain Maintenance Work at Janakpur- 10, From House of Dinanath Mishra To Upendra Thakur",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "8-074/75 Works",
"title": "Maintenance of PCC Road at Janakpur- 15, From House of Ramchandra Sah Teli to Hemchandra Jha",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-04-2018 10:00"
},
{
"rfp_no": "01/2074/75/mechi",
"title": "Office building Painting work",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "19-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/07-074/75",
"title": "Command Area Protection Works at Jhijhari Khola U/S to East-West Highway.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/01-074/75",
"title": "Construction of Revetment and Spur at Muguwa Khola in Hariharpur",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/01-074/75",
"title": "Construction of Revetment and Spur at Muguwa Khola in Hariharpur",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "SIP/Works/02-074/75",
"title": "River training work at Harakundi at Chainage 8+400 of Western Main Canal.",
"procuring_entity": "Sikta Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "IFBGrSD207475T6FC6",
"title": "Procurement of Self Propelled Aircraft Passenger Steps",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "CAAN/AED/SIM/Apron/074-75/21",
"title": "Construction of Apron, Taxiway and Drainage work at Simikot Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "PM/WORKS/NCB/074/075/08",
"title": "Construction of Army Camp-Chainsingh Marga Road",
"procuring_entity": "Phidim Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 05:00"
},
{
"rfp_no": "PM/WORKS/NCB/074/075/09",
"title": "Construction of Campus Mode-Gadi Mandir-Welfare Road",
"procuring_entity": "Phidim Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 05:00"
},
{
"rfp_no": "DUDBC/Kavre/2074/075/NCB-01",
"title": "Construction of Urban Road Panchkhal Municipality, Kavre",
"procuring_entity": "DUDBC, DIVISION OFFICE, KAVRE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-04-2018 06:00"
},
{
"rfp_no": "IDDJHAPA/02/074-75",
"title": "Construction of Headworks, Canal and Canal Structures of Tallo Ramchandre Irrigation Sub Project, Gaurigunj Rural Muncipality, Jhapa",
"procuring_entity": "Irrigation Development Division, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "NCB/JRM/W/05/074/075",
"title": "Upgrading of Roads (Premix Carpeting of Chilim Chauraha to Rampur Road)",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-04-2018 00:00"
},
{
"rfp_no": "NCB/JRM/W/06/074/075",
"title": "Upgrading of Roads (Premix Carpeting of Bhagatpur to Layakpr Road)",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-04-2018 00:00"
},
{
"rfp_no": "Basbariya/Works NCB-01/2074/75",
"title": "Construction of P.C.CRoad ward-1,Manpur Bazar Ko Pachim Ram Sagar Ko Ghar Sam",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "Basbariya/Works NCB-02/2074/75",
"title": "Construction of P.C.C Road ward-1 Rambabu ko ghar - dinkar ray ghar Hudhai Nagendra Paswan Ko Ghar samma",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "TIACAO/CED/08/074-75",
"title": "Grass cutting and side strip maintenance works at Tribhuvan International Airport.",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "TIACAO/CED/09/074-75",
"title": "Marking works for runway,taxiways,apron and service roads at TIA",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "Basbariya/Works NCB-03/2074/73",
"title": "Construction of P.C.CRoad ward-2,Main Road dekhi uttar Tarf jane bato",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "06/2074/075",
"title": "SUPPLY AND INSTALATION OF SOLAR STREET LIGHT",
"procuring_entity": "Gajuri Rural Municipality, Dhading",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Sindhupalchowk/Works/01/2074/75-NCB",
"title": "Construction and upgrading of urban road and drain of Chautara municipality of Sindhupalchowk district",
"procuring_entity": "DUDBC, DIVISION OFFICE SINDHUPALCHOWK",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "Basbariya/Works NCB-04/2074/73",
"title": "Construction of P.C.CRoad ward-3 ,Ga.Pa. ko office Dekhi Gogindra Mukhiya ko Ghar Sam",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "Basbariya/Works NCB-05/2074/75",
"title": "Construction of P.C.CRoad ward-4,ward office Dekhi Bom Nahar Pool Sam",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "DRODOT/337335/4/2074/075/016",
"title": "Hume pipe culvert, Gabion &amp; Masonry works in Bhatkanda Baral Rel Ucchakot Road, Dadeldhura",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "12/074/075",
"title": "Blacktop repairing works",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 16:00"
},
{
"rfp_no": "Haripur/ Works/02/2074/75",
"title": "Construction of Black top Road, Haraiya-Pidari Road",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "05-074/75 (01)",
"title": "Construction of 15 m, One Span, Simply Supported, cast-in-situ, 2 webbed Reinforced Concrete Slab-Deck Bridge over Maseri Khola, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "03/DORHMISICT/074/75",
"title": "Supply, Delivery and Installation of ICT Equipments and Other ICT Accessories of DoR [Server Operationg System Licence];C.N.DORHMISICT/3370124/074-75/09",
"procuring_entity": "HMIS-ICT Unit",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 10:00"
},
{
"rfp_no": "Basbariya/NCB/06/2074/75",
"title": "Construction of P.C.CRoad ward-5,ward office Dekhi Jhaja Pool Sam",
"procuring_entity": "Basbariya Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "Haripur/Work/03/2074/75",
"title": "Construction of Black top Road, Campuschwok-Hattisar-Gaurishnaker club",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "GNRP1.1-074/075",
"title": "Roadway Excavation and Structural works along Gamgadhi- Nakchhalagna Road in Mugu District (Ch: 0+000- 10+000)",
"procuring_entity": "Gamgadhi Nakchelagna Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 10:00"
},
{
"rfp_no": "Haripur/ Works/04/2074/75",
"title": "Construction of Black top Road, Sanojagatpur-Ringroad",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "DUDBC / GORKHA/ NCB/ WORKS/074/75-09",
"title": "Construction Of Senior Citizen's Home at Chhepetar, Gorkha",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 12:00"
},
{
"rfp_no": "Haripur/ Works/05/2074/75",
"title": "Construction of Black top Road, Laxmipur main road.",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "Haripur/ Works/06/2074/75",
"title": "Construction of Black top Road, Pharadawa Road",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "Haripur/ Works/07/2074/75",
"title": "Construction of Black top Road, Janakinagar road.",
"procuring_entity": "Haripur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "DRODOT/337320/4/2074/075/017",
"title": "Bridge &amp; Culvert protection works in Mahakali Highway",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "BAPIDP-W18-074/75",
"title": "Design and Construction of Side Drain at Madan Aastrit Smriti Pratisthan Road, Gothatar",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "MG/W/NCB/GNP-06/074 /075",
"title": "Construction of Blacktop Road from 15 No.Gau upto Behanawa nala (ward:-01)Part 2",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "DRODOT/337320/4/2074/075/018",
"title": "Bridge &amp; Culvert protection works in Syaule-Silgadhi section of Seti Highway",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "CAAN/AED/KEP/Apron/074-75/23",
"title": "Construction of taxiway and rigid pavement apron at Nepalgunj Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:01"
},
{
"rfp_no": "CAAN/AED/RJB/Road/074-75/22",
"title": "Construction of Approach Road and Associated Work at Rajbiraj Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "TNN/074/75/04-01",
"title": "Specific Repair of Road in Gokuleshwor-Khalanga Section of Mahakali Highway; DROBTD/3371653/074/75-011(RE)",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "TNN/074/75/04-02",
"title": "Debris Removal and River Training Works in Tarugaad Bridge (Ch. 83+200 Km ) on the Khodpe Bajhang Road (F49); DROBTD/3373204/074/75-20",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "DRODOT/337320/4/2074/075/019",
"title": "Bridge &amp; Culvert protection works in Silgadhi Chaukhutte Section of Silgadhi Sanfe Road, Doti.",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "TNN/074/75/04-03",
"title": "Bridge Protection Works in Baahuligaad Bridge (Ch. 107+000 Km ) on the Khodpe Bajhang Road (F49); DROBTD/3373204/074/75-21",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "TNN/074/75/04-04",
"title": "Road Saftey Works in Anarkholi-Darchula Section of Mahakali Highway (H14) and Khodpe-Baagthala Section of Khodpe Bajhang Road (F49); DROBTD/3371653/074/75-22",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "DRODOT/337356/4/2074/075/020",
"title": "Construction of Drain slab cover in Syaule-Silgadhi section of Seti Highway &amp; in Silgadhi Chaukhutte Section of Silgadhi Sanfe Road",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "DRODOT/337165/3/2074/075/021",
"title": "Construction of Drain slab cover in Phaltude- Syaule-Anarkholi section of Mahakali Highway",
"procuring_entity": "502 Division Road Office Doti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "2/MG/W/NCB/GNP-07/074/075",
"title": "Construction of Blacktop Road &amp;Drain Construction Work Ward no 8",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "2/MG/W/NCB/GNP-09/074 /075",
"title": "Construction of Blacktop road from Lalpur Chowk to Dadalalpur boarder Road (ward no.11)&amp; Construction of Gravel Road Upto Bhaisai Road (ward:-12)",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "2/MG/W/NCB/GNP-08/074 /075",
"title": "Construction of Blacktop road from Krishnashar Pra. Bi to Road joining Kailash Nagar (ward:-03)Part 2",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 07:00"
},
{
"rfp_no": "2/MG/W/NCB/GNP-10/074 /075",
"title": "Blacktop Road Wardno 3 Simana To Belauli ,Dhurva MA. VI. (ward:-04)",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 07:00"
},
{
"rfp_no": "NCB-01-MIS-074/75",
"title": "Design, Supply and Installation of Modular Data Centre",
"procuring_entity": "Civil Aviation Authority of Nepal, MIS and Research Section",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "05-04-2018 10:00"
},
{
"rfp_no": "09-074-75/061",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 1)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 16:00"
},
{
"rfp_no": "09-074-75/062",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 2)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 16:00"
},
{
"rfp_no": "09-074-75/063",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 3)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 17:00"
},
{
"rfp_no": "09-074-75/064",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 4)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 17:00"
},
{
"rfp_no": "09-074-75/065",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 5)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 17:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/07/074/075",
"title": "Road Side Drain Construction &amp; Blacktopped Road Maintenance",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-04-2018 07:00"
},
{
"rfp_no": "09-074-75/066",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 6)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/067",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 7)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/068",
"title": "Recurrent maintenance of SRN/SURN Roads (Sector 8)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/069",
"title": "Thermoplastic painting on various SRN/SURN Roads",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/070",
"title": "Specific maintenance of Mijubahal Siphal Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/071",
"title": "Specific maintenance of Maharajgunj Budhanilkantha Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 20:00"
},
{
"rfp_no": "09-074-75/072",
"title": "Specific maintenance of Narayanhiti Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 23:00"
},
{
"rfp_no": "09-074-75/073",
"title": "Improvement of Suntakhan (Ganeshthan) Totha Maitinepal Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "17-04-2018 23:30"
},
{
"rfp_no": "ncb/good/74/75",
"title": "Sports Goods Purchases, Tripureshwor, Kathmandu Contract No. 02-074/075 Package II",
"procuring_entity": "National Sports Council",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "26-04-2018 14:00"
},
{
"rfp_no": "DUDBC/SINDHULI/WORKS/NCB/047/75/04",
"title": "Dudhauli Buspark Construction. Dudhauli Nagarpalika-9,Sindhuli",
"procuring_entity": "DUDBC, DIVISION OFFICE, SINDHULI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 10:00"
},
{
"rfp_no": "DADOChitwan/goods/04/074-75",
"title": "Procurement of Mechanical Machineries for Chitwan Samudayik Machha Dana Udhyog",
"procuring_entity": "District Agriculture Development Office, Chitwan",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 11:00"
},
{
"rfp_no": "27-074-75",
"title": "Construction of Integrated Office building for Irrigation and Water Induced disaster management division office at Patan Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "PID/Civil/1/2074-075",
"title": "Construction of Road &amp; Hume-pipe Laying at Patan Industrial District",
"procuring_entity": "Patan Industrial District Management Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "1/2074=075",
"title": "RCC Counterfort, Plum Concrete and Stone Masonry Retaining Wall Construction Works",
"procuring_entity": "Water Induced Disaster Management Division Office No. 7, Charikot, Dolakha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 14:00"
},
{
"rfp_no": "MOFSC/DFO/Works/2074-75/NCB-01",
"title": "Construction of additional storey in existing building at doramba",
"procuring_entity": "District Forest Office, Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "MOFSC/DFO/WORKS/2074-075/NCB-02",
"title": "Construction of additional storey in existing building at ramechhap bazaar",
"procuring_entity": "District Forest Office, Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "MOFSC/DFO/WORKS/2074-075/NCB-03",
"title": "Construction of additional storey in existing building at bhirpani",
"procuring_entity": "District Forest Office, Ramechhap",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "03/2074/75",
"title": "Construction of Jugle Khola (22.6 m Span RCC) Bridge at Ch.9+100, Naudanda-Bicharichautara-Karkineta Road; Contract Identification Number: SNRTP-SYA-W-NCB-28.09-BRI-074-75",
"procuring_entity": "District Technical Office (DTO), Syangja",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 14:00"
},
{
"rfp_no": "01074075",
"title": "SUPPLY AND DELIVERY OF &quot;HYDRAULIC EXCAVATOR&quot;",
"procuring_entity": "Aamachhodingmo Rural Municipality, Rasuwa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 18:00"
},
{
"rfp_no": "N1SP/KHO-INC/074-75",
"title": "Construction of In-charge Quarter, Barrack Building, Mess Block, Toilet Block, Septic Tank, Soak Pit and Retaining Wall",
"procuring_entity": "District Police Office Khotang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-04-2018 00:00"
},
{
"rfp_no": "N1SP/VOJ-INC/074-75",
"title": "Construction of In-charge quarter, Barrack Building, Mess Block, Toilet Block, Septic Tank and Soak Pit.",
"procuring_entity": "District Police Office Bhojpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-04-2018 15:00"
},
{
"rfp_no": "LTDC/Dang/NCB/Work/05/074/75",
"title": "Up gradation of Road from Market Area to Police office, Lamahi-Dang",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "LTDC/Dang/NCB/Work/06/074/75",
"title": "Drain construction within Cricket field of Lamahi-05",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "GOODS-02/074/075",
"title": "Printing of Inspection Manual forms and Other Forms",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 09:00"
},
{
"rfp_no": "13-074/75(1)",
"title": "Specific Road maintenance works on Mahendra Rajmarg (chaubikothi- Rijal chowk Section)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(2)",
"title": "Specific Maintenance Works on Lother-Parsa Road(Chainage-444+000 to 445+000)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(3)",
"title": "Specific Maintenance Works on MRM, postal highway, Aaptari Devghat Road Pulchok- pokhara Buspark, Yagyapuri- Lanku-Belchowk- Sahidchowk Road, chitwan .",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(5)",
"title": "Supply of Tools and Accessories for Length Workers of Routine Maintenance Works.",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(6)",
"title": "Supply of Bitumen Emulsion for departmental recurrent maintenance works",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "CNM/ROAD/NCB/16/074/075",
"title": "Construction of Kalekholi-Chere Road &amp; Canal Lining Works",
"procuring_entity": "Chandannath Municipality , Jumla",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "NRM/ROAD/27/074-75",
"title": "Earthwork and Graveling from From Yadav House to Mahteyniya Village road (Chainnage 0 To 500).",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "NRM/ROAD/28/074-75",
"title": "Earthwork and Graveling from From Yadav House to Mahteyniya Village road (Chainnage 500 To 1000).",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "NRM/ROAD/29/074-75.",
"title": "Earthwork, Graveling,P.C.C and Humepipe work from Reyaj House to Lal Shriwastav House.",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "NRM/ROAD/30/074-75",
"title": "Construction of P.C.C road from Baniya Village and Mahteyniya Bridge to Boader. Chainnage (0 to 119).",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "NRM/ROAD/31/074-75",
"title": "Construction of P.C.C road from Baniya Village and Mahteyniya Bridgee to Boader. Chainnage (119 to 238).",
"procuring_entity": "Narainapur Rural Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 10:00"
},
{
"rfp_no": "074/075/01",
"title": "Fabrication &amp; Supply of Steel Parts for Short Span Trial Bridges in Baitadi",
"procuring_entity": "District Technical Office, Baitadi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-04-2018 00:00"
},
{
"rfp_no": "13-074/75(2)",
"title": "Specific Maintenance Works on Lother-Parsa Road(Chainage-444+000 to 445+000)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(2)",
"title": "Specific Maintenance Works on Lother-Parsa Road(Chainage-444+000 to 445+000)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "13-074/75(3)",
"title": "Specific Maintenance Works on MRM, postal highway, Aaptari Devghat Road Pulchok- pokhara Buspark, Yagyapuri- Lanku-Belchowk- Sahidchowk Road, chitwan .",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-04-2018 00:00"
},
{
"rfp_no": "IFBGrSD207475T5FC5.",
"title": "Procurement of Self Propelled Conveyor Belt Loaders",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "16-03-2018 15:30"
},
{
"rfp_no": "01/TRM/2074/075",
"title": "Construction of Thatikandh Rural Municipality Office Building.",
"procuring_entity": "Thatikandh Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "BIP-02/074/075",
"title": "Command Area Protection Works at left Bank of Babai River ( Dhungrahi, Kumragaun, Bepattapur &amp; Guruwagaun )",
"procuring_entity": "Babai Irrigation Project, bardiya",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 17:00"
},
{
"rfp_no": "NCB/51/PROSEC/2074-75",
"title": "Supply, Installation and commission of Digital Announcement System",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/27",
"title": "Supply &amp; Delivery of X-Ray Film",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/73/74/24",
"title": "Supply &amp; Delivery Delivery of Real Time PCR Package-1 Genetic Lab Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/73/74/25",
"title": "Supply &amp; Delivery of Pathology Microbiology Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "SRM/BAITADI/WORKS/NCB 1-074/75",
"title": "Construction of Bippayakattal Dulaina Dhungad Doti Thalara Road, Baitadi",
"procuring_entity": "Sigas Rural Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "SNRTP-BHOJ-W-NCB-31-08-PM-074-75",
"title": "Periodic Maintenance of Taksar-Gumba-Dalgaun-Bhuke-Dhodhlekhani Road (Ch. 15+000 km to 29+585 km) including river crossing structure",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Bhojpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 11:00"
},
{
"rfp_no": "21/074-75",
"title": "Supply and delivery of motor Grader",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "SNRTP-BHOJ-W-NCB-31-09-PM-074-075",
"title": "Periodic Maintenance of Tiwaribhanjyang-Chyangre-Bastim-Thulodumma-Sanoduumma Road (from Ch. 15 + 100 to 30+140 km) Including river crossing structure",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Bhojpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 11:00"
},
{
"rfp_no": "DROCNP/337329-4/074-75/38",
"title": "Drain Works (Santapur Bazar-Koiriya Tola-Maryadpur Sadak, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/39",
"title": "Gravelling and Structure Works (Barahatha-Samanpur-Katahariya-Santapur-Kalaiya Sadak at Santapur-Malahi Sector, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/40",
"title": "Earthwork, Gravelling, Drain and Blacktop Works (Barahatha-Samanpur-Garuda-Katahariya-Kalaiya Sadak at Garuda Bazar, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/41",
"title": "Gravelling and Structure Works (Barahatha-Samanpur-Katahariya-Santapur-Kalaiya Sadak at Lalbakiya Bridge to Katahariya Bazar, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/42",
"title": "Gravelling and Structure Works (Junglesahiya-Himalibas Sadak, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/43",
"title": "Drain Works ( Harsaha-Bijayapur-Phatuwa Sadak, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/44",
"title": "Lakhandehi Bridge River Training Works. (Shivanagar-Sodahawa Sadak, Sarlahi)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "29-03-2018 10:00"
},
{
"rfp_no": "DUDBC/Dolakha/Works/NCB/2074/75-01",
"title": "Upgrading of Urban Road and Drain in Core area of Bhimeshwor Municipality, Dolakha",
"procuring_entity": "DUDBC, DIVISION OFFICE DOLAKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 12:00"
},
{
"rfp_no": "DUDBC/Dolakha/Works/NCB/2074/75-02",
"title": "Construction of District Election Commission Office, Charikot, Dolakha",
"procuring_entity": "DUDBC, DIVISION OFFICE DOLAKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 12:00"
},
{
"rfp_no": "BIP-03/074/075",
"title": "Command Area Protection Works at left Bank of Babai River ( Jabdighat &amp; U/S of Bhada Bridge )",
"procuring_entity": "Babai Irrigation Project, bardiya",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 17:00"
},
{
"rfp_no": "KTFT/NCB/2074/75/20",
"title": "Supply of Truck Utility 1 Ton Vehicles",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 06:00"
},
{
"rfp_no": "DUDBC/Dolakha/Works/NCB/2074/75-3",
"title": "Construction of Jiri Museum Building, Jiri, Dolakha",
"procuring_entity": "DUDBC, DIVISION OFFICE DOLAKHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-03-2018 12:00"
},
{
"rfp_no": "10/074/075",
"title": "Construction and Supply of equipments of Slaughter House",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-04-2018 10:00"
},
{
"rfp_no": "15/074/075/Butwal",
"title": "Truss,Roofing and External Partition Work",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-04-2018 10:00"
},
{
"rfp_no": "16/074/075/Butwal",
"title": "Construction of Civil Lab Block",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "13-04-2018 10:00"
},
{
"rfp_no": "CTEVT/TEVT Exp. 074/075 Civil-05",
"title": "Construction of Staff Quarters of Jay Kishan Polytechnic Institute, Dharhari, Rautahat",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 14:00"
},
{
"rfp_no": "NCB/01/2074/75",
"title": "construction of first floor of dullu municipality office",
"procuring_entity": "Dullu Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "PSC/Jumla/Work/NCB/01/074/075",
"title": "Construction of Exam Hall Building PSC Jumla",
"procuring_entity": "PUBLIC SERVICE COMMISSION, JUMLA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "DROSPR/06/074/75-029",
"title": "Road widening /Track Opening,Construction of Gabion &amp; Masonry wall / Side Drain Works on Bhalubang-Nuwakot-Sandhikharka-Tamghas-Sadak",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "DROSPR/06/074/75-030",
"title": "Road widening /Track Opening,Construction of Gabion &amp; Masonry Works on Makalu cement udhyog Quarry site acess road",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "DUDBC/Saptari/ Work/NCB/4/ 074/075",
"title": "Construction of Devipur Healthpost Building Construction Work, Devipur, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "Notice No: DROSPR/06/074/75-(031) Contract No. DROSPR/3373664/074/75-031",
"title": "Construction of Black Topped Road (Double Bituminous Surface Dressing Works) with Cross Drainage Structures (Length: 1.2 Km within Chainage: 3+300 to 5+000 Km) along Ma.Ra.Ma. Pipara- Pakadi- Chakarchauda Sima Sadak, Kapilvastu, Nepal",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "DUDBC/Kailali/NCB/works04/2074/75",
"title": "Construction of Urban Infrastructure (Cemetery) at Bhujela, Bhimdatta-12, Kanchanpur",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 23:00"
},
{
"rfp_no": "Notice No: DROSPR/06/074/75-(032) Contract No: DROSPR/3373664/074/75-032",
"title": "Construction of Black Top Road (Double Bituminous Surface Dressing Works) with Cross Drainage Structures (Length: 1.070 Km within Chainage: 17+000 and 20+000 Km) Krishnanagar RTO- Balapur- Darwa- Khairi- Ma Ra Ma Road",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "Notice No: DROSPR/06/074/75-(033) Contract No: DROSPR/3373664/074/75-033",
"title": "Construction of Black Top Road (Double Bituminous Surface Dressing Works) with Cross Drainage Structures (Length: 0.55 Km within Ch: 5+150 and 6+500 Km) along Takihawa- Rajpur- Shivbhari- Bharatiya Sima Sadak",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "NCB/02/2074/75",
"title": "11KV Transmission Line,100KVA Transformar and 400VLT Line Installation",
"procuring_entity": "Dullu Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Saptari/ Work/NCB/5/ 074/075",
"title": "Construction of Gadha Healthpost Building Construction Work, Gadha, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "MIP/RDKISP/IDSD/KALIKOT/NCB-01/2074-75",
"title": "Construction of intake, Canal and Canal Structures at Ridke Irrigation Sub Project, Kalika GaPa-7,9, Kalikot",
"procuring_entity": "Irrigation Developmen Sub-Division, Kalikot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Saptari/ Work/NCB/6/ 074/075",
"title": "Construction of Malhania Healthpost Building Construction Work, Malhania, Siraha",
"procuring_entity": "DUDBC, DIVISION OFFICE, SAPTARI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "KIDP/JGDISP/IDSD/KALIKOT/NCB-02/2074-75",
"title": "Construction of Intake, Canal and Canal Structures at Jhyagad Irrigation Sub-Project, Mahabai Ga.Pa-2, Kalikot",
"procuring_entity": "Irrigation Developmen Sub-Division, Kalikot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "KIDP/BCISP/IDSD/KALIKOT/NCB-03/2074-75",
"title": "Construction of Intake, Canal and Canal Structures at Banchu Irrigation Sub-Project, Tilagufa Na.Pa-10, Kalikot",
"procuring_entity": "Irrigation Developmen Sub-Division, Kalikot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 00:00"
},
{
"rfp_no": "Notice No: DROSPR/06/074/75-(034) Contract No: DROSPR/3373664/074/75-034",
"title": "Construction of Black Topped Road (Double Bituminous Surface Dressing Works) with Cross Drainage Structures (Length: 0.965 Km within Chainage: 6+000 and 7+500 Km) along Bharatiya Sima Hariweshpur- Mankhoriya- Biminha- Mahadev Sohasa- Patariya- Patna Sadak",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "Notice No: DROSPR/06/074/75-(035) Contract No: DROSPR/3373204/074/75-035",
"title": "Maintenance of Guide Bund and Aproach Road by Gabion Works along Banganga Bargadighat Bridge and Ramghat Bridge, Kapilvastu",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-03-2018 06:00"
},
{
"rfp_no": "4-2074/075/ SDVKVS",
"title": "GMP Upgrading (Bhashma Unit) of Existing Building",
"procuring_entity": "Singhdurbar Vaidyakhana Vikas Samiti",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 10:00"
},
{
"rfp_no": "09/LAMAHI/NCB/2074-75",
"title": "Construction of Steel Frame Structure for Cold Store at Lamahi (Phase II)",
"procuring_entity": "Lamahi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-03-2018 15:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75-19(Re)",
"title": "Supply of Construction Material.",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "JZH/NCB/74/75/08",
"title": "supply and Delivery of hameodailysis machine",
"procuring_entity": "Janakpur Zonal Hospital Development Committee",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "JZH/074/075/9",
"title": "supply and delivery of C-ARM Machine Ortho",
"procuring_entity": "Janakpur Zonal Hospital Development Committee",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "JZH/074/075/10",
"title": "supply and delivery of Hospital bed with Mattress",
"procuring_entity": "Janakpur Zonal Hospital Development Committee",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "11-04-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75-22",
"title": "Recurrent maintenance of Balaju bypass-Thulokhola- Kakani , Nepaltar- Futung -Sangla bazar Road",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75-23",
"title": "Recurrent maintenance work of Pharping (Dakshankali) - Pakhelchaur Road",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "15-074/75 - DRODML/337356-4/074/75-21",
"title": "Road Maintenance works on Dumre -Besisahar Road ( CH. 0+000 to 6+000), DRODML/337356-4/074/75-21",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-04-2018 10:00"
},
{
"rfp_no": "15-074/75- DRODML/337356-4/074/75-22",
"title": "Road Maintenance works on Dumre -Besisahar Road ( CH. 6+000 to 14+000), DRODML/337356-4/074/75-22",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-04-2018 10:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75-24",
"title": "Recurrent Maintenance work of Kalanki Nagdhunga, Nagdhunga Piplamod, Nagdhunga Tankeswor Road.",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "NCB/6/PROSEC/2074-75",
"title": "Supply, Delivery, Installation and commissioning of Chemical Identifier",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371574/074/75-25",
"title": "Recurrent maintenance of Balaju Bypass- Ngarjun- Thulokhola Road",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "05/74/75-17",
"title": "Construction of Kamalamai Na Pa 1,2,5,6,7 &amp; 9 Chakrapath, Sindhuli",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:00"
},
{
"rfp_no": "05/74/75-18",
"title": "Construction of Kamalamai Na Pa 1,2,5,6,7 &amp; 9 Chakrapath, Sindhuli",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:05"
},
{
"rfp_no": "05/74/75-19",
"title": "Rehabilitation of Khurkot Manthali Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:05"
},
{
"rfp_no": "DRODKT/3373354/074/75-026",
"title": "Roadway Excavation and Structural Works on Kolbote-Mahabharat-Aahale-Barahachhetra Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-04-2018 00:00"
},
{
"rfp_no": "05/74/75-22",
"title": "Recurrent Maintenance Works in Khurkot Manthali Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:22"
},
{
"rfp_no": "05/74/75-23",
"title": "Specific Maintenance Works in Milti Manthali Khurkot Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:30"
},
{
"rfp_no": "05/74/75-24",
"title": "Specific Maintenance Works in Milti Manthali Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 11:30"
},
{
"rfp_no": "05/74/75-15",
"title": "Construction of Jiri Those Shivalaya Solu Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "12-04-2018 08:05"
},
{
"rfp_no": "05/74/75-14",
"title": "Construction of Manthali Sanghutar Ghorakhori Road",
"procuring_entity": "202 Division Road office Khurkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-04-2018 08:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/01/074-75",
"title": "Construction of Community Building, Sari Pyuthan",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/06/074-075",
"title": "Tikuri Pratikshalaya- Buspark- Bagdula (Main Road) Road Upgrading Work.",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/05-074/075",
"title": "Bhingri Bus Park and Access Road Improvement Work, Bhingri, Pyuthan.",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/08-074/075",
"title": "Senior Citizen Residence Building Construction Works, Pyuthan Municipality, Pyuthan.",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Jumla/Work/NCB/1/074/075",
"title": "Construction of District Lawyer Office Building Kalikot",
"procuring_entity": "DUDBC, DIVISION OFFICE, JUMLA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Jumla/Work/NCB/2/074/075",
"title": "Construction of District Lawyer Office Building Humla",
"procuring_entity": "DUDBC, DIVISION OFFICE, JUMLA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Jumla/Work/NCB/3/074/075",
"title": "Construction of District Agriculture Development Office Building Kalikot",
"procuring_entity": "DUDBC, DIVISION OFFICE, JUMLA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Jumla/Work/NCB/4/074/075",
"title": "Construction of Road &amp; Drain in Manma Bazar Kalikot",
"procuring_entity": "DUDBC, DIVISION OFFICE, JUMLA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "SNRTP-SANK-W-NCB-32.06-BRI-074-75",
"title": "Construction of Pangma Bridge(Ch 7+120 along Khandbari-Kalchebeshi-Dake-Sabhapokhari Road)",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sankhuwasabha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "SNRTP-SANK-W-NCB-32.07-BRI-074-75",
"title": "Construction of Malta Khola Bridge(Ch 7+710 along Khandbari-Kalchebesi-Dake-Sabhapokhari Road)",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sankhuwasabha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/3/074-75",
"title": "Sattale- Jaljala Campus- Mebang-Pedi Khola-Titrikot-Bahigaun-Dhansi Khola-Thalibang Ring Road Construction and Upgrading Works",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "PYU-74-75-02",
"title": "Construction of Hariya Khola Bridge",
"procuring_entity": "District Technical Office (DTO), Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 17:00"
},
{
"rfp_no": "3-074/075",
"title": "Supply and delivery of backhoe loader(not less than 92 HP)",
"procuring_entity": "Executive Office Of Garuda Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 11:05"
},
{
"rfp_no": "4-074/075",
"title": "Supply and delivery of 2 unit- hardtop jeep 2WD with air bag and ABS",
"procuring_entity": "Executive Office Of Garuda Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 11:05"
},
{
"rfp_no": "5-074/075",
"title": "Supply and delivery of 2 unit Tractor with hydraulic trailer(around 40 HP)",
"procuring_entity": "Executive Office Of Garuda Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 11:05"
},
{
"rfp_no": "6-074/075",
"title": "Supply and delivery of 13 unit motorbikes(150+-10% CC)",
"procuring_entity": "Executive Office Of Garuda Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 11:05"
},
{
"rfp_no": "KTFT/DPR/EOI/INTERNATIONAL/2074/75/01",
"title": "Preparation of Detail Project Report",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Consultancy EOI  QBS",
"status": "Evaluation Pending",
"published_date": "28-03-2018 12:00"
},
{
"rfp_no": "CAAN/NPP/SIA-IU/09/Generator/ 074-75",
"title": "The Supply, Delivery, Installation and Testing of 25-30 KVA diesel generator for SIAP at Bara&quot;",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Goods  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": ".TBSWAp/DTO-Jajarkot/NCB/G/02/074-75",
"title": "Fabrication and supply of steel parts",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "17-04-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/3/074-75",
"title": "Sattale- Jaljala Campus- Mebang-Pedi Khola-Titrikot-Bahigaun-Dhansi Khola-Thalibang Ring Road Construction and Upgrading Works",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Rolpa/NCB/Works/3/074-75",
"title": "Sattale- Jaljala Campus- Mebang-Pedi Khola-Titrikot-Bahigaun-Dhansi Khola-Thalibang Ring Road Construction and Upgrading Works",
"procuring_entity": "DUDBC, DIVISION OFFICE, ROLPA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-03-2018 00:00"
},
{
"rfp_no": "IFBGrSD207475T4F/C4",
"title": "International Airport Aircraft Passenger Ramp Buses",
"procuring_entity": "GrSD(Ground Support Department), Nepal Airlines Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "10-074-075",
"title": "Construction of Nwali Health Post Building",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "09-074-075",
"title": "Construction of Dashrath Chand Health Post",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "11-074-075",
"title": "Construction of Hatairaaj Health Post at HataiRaj Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "12-074-075",
"title": "Construction of Dilasaini Health Post",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "13-074-075",
"title": "Construction of Khadeshwori Health Post Building at Khandeswori Darchula",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "14-074-075",
"title": "Construction of Dethala Health Post",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "15-074-075",
"title": "Construction of Hadakot Health Post",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "21-074-075",
"title": "Construction of Pipalkot Health post Building at Pipalkot Bajhang",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "16-074-75",
"title": "Construction of Bijayapur Health Post Building,Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "17-074-075",
"title": "Construction of Thalakada Health Post, baitadi (Load Bearing)",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "19-074-075",
"title": "Construction of Dehimandu Health Post Building at Dehimandu Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "18-074-075",
"title": "Construction of Nwadeu Health Post Building Structure",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "20-074-75",
"title": "Construction of District Hospital 4 Unit-Staff Quarter Building, Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "05/074-75/PLANNING SECTION/DWSS",
"title": "Fabrication, supply, installation and commissioning of chlorination units in different districts",
"procuring_entity": "Foreign Aid Co-ordination and Planning Section",
"type": "Goods  NCB",
"status": "LOA Issued",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/Rev./T10",
"title": "Pashupati Prangan Conservation Works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "23-074-075",
"title": "Construction of Shankarpur Health Post at Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "24-074-075",
"title": "Construction of joshibunga Health Post Building at Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "NCB/49/PROSEC/2074-75",
"title": "Supply, Delivery, Replacement, and Modification of Old VVIP Lights by Led Light in ITB",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "DM.NCB/C/04/2074/75",
"title": "Construction Of RCC Slab culvert",
"procuring_entity": "Dhanushadham Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "DM/NCB/R/05/2074/75",
"title": "Mangalpur PCC road Construction(CH 0+000-0+250)",
"procuring_entity": "Dhanushadham Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "25-074-75",
"title": "Construction and Improvement Work of Road at JayPrithvi Municipality, Bajhang",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "26-074-75",
"title": "Construction and Improvement Work of Road and Drain at Dashrathchand Municipality, Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "22/074/75",
"title": "Construction of Udyadev Health Post Type D Load Bearing Building",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "MG/W/NCB/BMO -02/2074-75",
"title": "Bhim Marga (Dhakaila to Manpur)Road Construction Project(Ch.0+000-2+080)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 10:00"
},
{
"rfp_no": "01/NCB/GOODS/ADPJ/074/75",
"title": "Suppliying of Diesel Engine Centrifugal Pump for shallow tubewells",
"procuring_entity": "Agriculture Development Project, Janakpur",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "26-03-2018 11:00"
},
{
"rfp_no": "MG/W/NCB/BMO -3.0/2074-75",
"title": "Sahid Marga (sanibazaar-Jayanagar) Road Project(Ch.0+000-2+200)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 10:00"
},
{
"rfp_no": "MG/W/NCB/BMO -3.1/2074-75",
"title": "Sahid Marga (sanibazaar-Jayanagar) Road Project(Ch.2+200-4+000)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-03-2018 10:00"
},
{
"rfp_no": "01/NCB/GOODS/ADPJ/074/ 75",
"title": "Suppliying of electric centrifugal pump for shallow tubewells",
"procuring_entity": "Agriculture Development Project, Janakpur",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "26-03-2018 11:00"
},
{
"rfp_no": "BPKMCH/NCB/56/074/075",
"title": "Liquid Base Cytology Reagents/Kits",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "09-DROPLP-2074/75 (CN-027)",
"title": "Structural Works at chainage 0+400 Km along BA Cement Quarry Site Access Road, Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-04-2018 10:00"
},
{
"rfp_no": "06-074/75 (06)",
"title": "Specific Maintenance works on Gurje -Chhahare Road, Nuwakot (Pkg-02)",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "06-074/75(07)",
"title": "Gabion works on Sunkhani-Dhalanghar-Syalping Khola-Siwalaya Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-04-2018 10:00"
},
{
"rfp_no": "06-074/75 (08)",
"title": "Road Safety works on Betrawati-Dhunche-Syaphrubesi Road, Rauwa and Gurje-Chhahare Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "10-04-2018 00:00"
},
{
"rfp_no": "074/75/119",
"title": "Supply of Pal and Sayar",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "10-04-2018 11:00"
},
{
"rfp_no": "BAPIDP-008-074/75",
"title": "Construction of Intercepting Sewer, River Training, Road and other related works along the bank of Bagmati River",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "BAPIDP-N1-074/75",
"title": "Construction of Sewer Line, River Training Work, Sewerage Crossing Structure, Road Work and Miscellaneous Works along Nakhu Khola (0+000 to 3+500, both banks)",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "DUDBC/NewtownRakamKarnali/01/074/75",
"title": "Construction of Waiting Shed at various points of Highway, Rakam, Dailekh",
"procuring_entity": "NTP, RAKAM KARNALI, DAILEKH",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-03-2018 00:00"
},
{
"rfp_no": "BAPIDP-BLK1-074/75",
"title": "Construction of Sewer Line, River Training Work, Sewerage Crossing Structure, Road Work and Miscellaneous Works along Balkhu Khola (2+700 to 4+866, both banks)",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NCB/SM/01/2074-75",
"title": "Supply and delivery of vibratory Compactor",
"procuring_entity": "Shivasatakashi Municipality Office Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "BAPIDP-HA1-074/75",
"title": "Reformation of Hanumanghat",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NCB/SM/02/2074-75",
"title": "Supply and Delivery of Motercycle (125cc(+/-0.5 % cc)",
"procuring_entity": "Shivasatakashi Municipality Office Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NCB/SM/05/2074-75",
"title": "Supplu and delivery of Tipper Truck",
"procuring_entity": "Shivasatakashi Municipality Office Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/22/2074/75",
"title": "Walkie - Talkie Sets for Fiscal Year 2074/75 for Nepal Airlines Corporation",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/TS/05/2074-75",
"title": "Purchase of Lubricants",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "25-03-2018 10:00"
},
{
"rfp_no": "NCB/SM/04/2074-75",
"title": "Supply and delivery of Tractor with Hydraulic Trailer",
"procuring_entity": "Shivasatakashi Municipality Office Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "NCB/SM/03/2074-75",
"title": "Supply and delivery of 4WD PICK UP",
"procuring_entity": "Shivasatakashi Municipality Office Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Parsa/NCB-19, Mahagadhimai",
"title": "CONSTRUCTION/UPGRADING OF TELKUWA ROAD AND CONSTRUCTION OF CHHATGHAT AT MAHAGADHIMAI MUNICIPALITY , BARA",
"procuring_entity": "DUDBC, DIVISION OFFICE PARSA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 13:15"
},
{
"rfp_no": "DTO/MAK/Goods/NCB/06/074-75",
"title": "Trikhandi et all Fabrication",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 10:00"
},
{
"rfp_no": "ICB-02-EMD-ME-074/75",
"title": "The Supply, Delivery, Testing &amp; Commissioning of Small ARFF Vehicle for Chandragadhi, Janakpur, Bharatpur &amp; Dhangadhi Airport (Re-Invitation), Package A",
"procuring_entity": "Electro Mechanical Department",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "ICB-02-EMD-ME-074/75/PackageB",
"title": "The Supply, Delivery, Testing &amp; Commissioning of Ultra light Pressurized ARFF Vehicle for Different Domestic Airport(Re-Invitation) Package B, ICB-02-EMD-ME-074/75",
"procuring_entity": "Electro Mechanical Department",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "ICB-02-EMD-ME-074/75/Package C",
"title": "The Supply and Delivery of Ambulance for Pokhara, Nepalgunj, Bhairahawa and Biratnagar Airport, Package C, ICB-02-EMD-074/75",
"procuring_entity": "Electro Mechanical Department",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-04-2018 00:00"
},
{
"rfp_no": "11/DROBRT/3373354/2074/75-36",
"title": "Blacktopped Road Construction Work in Duhabi Tetariya Motipur Rajghat Paalugothan Narayanjhoda Chandragadhi Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "11/DROBRT/3373204/2074/75-37",
"title": "River Trainingin Works in Dass Bridge Protection",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "11/DROBRT/3373354/2074/75-38",
"title": "Construction of Black Top Road including structures in Katahari Chowk - Janpriya HSS -Bhathigang--Majhare-Laxminiya-Pokhariya-Bharat Sima Sadak",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BPKMCH/NCB/47/074/075",
"title": "Portable Nasopharyangolaryangoscope (NPL) System",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-04-2018 00:00"
},
{
"rfp_no": "BIMD/LGIRMTP/NCB-01/074-075",
"title": "Reshaping &amp; RCC Lining of Feeder Canal, Main canal (0+000- 7+280 Km), Construction of VRBs &amp; Cross Drains, Head Works Protection Works, Improvement of Service Roads in BIS",
"procuring_entity": "Banganga Irrigation Management Division",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 06:00"
},
{
"rfp_no": "IDD-01/074-75",
"title": "Bagaiche Kulo IP, Fakfokthum Gaunpalika-4 Fuyatappa",
"procuring_entity": "Irrigation Development Division Ilam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 11:30"
},
{
"rfp_no": "IDD-01/074- 75",
"title": "Aangtere IP, Fakfokthum Gaunpalika-4 Fuyatappa",
"procuring_entity": "Irrigation Development Division Ilam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 11:30"
},
{
"rfp_no": "IDD-01/ 074-75",
"title": "Shree Khola IP, Suryodaya Municipality-1 Gorkhe",
"procuring_entity": "Irrigation Development Division Ilam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 11:30"
},
{
"rfp_no": "IDD-01/ 074- 75",
"title": "Chhagey Khola IP, Sandakpur Gaunpalika-2 Maimajhuwa",
"procuring_entity": "Irrigation Development Division Ilam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 11:30"
},
{
"rfp_no": "IDD- 01/074-75",
"title": "Malum Khola IP, Suryodaya Municipality-8 Kanyam",
"procuring_entity": "Irrigation Development Division Ilam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 11:30"
},
{
"rfp_no": "NCB/2074-75/REG/13",
"title": "Construction of Six Story Ladies Barrack Building and Ward Block(Structural Works)",
"procuring_entity": "Nepal Police Hospital Maharajgunj Kathmandu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-LALITPUR - 06",
"title": "Construction of Namuna Machhindra Secondary School Building Complex in Lalitpur District (ESRP/MOE/CLPIU/074/75-LALITPUR - 06)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 10:00"
},
{
"rfp_no": "Padt/2074-075/Goods/T5",
"title": "TRIPPER (Medium Type) Goods caring vehicle",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "IDD-CHITWAN/MIP/NCB/01/74-75",
"title": "Rewa Khola Irrigation Sub Project Madi Municipality -07, Chitwan",
"procuring_entity": "Irrigation Development Division Chitwan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 12:00"
},
{
"rfp_no": "9/074/75",
"title": "Periodic Maintenance Of Ramghadwa-Jagarnatpur-Milanchowk Road From CH 0+000to CH 8+500",
"procuring_entity": "District Technical Office (DTO), Parsa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 07:00"
},
{
"rfp_no": "APF/NCB/R/07/2074/075",
"title": "Purchase of Ration for APF School Academic year 2075",
"procuring_entity": "Nepal APF School",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "NCB-P5-RP14-2074/75",
"title": "-Construction Of Police Post(Office Cum Barrack) of Charpala ,Gulmi",
"procuring_entity": "District Police Office, Gulmi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "05/2074*075",
"title": "Design, Supply, Installation and Commissioning of Solar Street Light at",
"procuring_entity": "Tansen Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "02/BM/PAR/NCB/BRI/074/75",
"title": "Construction of RCC Bridge over Funty khola",
"procuring_entity": "Birgunj Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "NCB/50/PROSEC/2074-75",
"title": "Supply,Delivery,Installation,Testing,Commissioning and Replacement of Precision Approach Path Indicator (PAPI) at Runway 20 at TIACAO",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-11/CHD/2074-75",
"title": "Procurement of Td Vaccine",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "44/KPL/SM/RD/074/75",
"title": "Construction of Roadway and drain of Dakaiya school to katuwa",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 10:00"
},
{
"rfp_no": "45/KPL/SM/RD/074/75",
"title": "Roadway Improvement of Dakaiya school Chanai Gulari Sadawa road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 10:00"
},
{
"rfp_no": "CTP-01/2074/75",
"title": "CTP",
"procuring_entity": "District Technical Office (DTO), Okhaldhunga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "001/SWAp/2074/75",
"title": "fabrication of steel parts",
"procuring_entity": "District Technical Office (DTO), Okhaldhunga",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "46/KPL/SM/RD/074/75",
"title": "Construction of w.n.7 Rudrapur Jawabhari Bijaya cement road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 10:00"
},
{
"rfp_no": "28/NCB/KPL/SM/RD/074/075",
"title": "Construction of Link road to Gaurabhari Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 10:00"
},
{
"rfp_no": "LLF/DTO-Jajarkot/NCB/W/06/074-75",
"title": "Construction of Causeway at Morka Khola, Jajarkot",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-03-2018 00:00"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/08/074-075",
"title": "Construction Of Road and Drain in Ghorahi, Dang, Package-I",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "MRMUN /01/074-75",
"title": "Construction of Rural Municipality Office Building(Phase I)",
"procuring_entity": "Mayadevi Rural Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-03-2018 00:00"
},
{
"rfp_no": "SNRTP-GUL-W-01-074-75",
"title": "Shantipur Harrachaur Olibang Road Periodic Maintenance (Chainage 0+000 to 11+717)",
"procuring_entity": "District Technical Office (DTO), Gulmi,",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-03-2018 09:00"
},
{
"rfp_no": "SNRTP-GUL-W-NCB-02-074-75",
"title": "Construction of Harewa Khola RCC T-Girder Bridge (25m Span) along Chorkate Shantipur Road (13+500)",
"procuring_entity": "District Technical Office (DTO), Gulmi,",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-03-2018 11:05"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/09/074-075",
"title": "Construction of Road and Drain in Ghorahi, Dang, Package III",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "DTO/G/SQ/PLP/FAB-01/074-75",
"title": "Procurement of goods for fabrication of steel parts of Khahare Bagaha Ghat bridge",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Palpa",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "DTO/G/SQ/PLP/FAB-02/074-75",
"title": "Fabrication of steel parts of Archal Ghat bridge and transportation up to road head Archal Ghat, Ribdikot Rural Municipality-5, Palpa.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Palpa",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "DTO/G/SQ/PLP/FAB-04/074-75",
"title": "Fabrication of steel parts of Triveni Ghat Truss bridge and transportation up to road head Triveni Khola, Ribdikot Rural Municipality-2, Palpa",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Palpa",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "DDC/G/NCB/PLP/FAB-03/074-75",
"title": "Fabrication of steel parts of Khani khola Ghat bridge and transportation up to road head Khani khola Ghat, Nisdi Rural Municipality-4, Palpa.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Palpa",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-04-2018 00:00"
},
{
"rfp_no": "PDRF-58/074/075",
"title": "Reconstruction work of Charighyang Gumba,Bhimeshwor Municipality,Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-59/074/075",
"title": "Reconstruction work of Ram Mandir Sattal, Ram MAndir premise, Bhaktapur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-60/074/075",
"title": "Reconstruction work of Jyanter sang Risang Gumba,Golgung-08,Rasuwa",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-61/074/075",
"title": "Reconstruction work of Pema Chholing Gumba,Lamabagar,Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-62/074/075",
"title": "Construction work of Entry Gate and Multi purpose Building,National Museum, Chhauni",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-63/074/075",
"title": "Reconstruction work of Jetha Ganesh Dauchha,Potari Square Bhaktapur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "PDRF-64/074/075",
"title": "Reconstruction Works of Chandra Setu Building,Bhulbhul-08,Kavre",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-04-2018 06:00"
},
{
"rfp_no": "DOHS/G/ICB-41.29/PHCRD/2074-75",
"title": "Procurement of Tab Atrovastatin 10mg",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ILAM/NCB/WORKS/ 02-074/75",
"title": "Construction of Dokhu Health Post Building in Taplejung District",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 11:00"
},
{
"rfp_no": "DUDBC/ILAM/NCB/WORKS/02-074/75",
"title": "Construction of Dumrise Health Post Building at Dumrise, Taplejung",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ILAM/NCB/WORKS/ 02-074/75",
"title": "Construction of Fulbari Health Post Building at Fulbari, Taplejung",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ILAM/ NCB/WORKS/02-074/75",
"title": "Construction of Thumbedin Health Post Building at Thumbedin, Taplejung",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ILAM/NCB/WORKS/ 02-074/75",
"title": "Construction of Nagi Health Post Building at Nagi, Panchthar",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "8/KPL/MM/RD/074/075",
"title": "Construction of Black Topped road of Dumara Maharajganj Hardauna Road(21+300 to 22+400km)",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "9/KAPIL/MM/RD/074/75",
"title": "Construction&amp;Maintenance of Belnadi Maharajganj Hardauna Road(0+000-14+000km)",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 10:00"
},
{
"rfp_no": "10/KPL/MM/RD/074/75",
"title": "Construction of Kushahawa Mujehana Alagi Road",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 10:00"
},
{
"rfp_no": "11/KPL/MM/BDG/074/75",
"title": "Construction of Baraipur Upswasthya Chauki Maharajganj-4",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 10:00"
},
{
"rfp_no": "DGAO/Rukum/Work/NCB/1/074/075",
"title": "Construction of District Government Attorney Office Building, Musikot, Rukum (West)",
"procuring_entity": "District Government Attorney Office, Musikot, Rukum (West).",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "017475",
"title": "Construction of Bheerkot Municipality Office Building Contract Identification Number: Bheerkotbuilding/NCB/02/074/075",
"procuring_entity": "Bhirkot Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "04/2074-075",
"title": "Upgrading works on Chakla-Siddhwara-Pakuri-Nayabasti-Dhankhola Road",
"procuring_entity": "District Technical Office (DTO), Arghakhanchi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-08",
"title": "Construction Of Damauli Bus Park at Byas Municipality, Tanahun",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "20-03-2018 17:00"
},
{
"rfp_no": "01/DTO/Bara/LRBP/Work/074/075",
"title": "Maintenance &amp; River Training work of Multi cell Box bridge",
"procuring_entity": "District Technical Office (DTO), Bara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "SNRTP-SAP-W-NCB-24.08-BRI-074-75",
"title": "Construction of Jita Khola -1 Bridge",
"procuring_entity": "District Technical Office (DTO), Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "AEPC/BSC/G/NCB/2074/75-01",
"title": "Assessment and Verification of Potential Biogas User and Installation of 4 cum Domestic Biogas Plants, GGC 2047 model for Dalit and Loponmukh Adibashi Janajati of Nepal",
"procuring_entity": "Alternative Energy Promation Centre",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 18:03"
},
{
"rfp_no": "OATG/Gon/NCB/1/074-075",
"title": "Computer Accessories and Equipments - LOT 1 (Desktop, Laptop, Printers, Scanners, Hard Drive)",
"procuring_entity": "Office of the Attorney General, Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 00:00"
},
{
"rfp_no": "OATG/Gon/NCB/2/074-075",
"title": "Electronic Equipment, Accessories and Services - LOT 2 (Switches, Firewalls, Server, Storage SAN, Software(Server OS, Backup, Virtualization), Network Equipment and Service)",
"procuring_entity": "Office of the Attorney General, Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-03-2018 10:40"
},
{
"rfp_no": "DUDBC/Rupandehi/04/074/75-(1)",
"title": "Road Construction in Tilottama Municipality from Keblani Police post to Gausala chowk through Bisho Shanti School.",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 12:00"
},
{
"rfp_no": "DUDBC/Rupandehi/04/074/75-(2)",
"title": "Construction of Maternity Building in Lumbini Zonal Hospital, Butwal, Rupandehi.",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 12:00"
},
{
"rfp_no": "BM/NCB/2074/75-20",
"title": "Box Culvert Near Ghugutel House",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "BM/NCB/2074/75-21",
"title": "Box Culvert at Chisi Khola, Near Mohan devkota house",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "NCB-P5-RP10-2074/075",
"title": "Re-Construction Of Ruksebhanjang ,palpa Police Post Office R Cum Barrack Building,Mess,Toilet,Septic tank,Sock pit,water tank and Retaining wall",
"procuring_entity": "District Police Office, Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "ODRM-GUL-02-074/75",
"title": "Procurement of CGI Sheets for Office of Dhurkot Rural Municipality, Dhurkot Rajasthal, Gulmi",
"procuring_entity": "Office of Dhurkot Rural Municipality, Dhurkot Jaisithok, Gulmi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 12:00"
},
{
"rfp_no": "OMDRM-GUL-01-074/75",
"title": "Procurement of CGI Sheets for Office of Madane Rural Municipality, Purkotdaha, Gulmi",
"procuring_entity": "Office of Madane Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-04-2018 12:00"
},
{
"rfp_no": "BM/NCB/2074/75-20",
"title": "Box Culvert Near Ghugutel House",
"procuring_entity": "Bansgadhi Municipality",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "05-04-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/TS/04/2074-75",
"title": "Procurement of Sedan Cars",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 10:00"
},
{
"rfp_no": "SSRC 15-74/75",
"title": "Maintenance of Fountain at Pond Infront of Singhdurbar Main Building",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "Notice no.:- 01-2074/75",
"title": "construction of revetment and spur works in Arun River, Sankhuwasabha",
"procuring_entity": "Water Induced Disaster Management Division No. 3, Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 15:00"
},
{
"rfp_no": "Padt/2074-075/Goods/T3",
"title": "Invitation for Bid for Procurement of supply and Delivery of Four Wheel Drive Jeep (SUV)",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "DTO/KTM/TB/Goods/NCB-02/074/75",
"title": "Procurement of Fabrication Package",
"procuring_entity": "District Technical Office (DTO), Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 14:00"
},
{
"rfp_no": "07-DROPLP-2074/75 (CN 023)",
"title": "Traffic safety works (RCC &amp; Gabion Crash Barrier, Parapet, Thermoplastic Road Marking and Retro-reflective Traffic Sign Board) on Siddhartha Highway [Chidiyakhola- Ramdi Sector], Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "07-DROPLP-2074/75 (CN 024)",
"title": "Roadway Excavation, Structural Works And Cross Drainage Works on Jagadamba Cement Quarry Site Access Road (CH 4+000 To CH 5+500), Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "GOODS-01-074-075",
"title": "Supply of Office Equipment",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 09:00"
},
{
"rfp_no": "PDRF-47/074/075",
"title": "Reconstruction work of Bajrabarahi Agachen, Chapagaun,Lalitpur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "DUDBC/CS/QCBS/24/074/75",
"title": "Expression of Interest (EoI) Document for Short listing of Consulting Firms for Review of Existing Master Plan and Prepare a New Master Plan Incorporating Expansion Area of Birendranagar Municipality, Surkhet National",
"procuring_entity": "Department of Urban Development & Building Construction",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "04-04-2018 00:00"
},
{
"rfp_no": "PDRF-48/074/075",
"title": "Reconstruction work of Bhairab Temple Dyachhen, Dhungalachhi,Gokarneshwor-4, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "DRODNG/3371653/074/75-026",
"title": "Recurrent Maintenance Works along MRM (Dhan khola - Lamahi Ch.676+000 to 715+00) Road in Dang District.",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "04-04-2018 15:00"
},
{
"rfp_no": "DRODNG/3371653/074/75-027",
"title": "Recurrent Maintenance Works along Rapti Rajmarga (Ameliya- Tulsipur Sector (Chainage 10+000 to Ch.20+000)) Road in Dang District.",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "04-04-2018 15:00"
},
{
"rfp_no": "PDRF-49/074/075",
"title": "Reconstruction work of Basanti Durbar, Kakani, Nuwakot",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "CTEVT/TEVT Exp. Unit 2074/075,Civil-07",
"title": "Construction of Hostel Building (Above Plinth level)of Dhaulagiri Polytechnic Institute Baglung",
"procuring_entity": "Council For Technical Education Vocational Training (CTEVT)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-04-2018 14:00"
},
{
"rfp_no": "DRODNG/ 3373334/074/75-028",
"title": "Road Maintenance works along Tulsipur-Purandhara-Botechaur Road in Dang District (Chainage 0+000 to 0+400 and Chainage 0+750 to 1+200)",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "04-04-2018 15:00"
},
{
"rfp_no": "PDRF-50/074/075",
"title": "Reconstruction work of Madhav Narayan Dyachhen, Sankhu, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-51/074/075",
"title": "Reconstruction work of Nhekan sattal Mai Temple dyachhen, Chalakhutole, Sankhu,Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-52/074/075",
"title": "Reconstruction Work of Paday Sattal, Gokarna, Gokarneswor-03, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-53/074/075",
"title": "Reconstruction work of Gyanmala Bhajan Khala Sattal, Swayambhu, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-54/074/075",
"title": "Reconstruction work of Hyangrib Bhairab Temple, Bungamati, Lalitpur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-55/074/075",
"title": "Reconstruction work of Bigu Gumba, Bigu, Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-56/074/075",
"title": "Reconstruction work of Chilankha Gumba, Chilankha,Dolakha.",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "PDRF-57/074/075",
"title": "Reconstruction work of Taleju Bhawani temple Dyachhen, Joshigal, Gokarneshwor-4, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 06:00"
},
{
"rfp_no": "OMRM-GUL-01-074/75",
"title": "Procurement of CGI Sheets for Office of Malika Rural Municiplality, Arkhawang, Gulmi",
"procuring_entity": "Malika Rural Municiplality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-04-2018 12:00"
},
{
"rfp_no": "02-74/75",
"title": "Rehabilitation/Upgrading Works of Koshi Highway, Basantapur Chainpur Raod (Yakkha chowk - Piluwa Secion) Chainage 23+300 to 36+360 km",
"procuring_entity": "103 Division Road Office Tumlingtar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "3-074/75",
"title": "Widening and Upgradation of Basantapur Guphapokhari Sanghu Dhungesanghu Dhoban Road (Madan Bhandari Marg) ,Sankhuwasabha, Taplejung",
"procuring_entity": "103 Division Road Office Tumlingtar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 10:00"
},
{
"rfp_no": "02/FAN-NCB-074/75",
"title": "Supplying and Installation of Natural Ventilated Greenhouse 1008 Sqr.m.",
"procuring_entity": "Floriculture Association Nepal (FAN)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 11:10"
},
{
"rfp_no": "03/FAN-NCB-074/75",
"title": "Supplying and Installation of Natural Ventilated Greenhouse 2016 Sqr.m.",
"procuring_entity": "Floriculture Association Nepal (FAN)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 11:10"
},
{
"rfp_no": "01-2074-75",
"title": "Maintenance of Road By Retaining Wall Construction and Graveling Works",
"procuring_entity": "Shahidmarga Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 16:00"
},
{
"rfp_no": "01/FAN-NCB-074/75",
"title": "Supplying and Installation of Top Ventilated Greenhouse (9.6x20) 192 Sqr.m.",
"procuring_entity": "Floriculture Association Nepal (FAN)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 12:18"
},
{
"rfp_no": "DROHTD/337335-4/074-75/IFB06/33",
"title": "Road Construction Works and Improvement Works on Chainpur Buniyad Prastauka Kalaiya Sadak, Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROHTD/337355-4/074-75/IFB06/32",
"title": "Road Construction Works and Improvement Works on Parsa Border Bahuari Bara Border Gamhariya Benauli Chowk Rautahat Border Road (F207)",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROHTD/307108-4/074-75/IFB06/36",
"title": "Road Construction Works on Nepal Shalimar Cement Mining access Road, Makwanpur",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROHTD/337355-4/074-75/IFB06/35",
"title": "Road Construction and Improvement Works on Nijgadh Hanumanganj Khaira Road (F205), Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROHTD/337354-4/074-75/IFB06/34",
"title": "Road Construction and Improvement Works on Basatpur Kathariya Kawahigoth Pipdari Patrahati Padam Road, Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROHTD/307108-4/074-75/IFB06/37",
"title": "Road Construction Works on Hetauda Cement Mining access Road, Makwanpur",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "NIRTTP/PCO/NITDB/W/NCB-62",
"title": "Construction of Kathmandu ICD/CFS(Part B-Office and Quarter) NIRTTP/PCO/NITDB/W/NCB-62",
"procuring_entity": "Nepal Intermodal Transport Development Board",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 05:00"
},
{
"rfp_no": "6/2074-75",
"title": "Construction of Canal Syphon at Kajauli Village of Chandra Nahar System",
"procuring_entity": "Koshi Pump Chandra Nahar Irrigation Management Division",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "8/2074-75",
"title": "Construction of LD-Syphon, Village Road Bridges and Canal Lining etc. at Subba-tole, Badhhara and Purano Hanumannagar of Chandra Nahar System.",
"procuring_entity": "Koshi Pump Chandra Nahar Irrigation Management Division",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "DOA-82/074/075",
"title": "Reconstruction work of Ranibasmath, Simraungadh, Bara",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 06:00"
},
{
"rfp_no": "NCB/QCRB-2-074/075",
"title": "Construction of Quarters, Canteen, Dormitory, Guest House, Mortuary Buildings, Road, River Training and allied works at Geta, Kailali (NCB/QCRB-2-074/075)",
"procuring_entity": "Medical College Infrastructure Construction Development Committee",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "DOA-86/074/075",
"title": "Reconstruction work of Yagashala, Swargadwari, Pyuthan",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 06:00"
},
{
"rfp_no": "NCB/01/074/75",
"title": "To Complete Under-Construction Office Quarter of Rajbiraj Municipality",
"procuring_entity": "Office of Rajbiraj Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "NCB/01/074/075",
"title": "Office compound upgrading work and shed construction for vehicle parking of Rajbiraj Municipality",
"procuring_entity": "Office of Rajbiraj Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "074/75/12",
"title": "Supply of Copper sheet",
"procuring_entity": "Sundarijal Arsenal",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 00:10"
},
{
"rfp_no": "NCB/02/074/075",
"title": "Construction of Nagar Sabha Hall on existing Shopping complex of Rajbiraj Municipality",
"procuring_entity": "Office of Rajbiraj Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "NCB/03/074/075",
"title": "Construction of Sahid Gate and completion of under-construction Sahid Smarak &amp; premises, Rajbiraj Municipality",
"procuring_entity": "Office of Rajbiraj Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "06-mun-2074-75/ST",
"title": "Solar Street Light",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 15:00"
},
{
"rfp_no": "074/75/13",
"title": "Supply of Brass sheet, Brass wire and Medal box",
"procuring_entity": "Sundarijal Arsenal",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 00:10"
},
{
"rfp_no": "DOA-83/074/075",
"title": "Reconstruction work of Mahadev Temple, Tokha Tapalachhi, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 06:00"
},
{
"rfp_no": "DOA-84/74/075",
"title": "Reconstruction work of Chandeshwori Muskaneshwor Mahadev Temple, Tokha Chnadeshwori, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 06:00"
},
{
"rfp_no": "DOA-85/074/075",
"title": "Reconstruction work of Narayan Temple, Tokha Tapalachhi, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 06:00"
},
{
"rfp_no": "07-mun-2074-75/RT",
"title": "Jhimruk River Training Works ( Tikuri Bus park)",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 15:00"
},
{
"rfp_no": "DCC/Nuwakot/Goods/NCB/01/074-075",
"title": "PROCUREMENT OF FABRICATION PACKAGE",
"procuring_entity": "District Technical Office, Nuwakot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "03-04-2018 06:00"
},
{
"rfp_no": "24/074/75 wssdo kanchanpur.",
"title": "R.C.C. Over Head Tank 225 Cum of Mauriphanta Water Supply and Sanitation Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "25/074/75 WSSDO Kanchanpur.",
"title": "R.C.C. Over Head Tank 225 Cum,Koiralbojhiya Malubela Water Supply and Sanitation Project.",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "26/074/75 WSSDO Kanchanpur",
"title": "R.C.C. Over Head Tank 225 Cum,Baisebichawa Water Supply and Sanitation Project.",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "27/074/75 WSSDO Kanchanpur.",
"title": "R.C.C. Over Head Tank 225 Cum,Ramnagar Water Supply and Sanitation Project.",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "28/074/75 WSSDO Kanchanpur.",
"title": "Overhead R.C.C. Water Tank - 450 cum,Bani Water Supply Project.",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "05/074/075",
"title": "Construction of Jawan line,Jawan Kitchen Dining and 10 setter toilet and bathroom.",
"procuring_entity": "EASTERN DIVISION HQ",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "MOS/NSC/Birgunj/Works/NCB-02/074-075",
"title": "Boundary Wall Construction Of Narayani Stadium, Birgunj,Parsa",
"procuring_entity": "Madhyamanchal Regional Sport Development Committee",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "KTFT/NCB/GOODS/BAILEY BRIDGE/2074/75-1",
"title": "Supply of Bailey Bridge",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "DROBKT/07-051/2074/075",
"title": "Construction of 4-webbed Prestressed RCC Bridge(1x35m).Arniko Rajmarga - Dadhikot Road over Hanumante Khola(Mahadev Khola) , Bhaktapur.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 22:00"
},
{
"rfp_no": "MG/W/NCB/BMO -01/2074-75",
"title": "Sagun Marga (Satkholwa-Belbhar) Road Project(Ch.0+000-3+360)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 15:00"
},
{
"rfp_no": "MG/W/NCB/BMO -04/2074-75",
"title": "MohanMarga(Tarkapur to Belbhar)RoadConstruction Project(Ch.0+000- 3+240)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 15:00"
},
{
"rfp_no": "MG/W/NCB/BMO -05/2074-75",
"title": "Rampur to Shaktinagar Road Construction Project(Ch.0+000- 2+900)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 15:00"
},
{
"rfp_no": "MG/W/NCB/BMO -06/2074-75",
"title": "Ruplal Marga (Aauri- Sonpur)RoadConstruction) Project(Ch.0+000- 1+600)KM.",
"procuring_entity": "Barbardiya Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 15:00"
},
{
"rfp_no": "BPKIHS/074/075/021",
"title": "Medicine and Surgical Items",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "02-04-2018 11:00"
},
{
"rfp_no": "13/074/075/Butwal",
"title": "Supply of Gabion Box",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "02-04-2018 00:00"
},
{
"rfp_no": "MIDHLDNG/3371384/074/75-004",
"title": "Widening and Upgrading of road to Blacktop Standard, Kudu- jagatipur-Karki-Kanda-Jhapra-Thalaha Gad ,JajarkotCh- 0+000-17+000; MIDHLDNG/3371384/074/75-004",
"procuring_entity": "Pushpalal (MIDHILL) HIghway Project , Western Sector",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 05:00"
},
{
"rfp_no": "MIDHLDNG/3371384/074/75-005",
"title": "Widening and Upgrading of road to Blacktop Standard, Kudu- Jagatipur-Karki-Kanda-Jhapra-Thalaha Gad ,JajarkotCh- 17+000-35+500; MIDHLDNG/3371384/074/75-005",
"procuring_entity": "Pushpalal (MIDHILL) HIghway Project , Western Sector",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 05:00"
},
{
"rfp_no": "DoLIDAR/RCIP/NCB-03/2074/075",
"title": "Purchase and Delivery of 4WD Vehicle (SUV) in five(5) numbers to the project office at Ekantakuna, Lalitpur, Nepal",
"procuring_entity": "Rural Connectivity Improvement Project (RCIP), DoLIDAR",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 06:00"
},
{
"rfp_no": "EEAP/TAN/W/PDRF/01",
"title": "Upgrading of Bhimad Bhanumati Motor Marga (Bhim Bhairab Marga)",
"procuring_entity": "District Technical Office (DTO), Tanahu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "15/PLMC/074-075",
"title": "Construction of Shiva Statue and Shiva Museum at Pumdikot, Pokhara Lekhnath-22, Kaski",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "IDDJHAPA/01/074 -75",
"title": "Construction of Headworks, Canal and Canal Strucutres of Aduwa Khola Irrigation Project, Barhadashi Rural Municipality-5, Jhapa",
"procuring_entity": "Irrigation Development Division, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-03-2018 00:00"
},
{
"rfp_no": "PPO-2no's/R/Sap/074-75-07",
"title": "Construction works of SP Quarter at DPO Saptari, Rajbiraj.",
"procuring_entity": "District Police Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 00:00"
},
{
"rfp_no": "IDD/STMSBK-MIP/NCB-01/074-075",
"title": "Construction of headwork, Canal and canal structures of Kanchaniya ISP, Maharajgung Kapilvastu.",
"procuring_entity": "Irrigation Development Division Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 06:00"
},
{
"rfp_no": "25/074-75",
"title": "Construction of ward office building",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 10:00"
},
{
"rfp_no": "RMUN/02/074/75",
"title": "Construction of Rural Municipal Office Building (Stone Masonry in Mud Mortar)",
"procuring_entity": "Rawa Besi Rural Municipality, Office of the Rural Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "08-074-075",
"title": "Construction and Improvement of Public Dias at Patan",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "NCB/02/CTP/2074/75",
"title": "Fabrication, Transportation, Construction and Errection of Kandra Pahalwan Trail Bridge in Construction Turnkey Package",
"procuring_entity": "Bhajani Municipality, Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "SUN/NCB/24",
"title": "Boundary Wall Construction Of Sunwal Municipality Office",
"procuring_entity": "Sunwal Municipality Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "26/074-75",
"title": "Construction of Ward Office at Tilottama-13, Tikuligadh",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 10:00"
},
{
"rfp_no": "27/074-75",
"title": "Construction of Ward office building at tilottama-16, Madhauliya",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "5/2074/75",
"title": "construction of municipality building",
"procuring_entity": "Waling Municipality, Office of Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 12:28"
},
{
"rfp_no": "waling- 4/2074/075",
"title": "Health center Ahgadi sadak, health center chok daykhi Bhumre chock and 1 no ward office road maintenance",
"procuring_entity": "Waling Municipality, Office of Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 12:00"
},
{
"rfp_no": "38/PLMC/NCB/G/074-075",
"title": "Procurement and Supply of Fabricated Steel Parts for Bhunge Khola ST Bridge",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "01-04-2018 07:00"
},
{
"rfp_no": "01/CIAA SURKHET/ NCB/ 074-75",
"title": "Construction of office building of Commission for the Investigation of Abuse of Authority, Surkhet",
"procuring_entity": "DUDBC, DIVISION OFFICE, SURKHET",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/NCB/03/074/75",
"title": "Construction of Ward Office Building Godawari Municipality-04 Badikhel",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 06:00"
},
{
"rfp_no": "BRTW-01/2074-75",
"title": "Construction of Vertical Revetment with Studs and Launching Apron at Bheri River in Thuli Bheri Municipality-3 Dunai, Dolpa",
"procuring_entity": "Water Induced Disaster Management Sub Division Office No. 2, Dolpa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-03-2018 10:00"
},
{
"rfp_no": "DOTM/G/eNCB-1/2074/75",
"title": "Supply and Delivery of IT equipments",
"procuring_entity": "Department of Transport Management",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 05:00"
},
{
"rfp_no": "DoC/NCB/Goods/05-074",
"title": "Supply, Delivery and Installation of AAS at Department of Customs, Tripureshwor",
"procuring_entity": "Department of Customs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 15:00"
},
{
"rfp_no": "DoC/NCB/Goods_03_074/75",
"title": "Supply, Delivery and Installation of Optical Microscope Set at Department of Customs, Tripureshwor",
"procuring_entity": "Department of Customs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 15:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/01/River Training/ 074-75",
"title": "River Training work at west end (Khahare Khola) and other associated works",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "15-03-2018 00:00"
},
{
"rfp_no": "NPA/NCB/G/2074/075-03",
"title": "Purchase of Generator",
"procuring_entity": "National Police Academy , Maharajgung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 12:00"
},
{
"rfp_no": "10/DROBRT/3371574/2074/75-30",
"title": "Construction of Prestressed Girder RCC Bridge in Altai Holi Bridge, Larikatta Damra bhitta Road, Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "PCU-08/074/75",
"title": "Construction of Temma Health Post Building at Khotang District (Type-4HP, Stone Masonry- Load Bearing Structure)",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "10/DROBRT/3371574/2074/75-33",
"title": "Construction Of Two Webbed RCC Deck Slab Bridge in Fufrighat Bridge, Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "DoC/ NCB/Goods_04-074/75",
"title": "Supply, Delivery and Installation of UV Visible Spectrophotometer at Department of Customs, Tripureshwor",
"procuring_entity": "Department of Customs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-03-2018 15:00"
},
{
"rfp_no": "PCU-09/074/75",
"title": "Construction of Two Health Post Building (Dubekol HP &amp; Sapteshwor HP ) at Khotang District ( Type-4 HP , Stone Masonry-Load Bearing Structure)",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "10/DROBRT/3371574/2074/75-31",
"title": "Construction Of Two Webbed Pre Stressed Bridge in Dattkichha Khola Bridge, Dumaraha-6, Inaruwa Na. Pa. , Sunsari",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "10/DROBRT/3371653/2074/75-32",
"title": "Construction Of Multicell RCC Bridge in Gobindpur-7, Sigadi- Arubari-Mahadev Road ,Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "08-DROPLP-2074/75 (025)",
"title": "Landslide Clearance and Gabion Works at Siddhartha Highway [Siddhababa Section], Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "08-DROPLP-2074/75 (026)",
"title": "Pothole Repair and Maintenance Works at Siddhartha Highway [Chidiyakhola- Jhumsa Sector]",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "30-03-2018 11:56"
},
{
"rfp_no": "DOHS/G/SQ-55/EDCD/2074/075",
"title": "Procurement of Tab Miltefosin-6000 Tab",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "074/075-3",
"title": "Construction of Ticket Counter and Asphalt Concrete at Kohalpur Bus Park",
"procuring_entity": "Kohalpur Town Development Committee, Kohalpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 12:00"
},
{
"rfp_no": "BIP-01/074/075",
"title": "Construction of Western Main Canal System from Ch 23+220 to Ch 28+390 with associated structures",
"procuring_entity": "Babai Irrigation Project, bardiya",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "30-03-2018 17:30"
},
{
"rfp_no": "6/DHM/074-75",
"title": "Construction of Access Road and Office Building for Radar Station at Ribdikot, Palpa",
"procuring_entity": "Department of Hydrology & Meteorology",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 19:00"
},
{
"rfp_no": "7/DHM/074-75",
"title": "Construction of Access Road and Office Building for Radar Station at Chitre Danda, Udayapur",
"procuring_entity": "Department of Hydrology & Meteorology",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 19:00"
},
{
"rfp_no": "05/cons/2074/75",
"title": "COnstruction of Solnasakhola Bailey Bridge",
"procuring_entity": "Solududhkunda Municipality , Salleri Solukhumbu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "10-074/75(1)",
"title": "Blacktop Works &amp; Hume pipe culvert construction Works on Meghauli-Jagatpur Road ,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(2)",
"title": "Blacktop Works, Drain construction &amp; Hume pipe culvert construction Works on Chitrawan Nayabazzar Bhimnagar School Road ,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(3)",
"title": "Blacktop Works on Sharadanagar Healthpost-Chandra nagar Bagaicha Hudai Surya nagar Road ,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(4)",
"title": "Blacktop Works &amp; Hume pipe culvert construction Works on Chanauli Bazzar -Amrit Chowk Dhruba Chowk Jagatpur Hudai Rapti Pul Niskine Road ,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(5)",
"title": "Extension and primix overlay works on Aaptari Devghat Road , Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(6)",
"title": "Recurrent Maintenance Works on Mahendra Rajmarga ( Lothar -Narayanghat CH 454+000 to 472+000).",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(7)",
"title": "Recurrent Maintenance Works on Mahendra Rajmarga ( Lothar -Narayanghat CH 436+000 to 454+000)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(8)",
"title": "Recurrent Maintenance Works on Hulaki Rajmarga (Bharatpur-Madi-Thori Road), Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(9)",
"title": "Blacktop works on Thakali chowk -Magarkot-Meghauli sadak, Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "10-074/75(10)",
"title": "Roadway Excavation &amp; Structure work on Dasdhunga - Devghat Road",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "GoN/AQO/NCB 01-074/75",
"title": "Finishing work of Animal Quarantine Office",
"procuring_entity": "Animal Quarantine Office, Kathmandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "EEAP/KAK/01",
"title": "Hemja-KhanepaniMuhan-Lumre-Sidhing Road(Ch 0+000 to 15 +900)",
"procuring_entity": "District Technical Office, Kaski",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 21:00"
},
{
"rfp_no": "HMUN-VP-074/75-03",
"title": "Supply and Delivery of two numbers of Hydraulic Tipper (min. 7.5 cum)",
"procuring_entity": "Hetauda Sub-Metropolitain City",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 10:00"
},
{
"rfp_no": "EEAP/OKH/W/PDRF/01",
"title": "Reconstruction and Rehabilitation Of Okhaldhunga - Rampur- Harkhapur- Lapsekhola Road Sub Project",
"procuring_entity": "District Technical Office (DTO), Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 15:00"
},
{
"rfp_no": "MoFALD/ EEAP/DHA/W/PDRF/01/2074-75",
"title": "Reconstruction and Rehabilation of Dhadingbesi-Bharengbhurung-Semjonz Road(21.23 KM ), Dhading",
"procuring_entity": "District Technical Office, Dhading",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 13:15"
},
{
"rfp_no": "MoFALD/EEAP/GOR/W/NCB/PDRF/1-2074/075",
"title": "Reconstruction and Rehabilitation of Drabya Shah Sadak Khanda (Nayagaun-Bhachek-Sirandanda: 13.86Km)",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 13:20"
},
{
"rfp_no": "PDRF/1/2074/75",
"title": "Reconstruction and Rehabilitation of Mirmi Waigha Ridi Rural Road Contract identification number MoFALD/EEAP/SYA/W/NCB/PDRF/1/2074/75.",
"procuring_entity": "District Technical Office (DTO), Syangja",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 14:00"
},
{
"rfp_no": "EEAP/NUK/W/PDRF/01",
"title": "Reconstruction and Rehabilitation of Gerkhutaar- Chokade- Road construction",
"procuring_entity": "District Technical Office, Nuwakot",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 16:15"
},
{
"rfp_no": "DUDBC/Parsa/2074-075-NCB-18 .",
"title": "Landscaping Works of Nepal-India Border Integrated Check Post Birgunj",
"procuring_entity": "DUDBC, DIVISION OFFICE PARSA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Rupandehi/03/074/75",
"title": "Road and drainage work from Naya mill chowk to Tinau river through 10 No. chowk in Tilottama municipality, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandehi/03/74/75",
"title": "Road Upgrading of Nayamill chowk-Pramnager chowk-wagle chowk-devdaha chowk in Tilottama municipality, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 20:00"
},
{
"rfp_no": "DUDBC/Rupandeh/03/074/75",
"title": "Black Top Road Construction in Butwan Sub metropolitan city from Tapaha chowk-to Janakpur through Ranibari chowk, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "14-03-2018 12:00"
},
{
"rfp_no": "DUDBC/Rupandehi/03/074/075",
"title": "Construction of Black Top Road in Tilotama Mun -12 from Makrahar chowk to east of Royal Agriculture pvt Ltd, Rupandehi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "14-03-2018 12:00"
},
{
"rfp_no": "NTPO/Khurkot/04-074/75",
"title": "Construction of Road, Footrail and Drain at Khurkot Main Bazar Area",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "14-03-2018 22:00"
},
{
"rfp_no": "NTPO/Khurkot/05-074/75",
"title": "Construction of Footpath and Drain in Khurkot Bazzar (Mathilobara) , Khurkot,Sindhuli",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "14-03-2018 12:00"
},
{
"rfp_no": "IFB No.HIB/G/NCB/2074-75/06",
"title": "Supply and Delivery of Laptop Computer",
"procuring_entity": "Health Insurance Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 11:00"
},
{
"rfp_no": "H 899 NP",
"title": "Periodic maintenance of roads, drainage, and off-road structures Nanupatti-Harbara-Bafai-Duhabi Road from CH 0+000 to CH 13+780",
"procuring_entity": "District Technical Office (DTO), Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 14:30"
},
{
"rfp_no": "04-074/75",
"title": "Rajapur Bus park Construction Works, Bardiya",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 19:00"
},
{
"rfp_no": "SNRTP-DHAN-W-NCB-7-20-PM-074-75",
"title": "Periodic maintenance of roads, drainage, and off-road structures Bisharbhora-Dubarkot-Hathletwa-Ekrahi-Thadi Road (CH 0+000 to CH 13+000)",
"procuring_entity": "District Technical Office (DTO), Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 14:30"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-07",
"title": "Blacktopped Road and Drain Construction Work Devkota Marg, Nepalgunj",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 19:00"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-08",
"title": "Blacktopped Road and Drain Construction Work bypass Road Nepalgunj",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 19:00"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-09",
"title": "Blacktopped Road and Drain Construction Work Aananda Marga, Nepalgunj",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 19:00"
},
{
"rfp_no": "Padt/2074-075/Goods/T4",
"title": "Procurement of Supply and Delivery of Four Wheel Drive Jeep (SUV)",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "07/CONS/2074/75",
"title": "Construction of Solukhola Bailey Bridge",
"procuring_entity": "Solududhkunda Municipality , Salleri Solukhumbu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "PDRF-39/074/075",
"title": "Reconstruction work of Rameshwor Mahadev Temple, Phasku-01,Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "PDRF-40/074/075",
"title": "Construction Works of Pati at Kapileshwor Mahadev,Kabilash, Nuwakot.",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "PDRF- 42/074/075",
"title": "Reconstruction Works of Pati and Structure for Placing 64 Linga,Baitarnidham, Mahankal-3, Lalitpur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "PDRF-43/074/075",
"title": "Reconstruction Works of Sattal at Westside of Ram Mandir,Battisputali, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "BAPIDP-DSC-001",
"title": "Procurement of Design and Supervision Consulting Services",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "30-03-2018 00:00"
},
{
"rfp_no": "PDRF-45/074/075",
"title": "Reconstruction Works of Bhimsen Temple, Makawanpur, Chitlang",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "PDRF-46/074/075",
"title": "Reconstruction Works of Nanak Math,Maiphee,Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "06/CONS/2074/75",
"title": "Construction of Lodhingkhola Bailey Bridge",
"procuring_entity": "Solududhkunda Municipality , Salleri Solukhumbu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 00:00"
},
{
"rfp_no": "PDRF 44/074/075",
"title": "Reconstruction Work of Namobuddha Temple and Sattal",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-03-2018 06:00"
},
{
"rfp_no": "NCB-4/Works/LawnPokhara-74/75",
"title": "Construction of Lawn Tennis Court and Changing Room at Pokhara Rangasala.",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "01/CIAA Bardibas/NCB/074-75",
"title": "Office Building Construction of Commission for the Investigation of Abuse of Authority",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "CAAN/AED/Bir/Apron/074-75/16",
"title": "Expansion of Apron, Taxiway and Associated Works at Biratnagar Airport, Biratnagar",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:01"
},
{
"rfp_no": "CAAN/AED/Pkr/Slurry/074-75/17",
"title": "Slurry Sealing of Runway, Taxiway, Apron and Other Associated Works at Pokhara Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:01"
},
{
"rfp_no": "CAAN/AED/BDP/Apron/074-75/18",
"title": "Construction of Apron Extension and Fire access Road at Chandragadhi Airport, Jhapa.",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:01"
},
{
"rfp_no": "1/2074-075",
"title": "Road Maintenance Work (Lahare pipal, Taksar Turning, Nishandhara, Shitalpati, JVT Mathillo Gate, Sent Capitanio School, Kailashnagar Chock to Batase Road Tansen Ward No.3 and 5)",
"procuring_entity": "Tansen Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "STMSBK/3/2074/75",
"title": "Construction of Head work, Canal and Canal structures of Kanchanban Irrigation Project, Hariharpur Harinmari Mahottari",
"procuring_entity": "I D D Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "/2074-075",
"title": "Supply and Fabrication of Electrical Folding Steel Pole at Tansen Municipality office",
"procuring_entity": "Tansen Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "3/2074-075",
"title": "Road Construction and Maintenance Work (Gorkhekot to Chilangdi M R )",
"procuring_entity": "Tansen Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "NCB/P4/DPOGRK/074-75/02",
"title": "Re-Construction of Office/Barrack, Mess, Toilet, Septic Tank, Soak Pit, Water Tank and Retaining Wall at Temporary Police Police Post Chanaute, GORKHA",
"procuring_entity": "District Police Office Gorkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 04:00"
},
{
"rfp_no": "7-DROMNR/074/75-019",
"title": "Construction of Cross Drainage Structures along Chandanchauki-Fulbari-Chaumala MRM Road (Km 0+000-Km 14+000), Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 12:00"
},
{
"rfp_no": "CAAN/AED/RHP/River Training /074-75/20",
"title": "Construction of River Training Works (Gabion Structures) at Ramechhap Airport",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "CAAN/AED/BHR/Fencing/074-75/19",
"title": "Construction of Chainlink Fencing and Other Associated Works",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "7-DROMNR/074/75-020",
"title": "Improvement of Tikapur-Dundejhari-MRM Road Near APF Base CAMP &amp; United School Tikapur Bazaar, Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 14:00"
},
{
"rfp_no": "DLS/G/NCB/2074/75/1/P1",
"title": "Supply and Delivery of Burdizzo Castrator",
"procuring_entity": "Department of Livestock Service",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 10:00"
},
{
"rfp_no": "DLS/G/NCB/2074/75/01/P2",
"title": "Supply and Delivery of Surgical and Post Mortem Set",
"procuring_entity": "Department of Livestock Service",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 10:00"
},
{
"rfp_no": "DLS/G/NCB/2074/75/01/P3",
"title": "Supply and Delivery of Binocular Microscope and Centrifuge",
"procuring_entity": "Department of Livestock Service",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "13-03-2018 10:00"
},
{
"rfp_no": "Qms-005/2074/75",
"title": "Purchase of Queue management System for different branches of nepal bank limited",
"procuring_entity": "Nepal Bank Limited",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 18:00"
},
{
"rfp_no": "Metro/Bhr/W/SQ/4/074/075",
"title": "Culvert Extension and Maintenance,Bharatpur Metropolitan City Ward No.6,Repair &amp; Extension of VRB Khageri M/C(Ch.9+996 Km),Chitwan",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-03-2018 07:00"
},
{
"rfp_no": "DROBLG/3371574/074-75/9",
"title": "Construction of Myagdi Khola Motorable Pakki Bridge at Arman-6, Mashanghat (2*40 m)",
"procuring_entity": "303 Division Road Office Baglung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "RJKIP/SCP/NCB-03/074/075",
"title": "Supplying and Stacking of Barbed Wire &amp; Simple RCC Concrete Pole for Fencing Work at Project Office,Tikapur,Kailali",
"procuring_entity": "Rani Jamara Kulariya Irrigation Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "DOA-78/074/075",
"title": "Reconstruction work of Kailas Ashram Shiva Temple",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 06:00"
},
{
"rfp_no": "DOA-79/074/075",
"title": "Reconstruction work of shiva Mandir, Murtiya",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 06:00"
},
{
"rfp_no": "31/074-75",
"title": "Construction of Municipality office Building",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "DROBLG/3371574/074-75/10",
"title": "Construction of Modi Khola Bridge, Jhuka-Serabesi-Nayapul-Pokhara Sadakko Jhuka Deuraali, Parbat ra Salyan V.D.C. ka bich maa parne pul (2*30 m)",
"procuring_entity": "303 Division Road Office Baglung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "SNRTP/BAR/W/NCB/3.07/PM/074/075",
"title": "Scarification of Exiting Sub Base and Laying,Spreading and Compaction of Sub base and Bridge maintenance,RCC work.",
"procuring_entity": "District Technical Office (DTO), Bara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "DTO/Kavre/02/2074-75",
"title": "Construction of Retaining wall &amp; Rigid Pavement of Dolalghat-Phalate-Dhadakharka-Pokharichaur-Gurase Road",
"procuring_entity": "District Technical Office (DTO), Kavrepalanchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "DROCHT/3371574/074/75-018",
"title": "Construction of RCC Bridge over Bhasme Khola, along Kabre and Majuwa, Dolakha",
"procuring_entity": "201 Division Road Office Charikot",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "DROCHT/3371574/074/75-019",
"title": "Construction of RCC Bridge over Charnawati Gaighat along 21 Kilo Kirati Chap road, Dolakha",
"procuring_entity": "201 Division Road Office Charikot",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "DROBLG/3371574/074/75/11",
"title": "Construction of Ambot Khola Bridge at Parbat (25 m)",
"procuring_entity": "303 Division Road Office Baglung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "NCB/05/074/75",
"title": "Construction of Shutter Room with Compound wall Wada office Darbesha,Rangeli-8",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "SRRP/2-01/074-75",
"title": "Construction of Prestressed bridge over Aayaradi gad along Seti Rajmarg",
"procuring_entity": "Seti Highway (Southern Section) Tikapur-Lode-Chainpur Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "SNRTP-DTO-01/074-75",
"title": "Periodic Maintenance of Geta-Baskheda-Murkatii Road",
"procuring_entity": "District Coordination Committee Office, kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "SRRP/2-02/074-75",
"title": "Construction of Prestressed bridge over Kali Pachhai river along Seti Rajmarg",
"procuring_entity": "Seti Highway (Southern Section) Tikapur-Lode-Chainpur Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "SRRP/2-03/074-75",
"title": "Construction of Prestressed bridge over Bidi gad along Seti Rajmarg",
"procuring_entity": "Seti Highway (Southern Section) Tikapur-Lode-Chainpur Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "NCB-01/2074/75",
"title": "Supply and Delivery Of Bach Hoe Lodder",
"procuring_entity": "Haripur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "NCB-02/2074/75",
"title": "Supply and Delivary Of Hydraulik Excavator",
"procuring_entity": "Haripur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "IFB No.:NCB-3/works/lawn- 74/75",
"title": "Construction of Lawn Tennis Hard Court At Satdobato, Lalitpur",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 20:00"
},
{
"rfp_no": "NCB-03/2074/75",
"title": "SUPPLY AND DELIVERY OF TIPPER (7.5 CUB. MTR.)",
"procuring_entity": "Haripur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "NCB-04/2074/75",
"title": "SUPPLY AND DELIVERY OF TIPPER (5 CUB. MTR.)",
"procuring_entity": "Haripur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "1-74/75",
"title": "Supply and delivery of 1 unit Backhoe loader(92HP)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "NCB/06/074/75",
"title": "Construction of Blacktop road with drain Shukrabare Teldipu Road Rangeli-7,Morang",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "05/2074/75",
"title": "SUPPLY AND DELIVERY OF HARDTOP JEEP",
"procuring_entity": "Haripur Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "DLPIU/KTM/NCB WORKS-BID-01-074/75",
"title": "DLPIU/KTM/NCB Works-Bid-01-074/075, Construction of New Office Building for Directorate of Fisheries Development, Balaju, Kathmandu",
"procuring_entity": "District Level Project Implementation Unit-(MoUD)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 04:00"
},
{
"rfp_no": "2-74/75",
"title": "Supply and delivery of Single drum vibrating roller(114HP)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "3-74/75",
"title": "Supply and delivery of Tripper (5800 cc)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "4-74/75",
"title": "Supply and delivery of 4 WD hard top jeep Ambulance(2000CC+-5%)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "5-74/75",
"title": "Supply and delivery of tractor with hydraulic trailer(39 HP)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "6-74/75",
"title": "Supply and delivery of 8 Unit Motorcycle(150 CC +-1%)",
"procuring_entity": "Paroha Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "PHQ/G/NCB/2074-75/35",
"title": "Supply and Delivery of Mattress",
"procuring_entity": "Nepal Police Headquarter Procurememt Section, Naxal",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "04/KRM/Banke/074/075",
"title": "Cancer Aspatal ko Bato Tatha Nala Nirman Karya",
"procuring_entity": "Khajura Rural Municipality,Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 18:00"
},
{
"rfp_no": "08-074-75/055",
"title": "Improvement of Shri Shanti Marg-1, Shankhamul",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 19:00"
},
{
"rfp_no": "08-074-75/056",
"title": "Improvement of Budhanilkatha East Tailung School Deuba Chowk Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 22:00"
},
{
"rfp_no": "08-074-75/057",
"title": "Road extension and improvement of Gaurighat Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 22:00"
},
{
"rfp_no": "08-074-75/058",
"title": "Construction of pipe culvert and approach road at Budhanilkantha 3 Chapali Health Center Mathillo Bhangal",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 23:00"
},
{
"rfp_no": "08-074-75/059",
"title": "Road extension and improvement of Sattale Milanchowk Aani Gumba West Kapan Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 23:59"
},
{
"rfp_no": "08-074-75/060",
"title": "Road extension and improvement of Jaybhadrakali Taulung School to Deuwa Niwas Bu.Na.Pa. 3 Samudayik Bhawan Kalikamarg Sapredhunga",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 23:59"
},
{
"rfp_no": "3-074/75 Works",
"title": "PCC Road and Drain Maintenance Work at Janakpur-4, From House of Indrakumar Lal Karn to House of Chandra kamati &amp; biman Path",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "7-074/75 Works",
"title": "PCC Road and Drain Maintenance Work at Janakpur-11, From house of Kishori Sah House To Siksha Niketan",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "9-074/75 Works",
"title": "Earthen/Gravel Road Maintenace Work at Janakpur-17, Kanakpati salesh Mandir to Kanakpati Bajar",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "27-03-2018 10:00"
},
{
"rfp_no": "DOHS/G/ICB-46/PHCRD/2074-75",
"title": "Procurement of Equipment for Non Communicable diseases",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "06-02-2018 00:00"
},
{
"rfp_no": "MIP/01/074/75",
"title": "Ladki Khola ISP",
"procuring_entity": "Irrigation Development Division, Dolakha",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "MIP/02/074/75",
"title": "Bhurunga Khola ISP",
"procuring_entity": "Irrigation Development Division, Dolakha",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/21/2074/75",
"title": "Rotable Melamine Items for NAC In-flight Service for F/Y 2074/75",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 10:00"
},
{
"rfp_no": "01/2074- 075",
"title": "Construction and upgrading of roads and drainage in Rangeli, Morang",
"procuring_entity": "DUDBC, DIVISION OFFICE, MORANG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "6/074/075",
"title": "Construction of Black Topped Gedepani-Teghari sadak",
"procuring_entity": "Godawari Municipality, Attariya Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "21/074-75/WSSDO/Rupandehi",
"title": "Construction of Sewerage and Treatment Plant in Murgiya, Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "RJKIP/RT/NCB-04/074/075",
"title": "Command Area Protection (CAP) Work-Patharaiya River,Bhajani N.P.-8,Uttarpur",
"procuring_entity": "Rani Jamara Kulariya Irrigation Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 10:00"
},
{
"rfp_no": "7/074/075",
"title": "Black topped road construction mahendrajmarg -binary school -baskota road",
"procuring_entity": "Godawari Municipality, Attariya Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "01 /2074-075",
"title": "Road,drain improvement work at Dharan,Sunsari",
"procuring_entity": "DUDBC, DIVISION OFFICE, MORANG",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "CIAA/HTD/NCB/02-074/075",
"title": "Construction of Boundary wall, Guard Post, Interlock Pavement &amp; Motor Garage",
"procuring_entity": "Office of Commission for the Investigation of Abuse of Authority, Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "24\\074-75/WSSDO Rupandehi",
"title": "Construction of OHT 225 Cum in Balapur, Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "23/074-75/WSSDO/Rupandehi",
"title": "Construction of OHT 450 cum., Pump House and Compound Wall in Mayadevi, Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "22/074-75/WSSDO/Rupandehi",
"title": "Construction of OHT 450 cum, Pump House and Compound Wall in Murgiya, Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "25/074-75/WSSDO/Rupandehi",
"title": "Construction of OHT 225 cum in Kotiyadevi, Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "26/074-75/WSSDO/Rupandehi",
"title": "Construction of OHT 225 cum in Lumbini Adarsa,Rupandehi",
"procuring_entity": "Water Supply and Sanitation Division Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "DROLTP-04-20/074/75",
"title": "Thermoplastic Road Marking",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Goods  NCB",
"status": "LOA Issued",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "PPO-2nos/R/Bara/074-75/06",
"title": "Construction of Mess Block at District police office, Bara (PPO-2no&amp;#65533;s/R/Bara/074-75/06)",
"procuring_entity": "District Police Office Bara",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "UN PARK/3/2074/75",
"title": "Universal toilet and wall plaster works",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "BBARMP/BRB/04/074-075",
"title": "Construction of Revetment &amp; Spur and Anti Flood Structure Contract No.: BBARMP/BRB/04/074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "SNRTP-SANK-W-NCB-32-01-PM-074-75/1",
"title": "Periodic Maintenance of Khandbari-Ramche-Lebrang-Dake-Barhabise Road(16.12 KM) including Maintenance of River Crossing structure.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sankhuwasabha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 06:00"
},
{
"rfp_no": "DGAO/Tehrathum/NCB/Works/01/074/75",
"title": "Construction of Jilla Sarakari Wakil Karyalaya",
"procuring_entity": "District Attorney Office, Tehrathum",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "NCB/UN PARK/4/2074/75",
"title": "Parking area, compound wall raising and walkway widening works at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "NCB/UN PARK/5/2074/75",
"title": "Landscaping and beautification work at Jwagal, Lalitpur",
"procuring_entity": "United Nation Park Development Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "BBARMP/BRB/06/074-075",
"title": "Construction of with Spurs and Revetment at Existing Embankment Contract No.: BBARMP/BRB/06/074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "BBARMP/BRB/07/2074-075",
"title": "Construction of Spurs and Revetment at Existing Embankment Contract No.: BBARMP/BRB/07/2074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "BBARMP/BRB/09/2074-075",
"title": "Construction of Spurs and Revetment at Existing Embankment Part Contract No.: BBARMP/BRB/09/074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "BBARMP/BRB/05/074-075",
"title": "Construction of Spurs and Revetment at Existing Earthen Embankment Contract no. BBARMP/BRB/05/074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "BBARMP/BRB/08/074-075",
"title": "Construction of Spurs and Revetment Contract no. BBARMP/BRB/08/074-075",
"procuring_entity": "Babai Bhada Aaurahi River Management Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 15:00"
},
{
"rfp_no": "N1SP/TAP-REG/074-75",
"title": "Construction of In-charge Quarter and Mess Block",
"procuring_entity": "District Police Office Taplejung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 11:00"
},
{
"rfp_no": "NCB-G4 /RNE/2074/075",
"title": "Supply, Delivery, Installation, Testing and Commissioning of Archiving and Digitization.",
"procuring_entity": "Radio Broadcasting Service, Radio Nepal",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 10:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/09/074/75",
"title": "Construction of Cold store Chisyankendar, Ward No. -5 Lele . Contract Identification No:- Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/09/074/75.",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/10/074/75.",
"title": "Construction of Godawari Municipality-11 Ward office (kushlechaur )construction works. Contract Identification No:- Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/10/074/75.",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/11/074/75.",
"title": "Construction of Panggau Ghuthi Building construction works. Contract Identification No:- Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/11/074/75.",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/13/074/75.",
"title": "Construction of Godawari Water supply Dam construction works. Contract Identification No:- Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/13/074/75.",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/12/074/75.",
"title": "Construction of Godawari kund preservation construction works. Contract Identification No:- Godawari Munic./Bajrabarahi, Lalitpur/ W/SQ/12/074/75.",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 06:00"
},
{
"rfp_no": "TSPRP/Notice/02-074/75",
"title": "Construction of Motorable Bridge over Tamghas Khola Linked Between Tamghas - 1 and 8.",
"procuring_entity": "Tamghas Simaltari Pyuthan Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 13:00"
},
{
"rfp_no": "12 /CW/2074/075",
"title": "Construction Of Ward No 1 Office Building",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 06:00"
},
{
"rfp_no": "11/CW/2074/075",
"title": "Construction Of Complex Building",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "14/CW/2074/075",
"title": "Construction Of Ward No 6 Office Building",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "15/CW/2074/075",
"title": "Construction Of Ward No 11 Office Building",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "13 /CW/2074/075",
"title": "Construction Of Ward No 2 Office building",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "16/CW/2074/075",
"title": "Gaibade-Kurmulle Road Maintence Works",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "17/CW/2074/075",
"title": "Installation Of Solar Street Light",
"procuring_entity": "Parshuram Municipality Office of Municipal Executive, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "01-GDS-KVDA-074/75",
"title": "Procurement of Supply and delivery of Compact SUV",
"procuring_entity": "Kathmandu Valley Development Authority (KVDA)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-03-2018 23:59"
},
{
"rfp_no": "2074-075 /01",
"title": "supply and delivery of hydraulic excavator with breaker.",
"procuring_entity": "Tripurasundari Municipality, Dolpa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "RTISWAp/DTO.-Jajarkot/NCB/W2/03/074-75",
"title": "Lamatara to Garkhakot VDC Link Roadway excavation work",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "25-03-2018 00:00"
},
{
"rfp_no": "RTISWAp/DTO-Jajarkot/NCB/W2/04/074-75",
"title": "Narmara to Kortang VDC Link Roadway excavation Work",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "RTISWAp/DTO-Jajarkot/NCB/W2/05/074-75",
"title": "Batule to Talegaun and Archhani VDC Link Roadway excavation work",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-03-2018 00:00"
},
{
"rfp_no": "PDRF-36/74/075",
"title": "Reconstruction work of Chandeswori MahdevTemple Chandesworisthan, Banepa",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "TENDER/NOC/ENGG/Kathmandu-01/2074-75",
"title": "Supply and Delivery of 27 KL Aircraft Refuellers and Spare Parts (ICB)",
"procuring_entity": "Nepal Oil Corporation Limited",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 10:00"
},
{
"rfp_no": "IFB No. NCASC /P-ARVD/01/074/75",
"title": "Procurement of ARV Medicine (Slice)",
"procuring_entity": "National Center for AIDS and STD Control",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "21-02-2018 23:00"
},
{
"rfp_no": "NCB/03/074/75",
"title": "Construction of Ist Floor office Building,Rangeli Morang",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-03-2018 00:00"
},
{
"rfp_no": "4/074/75",
"title": "Construction of Retaining Structure with gabion Boxes Place-Hodayang Kali to Nichamari Darbesha in Bakraha Khola",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-03-2018 00:00"
},
{
"rfp_no": "1-PM-SNRTP",
"title": "Periodic Maintenace of Dhangadhi-Patari-Jijhaul Road",
"procuring_entity": "District Technical Office (DTO), Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "2-PM/SNRTP",
"title": "Periodic Maintenace of Mirchaiya-Kalyanpur-Siraha Road",
"procuring_entity": "District Technical Office (DTO), Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "02/074-75/NWSSTC/DWSS",
"title": "Construction of Regional Wash Resource Centre in Lekhnath, Kaski",
"procuring_entity": "National Water Supply and Sanitation Training Centre",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "01/074-75/NWSSTC/DWSS",
"title": "Construction of Material Testing Lab Building in Nagarkot, Bhaktapur",
"procuring_entity": "National Water Supply and Sanitation Training Centre",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "09-03-2018 00:00"
},
{
"rfp_no": "SRM/ Ilam/Goods/NCB/01/074-075",
"title": "procurement and supply of electric pole, wire and accessories",
"procuring_entity": "Sandakpur Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-03-2018 10:00"
},
{
"rfp_no": "PDRF-32/074/075",
"title": "Reconstruction Work of Bajrayogini Basundhara Mai Temple Dyachhen, Sankhu Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "PDRF-34/074/075",
"title": "Reconstruction Work of Krishna Temple Dyachhen,Sankhu, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "PDRF-33/074/075",
"title": "Reconstruction Work of Bir Bhagwati Temple,Nagarjun, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "PDRF35/074/075",
"title": "Reconstruction Work of Charnawati Sattal, Phasku-01,Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "PDRF-37/074/075",
"title": "Reconstruction Work of Pati Sattal at Daha Area, Dahachowk,Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "PDRF-38/074/075",
"title": "Reconstruction work of Narbadeshwor Mahadev Mandir( Sattal), Narbadeshwor, Okhaldhunga",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 06:00"
},
{
"rfp_no": "OIRM-GUL-01-074/075",
"title": "Procurement of CGI Sheets for Office of Ishma Rural Municipality, Ishma Rajasthal, Gulmi",
"procuring_entity": "Office of Ishma Rural Municipality, Gulmi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/NCB-9/CHD/2074-75",
"title": "Procurement of Vaccine Carrier 3.0 to 3.4 lt -2000 with Ice Pack 4000",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/NCB-35/LMD/2074/075",
"title": "Procurement of Transformer 300 KVA (3 Unit)",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "AEPC/WESC/NCB/2074/75-02",
"title": "Design, Supply, Delivery, Installation, Testing and Commissioning of 25kW Wind-Solar Hybrid System at Mityal, Palpa District, Nepal",
"procuring_entity": "Alternative Energy Promation Centre",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 18:11"
},
{
"rfp_no": "Padt/2074-075/Goods/T02",
"title": "suply of worship goods for shree pashupatinath and Vasuki mandir (goods for daily worship and special offering)",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "SNRTP-KAN-W-NCB-10.08-PM-073-074",
"title": "Bansamati-Pipladi-Jonapuri Rural Road.",
"procuring_entity": "Office of District Coordination Committee (ODCC) Kanchanpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 06:00"
},
{
"rfp_no": "09-074/75(1)",
"title": "Recurrent Maintenance works on Tribhuvan Rajpath (Piplamode-Naubise-Sopyang District Border)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(2)",
"title": "Recurrent Maintenance works on Malekhu-Dhadingbesi",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(3)",
"title": "Recurrent Maintenance works on Prithivi Rajmarg (Galchhi-Trisuli Bridge)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(4)",
"title": "Recurrent Maintenance works on Prithivi Rajmarg (Trisuli Bridge- Mowakhola)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(5)",
"title": "Specific works in PRM, TRP and Malekhu Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(6)",
"title": "Recurrent Maintenance works on Prithivi Rajmarg (Naubise -Galchhi)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(7)",
"title": "Kanchanjunga Cement Factory approach Road, Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/02/074/75",
"title": "Construction of Tumlingtar Health post, Sankhuwasava",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/03/074/75",
"title": "Construction of Aankhisalla Health post, Dhankuta",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/04/074/75",
"title": "Construction of Sudap Health post, Tehrathum",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/05/074/75",
"title": "Construction of Yampang Health post, Bhojpur",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/06/074/75",
"title": "Construction of Aambung Birthing Centre , Tehrathum",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DUDBC/Dhankuta/NCB/Works/07/074/75",
"title": "Construction of Bastim Birthing Centre, Bhojpur",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANKUTA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "SNRTP-SIND-W-NCB-34.03-PM-074-75",
"title": "Periodic Maintenance of Dauchet- Keureni-Banskharka-Jatan-Baruwa Road Project (CH 0+000 to 18+350)",
"procuring_entity": "Office of the District Co-ordination Committee, District Technical Office, Sindhupalchowk",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 10:00"
},
{
"rfp_no": "NCB/10/2074/075",
"title": "Construction of Blactop Road,Lalbandi-Jabdi Road,Lalbandi-05",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NCB/11/2074/075",
"title": "Construction of Rigid Pavement Road,Dhumdume pul North, Lalbandi-07",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NCB/12/2074/075",
"title": "Construction of Blacktop Road,Kuber Shrestha ko Ghar Dekhi South Ward No-7 Simana Sama,Lalbandi-08",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NCB/13/2074/075",
"title": "Construction of Balck Top Raod ,Bastipur South naorth Road,Lalbandi-09",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NCB/14/2074/075",
"title": "Construction of Blactop Road,Chandrapur Chowk-Tulsi tole Sadak,Lalbandi-10",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NCB/15/2074/075",
"title": "Construction of Blacktop Road and Drain Work,Ranigunj Chowk-Ward Office Raod,lalbandi-17",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "NARA-01/074/75",
"title": "Reconstruction of Trivhuwan Sadan(4th Phase),Narayanhiti Palace museum",
"procuring_entity": "Narayenhiti Place Museum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 06:00"
},
{
"rfp_no": "CTP-NAW/TB-02/074/075",
"title": "Procurement of Fabrication, Supply, Transportation, Construction and Erection of Kaligandaki Long Span Trail Bridge (LSTB) over Kaligandaki river at Bharatipur, Nawalparasi &amp; Ramjakot, Tanahun Through Construction Turnkey Package (CTP)",
"procuring_entity": "District Technical Office, Nawalparasi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 13:00"
},
{
"rfp_no": "DRODMK/3371653/074/75- 11",
"title": "Recurrent Maintenance Work on SRN Roads, Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "07-03-2018 14:00"
},
{
"rfp_no": "DRODMK/3371653/074/75-12",
"title": "Specific Maintenance Work on SRN Roads, Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "07-03-2018 14:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-LALITPUR- 05",
"title": "Construction of 4 Schools Building Complexes in Lalitpur District",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 01",
"title": "Fabrication, Supply and Installation of School Furniture in Dhading District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 01)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 02",
"title": "Fabrication, Supply and Installation of School Furniture in Dhading District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 02)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 03",
"title": "Fabrication, Supply and Installation of School Furniture in Dhading District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 03)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 04",
"title": "Fabrication, Supply and Installation of School Furniture in Dhading District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Dhading - 04)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 01",
"title": "Fabrication, Supply and Installation of School Furniture in Nuwakot District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 01)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "NCB/Works/Nepalgunj-Field/07/74/75",
"title": "Construction of Football Field at Nepalgunj Stadium, Banke",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 23:59"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 02",
"title": "Fabrication, Supply and Installation of School Furniture in Nuwakot District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 02)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 03",
"title": "Fabrication, Supply and Installation of School Furniture in Nuwakot District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Nuwakot - 03)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Rasuwa - 01",
"title": "Fabrication, Supply and Installation of School Furniture in Rasuwa District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Rasuwa - 01)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Makwanpur - 01",
"title": "Fabrication, Supply and Installation of School Furniture in Makwanpur District (ESRP/MOE/CLPIU/NCB/2074/075/Furniture/Makwanpur - 01)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 10:00"
},
{
"rfp_no": "05/Solar Lift Irrigation/MDVIP/074/75",
"title": "Supply and Installation of PV Solar Module , Pump, Construction of Intake, Pump house, Overhead tank, Reservoir Tank, Laying and fitting of Pipes",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-03-2018 07:00"
},
{
"rfp_no": "06/Solar Lift Irrigation/MDVIP/074/75",
"title": "Supply and Installation of PV Solar Module , Pump, Construction of Intake, Pump house, , Reservoir Tank, Laying and fitting of Pipes",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-03-2018 07:00"
},
{
"rfp_no": "5/074/075",
"title": "Boundary wall construction of playing ground",
"procuring_entity": "Godawari Municipality, Attariya Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "NCB-09/2074/075",
"title": "Shool ko Dakshin pati ko Bato Dhalan Tatha Shutter Nirman,Barahathawa-5",
"procuring_entity": "Barahathwa Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "NCB-08/2074/075",
"title": "Ravi Chok dekhi Mukteshwar Mandir jane bato ma (Construction of Blacktop Road and Side Drain Work )",
"procuring_entity": "Barahathwa Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "13/PLMC/074-75",
"title": "Upgrading of Padeli Kaskikot Road, PLMC-18",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "1/74-75",
"title": "supply and delivery of 1 unit of single drum vibrating roller",
"procuring_entity": "Executive Office of Rajdeve Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "2/74-75",
"title": "Supply and delivery of 1 unit motor grader",
"procuring_entity": "Executive Office of Rajdeve Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "3/74-75",
"title": "Supply and delivery of 1 unit Hydraulic excavator.",
"procuring_entity": "Executive Office of Rajdeve Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "4/74-75",
"title": "Supply and delivery of 1 unit Backhoe Loader.",
"procuring_entity": "Executive Office of Rajdeve Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "5/74-75",
"title": "Supply and delivery of 1 unit Tractor with hydraulic trailer.",
"procuring_entity": "Executive Office of Rajdeve Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "09/DROBRT/3373354/2074/75-28",
"title": "Construction Of Blacktopped Road Work in Kanepokhari-Letang Road Bistar in Letang Bazzar",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/26",
"title": "Supply, Delivery and Installation of Server &amp; Accessories",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "06-03-2018 12:30"
},
{
"rfp_no": "NCB/03/FY/074/75",
"title": "Supply and Delivery of Water Treatment Chemical",
"procuring_entity": "Kathmandu Upatyaka khanepani Limited",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 10:00"
},
{
"rfp_no": "33/074/075",
"title": "Construction of Black topped road and drain of Belauti Karahiya Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "41-074-75",
"title": "Procurement Of Navigation System for Knee Surgery",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "DRODMK/3373664/074/75-10",
"title": "Construction of Blacktop Road on Jhapa Chowk Bhadrapur Birtamode Road",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "34/074/75",
"title": "Construction of black topped road of Rahatkol Dhangadhawa Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "35/KPL/SM/RD/074/75",
"title": "Construction of Rudrapur chowk Pratul Bharati Ko ghara Samma Sadak Kalo Patre",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "37/KPL/SM/RD/074/75",
"title": "construction of road black topped for Rudrapur to khadaich road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "38/KPL/SM/RD/074/75",
"title": "construction Hume pipe culvert,RCC Side Drain and road black topped for kalauni-bankata-baniyabhar-RTO Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "39/KPL/SM/RD/074/75",
"title": "Upgrading of Badaki Thuniya Maitahawa Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "KMUN/WORK/01/074-75",
"title": "Construction of Rural Municipal Office Building",
"procuring_entity": "Office of Rural Municipality Kapurkot ,salyan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "DOA-77/074/075",
"title": "Bogati Pati Reconstruction Works, Gokarneshwor,Mahadevsthan,Gokarna",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 10:00"
},
{
"rfp_no": "NCB-G3 /RNE/2074/075",
"title": "SUPPLY &amp; Delivery of Studio Equipment",
"procuring_entity": "Radio Broadcasting Service, Radio Nepal",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "05-03-2018 14:45"
},
{
"rfp_no": "05-074/75 Ilam-25",
"title": "Construction of Earthwork, Gravelling and structural work along Fikkal -Antu Road",
"procuring_entity": "101 Division Road Office Illam",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-03-2018 10:00"
},
{
"rfp_no": "NCB -02-2074/075",
"title": "Construction of Blacktop Road Sukepokhari-Campus Road(Phase-II) Harion-10",
"procuring_entity": "Hariwan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "NCB -01-2074/075",
"title": "Construction of Black top Road, Tribar Shrestha Ko Ghar -Bed Bahadur Ko Ghar Samma Road",
"procuring_entity": "Hariwan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "NCB-04/2074/075",
"title": "Construction of Blacktop Road Pratap Bomjan Ko Ghar - Krishna Smriti Harion-05",
"procuring_entity": "Hariwan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "05-074/75 Ilam-24",
"title": "Periodic maintenance of Mechi Highway(FIkkal-Maikhola Section)",
"procuring_entity": "101 Division Road Office Illam",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-03-2018 10:00"
},
{
"rfp_no": "NCB -03-2074/075",
"title": "Construction of Blacktop Road Kadarariya Chowk-Narayan Chowk Harion-8",
"procuring_entity": "Hariwan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "HE/074-75/01",
"title": "SUPPLY AND DELIVERY OF Hydraulic Excavator With Breaker",
"procuring_entity": "Bidur Municipality,Nuwakot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "HE/074-75/02",
"title": "SUPPLY AND DELIVERY OF TIPPER TRUCK",
"procuring_entity": "Bidur Municipality,Nuwakot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "HE/074-75/03",
"title": "Supply and Delivery of MOTORBIKE",
"procuring_entity": "Bidur Municipality,Nuwakot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-03-2018 00:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-01/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Sidin Papunden, Asmane Bharpa and Biring (DMC) Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-02/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Thotne, Pilampa and Rawa (Jalapa) Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-03/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Betrawati, Stul Khola &amp; Jhurjhure Trail Bridges Through construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-04/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Ranipani Chordi and Jyagdi Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-05/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Galeshwor, Jyamrukkot and Chhusang Chhumpak Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-06/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Deurali Odar, Rukumgad and Ri Khola Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "DUDBC/Lamjung/Work/NCB/9/074/075",
"title": "Construction of Drain and Urban Road Upgradation for core urban area of Lamjung Districts head quarter",
"procuring_entity": "DUDBC, DIVISION OFFICE, LAMJUNG",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "CVH/G/NCB/2074/75/01",
"title": "Supply and Delivery of Animal Ambulance with Tailgate platform, Veterinary Equipment and Surgical Instrument",
"procuring_entity": "Central Veterinary Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 10:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-07/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Sani bheri (Jyamirkhet) and Tripurakot Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-09/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Jalmali Sim, Mauriphant Malakhet, Banara and Chatarbagar Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : CTP-08/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Paukot Bhurkot, Aragya (Angeri) &amp; Ghumna Dovan Trail Bridges Through Construction Turnkey Packages (CTP)",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : NCB-10/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Rapti Multispan Suspension Trail Bridge, Makawanpur over Rapti river, span 462.35m.",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "-TBSWAp/DTO-Jajarkot/NCB/G/02/074-75",
"title": "Procurement and Supply of Fabricated Steel Parts",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "NCB-1-11/074/75 : Contract ID : NCB-11/074/75",
"title": "Fabrication, Supply, Transportation, Construction and Erection of Khutiya Multispan Trail Bridge, Kailali, over khutiya khola, span 439.60m",
"procuring_entity": "Suspension Bridge Division (SBD), DoLIDAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 15:00"
},
{
"rfp_no": "074/75",
"title": "Construction of Black Top with Masonary drain ( Ashok Sah ko ghar to Manohar Sah ko ghar to Boarder Road)",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "5/074/75",
"title": "Construction of Masonary Drain(Kiran patrakar ghar to Dina bahardar ghar Road Rangeli-6,Guditole)",
"procuring_entity": "Rangeli Municipality, Office of the Municipal Executive",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "06-DROMNR/074/75-017",
"title": "Extension and Rehab at Various Chainages of Mahendra Rajmarg (Chisapani-Gaddachauki), Kailali, Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 13:00"
},
{
"rfp_no": "06-DROMNR/074/75-018",
"title": "Upgrading of Bhajani-Karmadevghat-Gulariyaghat Road (Km 0+000-Km 1+200), Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 13:00"
},
{
"rfp_no": "Chainpur Municipality/Shankhuwasava/01/074/75/NCB",
"title": "Chainpur Zero point to Pokhari Bazaar Road Black Top Work (DBST)",
"procuring_entity": "Chainpur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 00:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-012",
"title": "Specific maintenance (Masonary wall construction ) at Section I &amp; II (Bardibas to Khurkot)",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "DROHTD/337355-4/074-75/IFB06/31",
"title": "Road Construction and Improvement Works on Parsa Border Parsauni Jagannathpur Bara Border Road (F207), Parsa",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-03-2018 06:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-013",
"title": "Specific maintenance ( Gabion Work) at Section I &amp; II Bardibas to Khurkot)",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-014",
"title": "Installation of G.I Railing , construction &amp; Maintenance of masonary wall at section III (Khurkot-Nepalthok)",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-015",
"title": "Painting of Road Furniture in section II (Sindhuli - Khurkot )",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "SDSBR-337165-Kha-074/75-017",
"title": "Drain Maintenance work at section I &amp; II (Bardibas-Khurkot)&quot;",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-016",
"title": "Painting of Road Furniture &amp; Installation of sign post in section III (Khurkot - Nepalthok Road section)",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "SDSBR-3371024-074/75-018",
"title": "Railing Works at Kathmandu Bhaktapur road",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "19-03-2018 07:00"
},
{
"rfp_no": "08-mun-2074-75/BH",
"title": "Office Room construction At Pyuthan Hospital",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-03-2018 15:00"
},
{
"rfp_no": "09-mun-2074-75/EG",
"title": "supply of 62.5 Kva kirloskar or equivalent generator",
"procuring_entity": "Pyuthan Municipality",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "19-03-2018 15:00"
},
{
"rfp_no": "ICB/TB/BG/02-2017/18",
"title": "Procurement of Bulldoggrips",
"procuring_entity": "Local Bridge Section, DoLIDAR",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "DMO/JHAPA/ROAD/CP/002/74-75",
"title": "Upgrading of Campus mode-Amda-Pangmini Road",
"procuring_entity": "District Technical Office, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-03-2018 12:00"
},
{
"rfp_no": "SNRTP-MAK-W-NCB-14-07-PM-074-75",
"title": "Periodic Maintenance of Pulkomukh Indrenichaur and Gogane Pakani Road",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-03-2018 23:45"
},
{
"rfp_no": "5/074/2",
"title": "Dana/Ghash for Horse",
"procuring_entity": "Nepal Cavalry",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-03-2018 17:00"
},
{
"rfp_no": "5/074/3",
"title": "Dana/Ghash tender for Horse in Stud Farm",
"procuring_entity": "Sainik Stud Farm",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-03-2018 17:00"
},
{
"rfp_no": "PMUN/GORKHA/03/2 074/75",
"title": "Construction of Ward no. 3, Office Building",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "PMUN/GORKHA/01/2074/75",
"title": "Construction of Municipal Office Building (Phase II)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-03-2018 00:00"
},
{
"rfp_no": "DROPT/3373354/074/75-28",
"title": "Bio-engineering works (Civil Engineering and Bio Engineering Structure)in Bhingri Swargadwari Holeri road",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-03-2018 15:00"
},
{
"rfp_no": "NCB/Works/Beljhundi/06/74/75",
"title": "Design and Build of Athletics Track and Field at Beljhundi Stadium, Dang.",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-03-2018 17:30"
},
{
"rfp_no": "DoLIDAR/RRRSDP/NCB-1/2074/075",
"title": "Procurement of 4 WD Pick up Vehicle",
"procuring_entity": "Rural Reconstruction and Rehabilitation Sector Development Program (RRRSDP)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "- 02/074/075",
"title": "Construction of Road from Parytan Board to Jimrari Dham in Sanfebagar Municipality, Sanfebagar ,Achham",
"procuring_entity": "NEW TOWN PROJECT OFFICE, SAFEBAGAR, ACHHAM",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "07/LAMAHI/NCB/2074-75",
"title": "Construction of Municipality Office Building (Phase II)",
"procuring_entity": "Lamahi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "CSD07/TS/074/75",
"title": "procurement of Total station",
"procuring_entity": "Survey Department, Cadastral Survey Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "01-03-2018 00:00"
},
{
"rfp_no": "CSD08/PCD/074/75",
"title": "Procurement of printing of various cadastral documents",
"procuring_entity": "Survey Department, Cadastral Survey Division",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "01-03-2018 00:00"
},
{
"rfp_no": "SNRTP-KAP-W-NCB-11-10-PM-074-75",
"title": "PERIODIC MAINTENANCE OF KRISHNANGAR - SHISIRWA - GUGAULI - SHIVGADI ROAD. CHAINAGE: FROM CH 0+000 TO CH 24+920",
"procuring_entity": "District Co-ordination Committee Office Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-03-2018 00:00"
},
{
"rfp_no": "EEAP/GULMI/01/074-75",
"title": "Upgrading of Purtighat-Foksing-Gwagha-Shantipur Roads (12.5 km)",
"procuring_entity": "District Technical Office (DTO), Gulmi,",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "16-03-2018 05:00"
},
{
"rfp_no": "10/DROBRT/3371653/2074/75-35",
"title": "Specific maintenance work on Biratnagar- Rageli-Urlabari Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "10/DROBRT/3371653/2074/75-34",
"title": "Construction Of Hume- Pipe culvert in Biratnagar-Rangeli Urlabari Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-03-2018 00:00"
},
{
"rfp_no": "03/074/75/3371014",
"title": "Cutting of tree, Stacking Serviceable point, Ghat gaddi, Chatta nirman.",
"procuring_entity": "Gaighat Diktel Road Project",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-03-2018 06:00"
},
{
"rfp_no": "MoI/SEZDC/WORKS/02-074/75",
"title": "Construction of Boundary wall and Land Development Works inside Block B &amp; C of Simara SEZ [Contract Identification No: MoI/SEZDC/WORKS/02-074/75]",
"procuring_entity": "Special Economic Zone Development Committee",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "DUDBC/ILAM/NCB/WORKS/ 01-074/75",
"title": "Construction of Eastern Regional Ayurbed Hospital at Lakhanpur, Jhapa",
"procuring_entity": "DUDBC, DIVISION OFFICE, ILAM",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 12:00"
},
{
"rfp_no": "DROSNF/4-01/074-75",
"title": "Recurrent Maintenance ( Gabion Works, Masonry and Drain maintenance work ) at Chaukhutte-Sanfebagar-Martadi Road, Contract Identification No : DROSNF/3371653/074-75/10",
"procuring_entity": "501 Division Road Office Sanphebagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "DROSNF/4-02/074-75",
"title": "Specific Maintenance ( Gabion Works, Masonry and Drain maintenance work )at Chaukhutte-Sanfebagar, Mangalsen,Martadi Road, Contract Identification No : DROSNF/3371653/074-75/11",
"procuring_entity": "501 Division Road Office Sanphebagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "DROSNF/4-03/074-75",
"title": "Road upgradation work (Graveling and Structures)at Jayagad- Ramaroshan Sadak, Contract Identification No : DROSNF/3373554/074-75/12",
"procuring_entity": "501 Division Road Office Sanphebagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "RSDPAF/2/2074-75",
"title": "Road Sector Development Project Additional Financing II",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-02-2018 06:00"
},
{
"rfp_no": "RSDPAF/ 2 /2074-75",
"title": "Road Sector Development Project Additional Financing II",
"procuring_entity": "Foreign Cooperation Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-02-2018 06:00"
},
{
"rfp_no": "VLMP/Kapurkot Khara/4/2074/75",
"title": "Kapurkot Khara Landslide Management Work, kapurkot-3, Salyan District",
"procuring_entity": "Vulnerable Landslide Management Project, DWIDM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 12:00"
},
{
"rfp_no": "VLMP/Ramche Kerunge/5/2074/75",
"title": "Ramche Kerunge Landslide Management Work, Hupsekot-5, Nawalparasi",
"procuring_entity": "Vulnerable Landslide Management Project, DWIDM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 12:00"
},
{
"rfp_no": "DUDBC/Dang/work/NCB/05/074-75",
"title": "Construction of District Soil conservation office building, Tulshipur-Dang",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "KRMORME/01/NCB/GOODS/2074/075",
"title": "Supply of Track Excavator With Breaker -1 Unit",
"procuring_entity": "Kaike Rural Municipality, Shahartara, Dolpa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "14/DSMC/2074/075",
"title": "Construction of Ward Office Building Ward No. 13, Raajpur",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "15/DSMC/2074/075",
"title": "Construction of Ward Office Building Ward No. 16, Ghasita",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "DROSPR/05/74/75-028",
"title": "Construction of Black Top Road with Cross Drainage Structures (Chainage: 11+000 to 13+700 Km) and Grade and Curve Improvement from Chainage 53+000 to 67+000 Km)",
"procuring_entity": "DRO Shivapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/RBN/W/NCB/01/074/075",
"title": "Black Topped Road Maintenance works Ward no:2,5 &amp;8",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 07:00"
},
{
"rfp_no": "DRODKT/3373204/074/075-025",
"title": "Maintenance and Protection of Bridges and Cross Drainage Structures on Koshi Rajmarg (Bhedetar-Dhankuta-Hile-Nunthala section)",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3373354/074/075-024",
"title": "Roadway Excavation and structural works on Kolbote-Mahabharat-Aahale-Kokaha-Barahachhetra Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "Metro/Bhr/RBN/W/NCB/02/074/075",
"title": "Black Topped Road Maintenance works Ward no:4",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 07:00"
},
{
"rfp_no": "DRODKT/3373354/074/075-023",
"title": "Roadway Excavation and structural works on Mulghat-Akhisalla-Chhintang-Triveni-Bhojpur Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3071084/074/075-022",
"title": "Rigid Pavement on Nigale cement quarry access road.",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "Metro/Bhr/RBN/W/NCB/03/074/075",
"title": "Black Topped Road Maintenance works Ward no:9,17/19&amp;21",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 07:00"
},
{
"rfp_no": "DoEnv 07/2074-75",
"title": "The Air pollution dispersion modelling and control system development",
"procuring_entity": "Department Of Environment",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 00:00"
},
{
"rfp_no": "RCTMSK/Bakeya/EMB+RVT-05/074-75",
"title": "RCTMSK/Bakeya/EMB+RVT-05/074-75",
"procuring_entity": "Water Induced Disaster Management Division Office no.8, Bara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 11:00"
},
{
"rfp_no": "RCTMSK/Bakeya/AFS-06/074-75",
"title": "RCTMSK/Bakeya/AFS-06/074-75",
"procuring_entity": "Water Induced Disaster Management Division Office no.8, Bara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 11:00"
},
{
"rfp_no": "RCTMSK/Bakeya/EMB+RVT-07/074-75",
"title": "RCTMSK/Bakeya/EMB+RVT-07/074-75",
"procuring_entity": "Water Induced Disaster Management Division Office no.8, Bara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 11:00"
},
{
"rfp_no": "RCTMSK/Bakeya/AFS-08/074-75",
"title": "RCTMSK/Bakeya/AFS-08/074-75",
"procuring_entity": "Water Induced Disaster Management Division Office no.8, Bara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 11:00"
},
{
"rfp_no": "PEP/Pasaha/R-Emb+Rvt-03/2074-75",
"title": "PEP/Pasaha/R-Emb+Rvt-03/2074-75",
"procuring_entity": "Water Induced Disaster Management Division Office no.8, Bara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-02-2018 12:00"
},
{
"rfp_no": "DMLI 03/73/74",
"title": "Goods and Services for Seminar",
"procuring_entity": "Department of Money Laundering Investigation",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-02-2018 13:00"
},
{
"rfp_no": "2/074/75/3371014",
"title": "Supply of HDPE 180 mm dia 6 kg/cm2 pressure pipe at worksite.",
"procuring_entity": "Gaighat Diktel Road Project",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-03-2018 06:00"
},
{
"rfp_no": "DDC/ICB/SMP/09-074/075",
"title": "Purchase of Skimmed Milk Powder(SMP).",
"procuring_entity": "Dairy Development Corporation",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "13-02-2018 00:00"
},
{
"rfp_no": "DDC/ICB/WB/10-074/075",
"title": "Purchase of unsalted White Butter (WB).",
"procuring_entity": "Dairy Development Corporation",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "13-02-2018 00:00"
},
{
"rfp_no": "IDDMorang/MIP/074-075/NCB-01",
"title": "Construction of Headworks, Canal and its related structures of Rajghat Itehara Rateholi ISP, Itehara-1,2 and Rajghat-4,5 , Morang.",
"procuring_entity": "Irrigation Development Division Morang",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "Newtown/Dumre-Bhansar/Works/ NCB/074/75-01",
"title": "Upgrading of Dumre-Bhansar-Nareshowartar - Bhanu Chowk Road (With Footpath &amp; Solar Street Light)",
"procuring_entity": "NEW TOWN PROJECT OFFICE DUMRE - BHANSAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 20:00"
},
{
"rfp_no": "Newtown/Dumre-Bhansar/Works/ NCB/074/75-02",
"title": "Construction &amp; Upgrading of Road a.) Damauli Chautara- Gagate Khola Road b) Kalyantar Motor Marg c) Road &amp; Drain at Turture Bazar d) Yampha Krishi Motor Marg e) Ambote-Bhakunthok Marg f) Chudi-Kumal Gau-Bagh ko Khor - Archale Bhangyang Road",
"procuring_entity": "NEW TOWN PROJECT OFFICE DUMRE - BHANSAR",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 22:00"
},
{
"rfp_no": "10-074/75 SMC",
"title": "Construction of Shuklagandaki Municipality Solid Waste Management Centre, Shuklagandaki Municipality-05, Tanahun.",
"procuring_entity": "Suklagandaki Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "27-02-2018 10:00"
},
{
"rfp_no": "IFB NO. BC05/Chaukhe & Mastada Solar Lift Irigation/BBDMP/074/75",
"title": "Solar Lift Irrigation of Chaukhe Lift Irrigation System Bheriganga Na.Pa.and Mastada Lift Irrigation System Simta Ga.Pa.Surkhet",
"procuring_entity": "Bheri Babai Diversion Multipurpose Project, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "27-02-2018 13:00"
},
{
"rfp_no": "DOHS/G/ICB-41.19/PHCRD/2074/075",
"title": "Procurement of ORS",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "08-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.15/PHCRD/2074/075",
"title": "Procurement of Compound of Sodium Lactate",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "08-03-2018 00:00"
},
{
"rfp_no": "EOI-01/074/75 WSSDO Kanchanpur.",
"title": "DETAIL Survey and Engineering Design of Waste Water Management Project, Package-1. (IBRD Bazar Punarbas , Taun Bazar Punarbas and Dodhara Chandani Mahakali, Municipality.)",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "EOI-02/074/75 WSSDOKanchanpur.",
"title": "DETAIL Survey and Engineering Design of Waste Water Management Project, Package-2. (Beldandi VDC, Kalkatta Bazar and Belauri , Belauri Municipality.)",
"procuring_entity": "Water Supply and Sanitation Division Office, Kanchanpur",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "imo/ilam/ncb/works/05/2074/075",
"title": "Black top Road Maintenance work. (O km - Ratna chowk - Dhobidahara, Armi camp - Panitank - Sital Chowk, Balmandir - Sitalchowk - Pipalbote Chureghati, Ratna chowk -Phulgachi &amp; Golakharka Road)...",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/01/074-075",
"title": "upgrading of Ghuski-dewanganj road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-03-2018 10:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/03/074-075",
"title": "upgrading of Ghuski-arnama road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 12:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/06/074-075",
"title": "upgrading of Bhutaha-basmatia road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-03-2018 10:00"
},
{
"rfp_no": "NTPO/Khurkot/Quotation/074/75-1",
"title": "Park construction above Andheri Khola ( Ghurmi Chowk)",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "14-03-2018 13:00"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-01",
"title": "Maintenance Work at ICP Barrack and Landscaping work",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "14-03-2018 19:00"
},
{
"rfp_no": "MFN/NCB/ Work/01-Academic Building/74-75",
"title": "Construction of Academic Building Work",
"procuring_entity": "Martyrs Foundation Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 10:00"
},
{
"rfp_no": "SSRC 12-74/75",
"title": "Footpath and Drain Cover Slab Maintenance and Road Marking Works at Singhdurbar",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "SRRP/1-01/074-75",
"title": "Construction of Prestressed bridge over Lungreligad along Seti Rajmarg",
"procuring_entity": "Seti Highway (Southern Section) Tikapur-Lode-Chainpur Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "NCB-P5-RP12-2074/75",
"title": "Construction of Office Block,Septic Tankand Soak pit at District Traffic Police office dang",
"procuring_entity": "District Police Office, Dang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "34/074/075",
"title": "Procurement of Hysteroscope, Hand Instrument &amp; Irrigation System",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "01/GI PIPE/2074/075",
"title": "The Procurement of Medium Class Galvanised Iron (GI) Pipe",
"procuring_entity": "Nepal Water Supply Corporation, Head Office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 06:00"
},
{
"rfp_no": "DROLTP-/03-016/074/75",
"title": "Road Improvement and Rehabilitation Works on Chakrapath Balkumari-Tikathali Road",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "PYU-74-75-01",
"title": "Kumaltar-Kondrachur-Ratapni Road",
"procuring_entity": "District Technical Office (DTO), Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 23:00"
},
{
"rfp_no": "NAMS/NCB/Works/74/75/2",
"title": "New Building Construction for Emergency Department, Bir Hospital",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 09:00"
},
{
"rfp_no": "CTRMORME, Dhandgaun, Dolpa NCB/GOODS/CTRMORME/01/2074/075",
"title": "Supply of Track Excavator With Breaker -1 Unit",
"procuring_entity": "Chhark Tangsong Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "IDD_Rupandehi_01/74-75",
"title": "Marchawar Lift Irrigation Project",
"procuring_entity": "Irrigation Development Division Rupandehi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "1-/2074/75",
"title": "Construction of Headworks and Potection works, Parwaha Branch in Kamala Western Canal System",
"procuring_entity": "Kamala Hardinath Irrigation Management Division",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "2-/2074/75",
"title": "Headworks Protection work ( Bedbars 3 Nos), Parwaha Branch, Singha Headworks",
"procuring_entity": "Kamala Hardinath Irrigation Management Division",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "3-/2074/75",
"title": "Construction of Canal Lining Works, Hardinath Irrigation System, Eastern Canal.Ch.0+000-0+300",
"procuring_entity": "Kamala Hardinath Irrigation Management Division",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "4-/2047/74",
"title": "Construction of Anti-Flood Structures, Hardinath Irrigation System Headworks",
"procuring_entity": "Kamala Hardinath Irrigation Management Division",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "5-/2047/75",
"title": "RCC Lining Work &amp; Drop cum Inlet, Hardinath Western Main Canal cha. 1+388 and 4+310 &amp; cha.1+850",
"procuring_entity": "Kamala Hardinath Irrigation Management Division",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "DROLTP-/03-017/074/75",
"title": "Road Improvement Works on Lalitpur Mountain Ringroad, Bhattedanda-Malta-Pyutar-Aasrang-Gimdi-Thulo Durlung-Gotikhel -Chameli Gupha, Lalitpur",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "NCB/GOODS/SKRMORME/01/2074/075",
"title": "Supply of Track Excavator With Breaker -1 Unit",
"procuring_entity": "Swmi Kartik Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 07:00"
},
{
"rfp_no": "DROLTP-/03-019/074/75",
"title": "Construction of Black top Road, Masonary wall &amp; Drainage works on Sunakothi Chautara - Krishna Mandir, Nakhkhu Khola Road",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "13/2074/75-CN011",
"title": "RSDP Maintenance of SRN Bridges of Makwanpur and Bara Districts",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "13/2074/75-CN012",
"title": "RSDP of SRN Bridges of Kaski and Syangja Districts",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "13/2074/75-CN013",
"title": "RSDP Maintenance of SRN Bridges of Dhading and Chitwan Districts",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "13/2074/75-CN014",
"title": "RSDP Maintenance of SRN Bridges of Rapti Highway, Chhinchu-Jajarkot and Karnali Highway, Surkhet-Jumla Road",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "SSRC 13-74/75",
"title": "Installation of 8 passenger elevator lift (six stop) in Ministry of Education and 8 passenger elevator lift (five stop) in Ministry of Culture, Tourism and Civil Aviation at Singhdurbar.",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "NCB/34/PROSEC/2074-75",
"title": "Tyres and Tubes for Fire Mechanical Unit and Transport and Civl Maintenance Unit",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "SNRTP TAN-W-NCB-29-15-PM -074-75.",
"title": "Periodic Maintenance of Bhagawati Rangapath Bhanu.",
"procuring_entity": "District Technical Office (DTO), Tanahu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "1 /BHO/G/TB/074/075",
"title": "Supply of Fabricated Steel Parts for Short Span Trail Bridge",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Bhojpur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "N1SP/SAN-REG/074-75",
"title": "Construction of In-charge quarter",
"procuring_entity": "District Police Office Sankhuwasava",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.4/PHCRD-2074-75",
"title": "Procurement of Cetrizine HCl 10 mg Tab",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.13/PHCRD-2074-75",
"title": "Procurement of Fluconazole 150 mg Cap",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.20/PHCRD-2074-75",
"title": "Procurement of Amlodipine 5mg Tab",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.27(a)/PHCRD-2074-75",
"title": "Procurement of Levothyroxine 25 mcg Tab",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "07-03-2018 00:00"
},
{
"rfp_no": "DROBTL-07-074/75",
"title": "Supply of Motor Cycles",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-03-2018 00:00"
},
{
"rfp_no": "1-NSTRIPD/074/75",
"title": "Detailed Engineering Survey, Design and Report Preparation of Tamakoshi - Lamabagar - China Boarder Road, Dolakha (Chainage - 33+620 to 90+000)",
"procuring_entity": "North South Trade Road Improvement Project Directorate",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "1- NSTRIPD/074/75",
"title": "Detailed Engineering Survey, Design and Report Preparation of Jiri-Salleri-Dhingri (Tibet Boarder), Dolakha (10+500 to 50+000)",
"procuring_entity": "North South Trade Road Improvement Project Directorate",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "1 - NSTRIPD/074/75",
"title": "Detailed Engineering Survey, Design and Report Preparation of North South Lokmarg ( Mechi Corridor), Kakarbhitta - Pashupatinagar - Chiyobhyanga Road (Pashupatinagar &#65533; Chiyobhanyang Section)",
"procuring_entity": "North South Trade Road Improvement Project Directorate",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "14-03-2018 00:00"
},
{
"rfp_no": "SQ/02/074/075",
"title": "Construction of gabion protection works in Dungikhola",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-03-2018 22:00"
},
{
"rfp_no": "SQ/03/074/075",
"title": "Construction of Gabion revetements",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-03-2018 22:00"
},
{
"rfp_no": "SQ/04/074/075",
"title": "Construction of Gabion Revetement in Dungikhola, Bheriganga-3, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-03-2018 23:30"
},
{
"rfp_no": "SQ/05/074/075",
"title": "Construction of Gabion protection works",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "13-03-2018 23:30"
},
{
"rfp_no": "RJKIP/GATEWHR/NCB-01/073/074",
"title": "THE PROCUREMENT OF DESIGN, SUPPLY, FABRICATION, ERECTION &amp; COMMISSIONING OF HYDROMECHANICAL AND CONTROL SYSTEM WORKS FOR HEADWORKS",
"procuring_entity": "Rani Jamara Kulariya Irrigation Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-03-2018 13:00"
},
{
"rfp_no": "DUDBC/SINDHULI/WORKS/NCB/047/75/03",
"title": "Sindhulimadhi Mukhya Bazar Road Upgreading",
"procuring_entity": "DUDBC, DIVISION OFFICE, SINDHULI",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "TSPRP/Notice/01/074/75",
"title": "Name of Work : Roadway excavation,RCC Pavement and Masonry drain Construction work.",
"procuring_entity": "Tamghas Simaltari Pyuthan Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "DRODMK/3371574/074/75-8",
"title": "Construction of Motorable RCC Bridge over Geuriya khola at Gauriganj-khajurgachhi road, Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "TSPRP/Notice/01/-074/75",
"title": "Construction of slab culvert along Rudrabeni Wamitaksar Daramkhola Road, Gulmi.",
"procuring_entity": "Tamghas Simaltari Pyuthan Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "TSPRP/Notice/01-074/75",
"title": "Construction of slab culvert, Retaining and Breast Wall and RCC Pavement",
"procuring_entity": "Tamghas Simaltari Pyuthan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "SNRTP-TER-W-NCB-33-02-PM-074-75.",
"title": "Periodic Maintenance of Serma-Jaljale-Isibu Road including Maintenance of river Crossing structures.",
"procuring_entity": "District Technical Office,Terhathum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "7/074-75",
"title": "Upgrading of Prasurampur-dhansauli-hariharpur-pashim purva di-khairahaniya maharajjung road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "33/2074/075",
"title": "Procurement of ESU with Vessel Sealing",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-06",
"title": "Upgrading of Urban Road and Drainage in Byas Municipality (Manung Tourism Road)",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "MOHA/WORKS/2074-075/ 01",
"title": "Renovation of Existing Office Building",
"procuring_entity": "Ministry of Home Affairs",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 11:30"
},
{
"rfp_no": "DUDBC/DOK/KTM/NCB WORKS-EBID-7/074/075",
"title": "Construction of Residentail Building for Jhamak Kumari Ghimire, Gothatar Kathmandu",
"procuring_entity": "DUDBC, DIVISION OFFICE, KATHMANDU",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-02-2018 10:00"
},
{
"rfp_no": "DRODMK/3371574/074/75- 9",
"title": "Construction of Pre-stressed Concrete Bridge over Devaniya Khola connecting Bhadrapur-13 and 15, kafle Tole,jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "NTC/G/NCB/07/074-75",
"title": "Supply and Delivery of Chemical Consumables and Reagents for Sputum Microscopy",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "8/74-75",
"title": "Upgrading of Suryapura-Amahawa-Dumari Bhariya Imilyia Pratichhalaya Sadak",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "01/SSTB/DARCHULA/074/075",
"title": "Procurement of Febricated steel parts for trail bridges",
"procuring_entity": "District Technical Office (DTO), Darchula",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "9/074-75",
"title": "Upgrading of Vrikutichok-Premnagarchok-Kahtanihawa via loharaula-Chetradehi sadak",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "Road work/01/074/75",
"title": "construction of road at ishworpur-3,2",
"procuring_entity": "Ishworpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 10:00"
},
{
"rfp_no": "Road work/02/074/75",
"title": "construction of road &amp; drain work at ishworpur -06",
"procuring_entity": "Ishworpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "10/074-75",
"title": "Upgrading of Hardasdihawa uttarchok-Badalpura-Laxmipur-Mahuwa-panditpur-Sitapur Sadak",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-02-2018 10:00"
},
{
"rfp_no": "NTC/G/NCB/ 07/074/75",
"title": "Supply, Delivery &amp; Instillation of Gene X-Pert cartridges",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "IFB-03/074/75",
"title": "Purchase of UTM machine",
"procuring_entity": "Manmohan Memorial Polytechnic",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 06:00"
},
{
"rfp_no": "Road work/03/074/75",
"title": "construction of road work at ishworpur-07,08",
"procuring_entity": "Ishworpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "NCB/MOHA/G/FURN/2074-075/ 01",
"title": "Supplying ,delivery and fixing of Furniture, Furnishing, chair, sofa, partition and Fecade (structural glazing)",
"procuring_entity": "Ministry of Home Affairs",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 11:30"
},
{
"rfp_no": "BAG/MUN/W/NCB/074/75-07",
"title": "Upgrading of Deurali Chowk-Khaharey, Sadhkhola-Baaggotey, Vhalatakura-Dhikichaur-Titaurey Road",
"procuring_entity": "Baglung Municipality",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "Road work/04/074/75",
"title": "construction of road at ishworpur -11,09,07",
"procuring_entity": "Ishworpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 10:00"
},
{
"rfp_no": "BAG/MUN/W/NCB/074/75-08",
"title": "Upgrading of Galuwa-Bhakunde-Rayadanda, Manakamana-Dihidanda-Simswara, Bokse-Ward Office-BaudeChaur Road.",
"procuring_entity": "Baglung Municipality",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "Drain Work/05/074/75",
"title": "construction of drain at ishworpur-06",
"procuring_entity": "Ishworpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "IFB-04/074/75",
"title": "Construction of Workshop Building-II",
"procuring_entity": "Manmohan Memorial Polytechnic",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 06:00"
},
{
"rfp_no": "ARG/DTO/03/2074-75",
"title": "Periodic Maintenance of Amarai-Jukena Road",
"procuring_entity": "District Technical Office (DTO), Arghakhanchi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 10:30"
},
{
"rfp_no": "DROBKT/06-050/2074/075",
"title": "Construction of Slab Culvert Work in Panauti-Namobudha Section of Lakuribhanjyang- Panauti- Namobuddha Road.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 20:00"
},
{
"rfp_no": "Goods-FSP/NAW/TB/01-074/075",
"title": "Procurement and supply of fabricated steel parts for Six Trail Bridges",
"procuring_entity": "District Technical Office, Nawalparasi",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "BAG/MUN/W/NCB/074/75-09",
"title": "Upgrading of Nepaney Danda-Kaiya, Pauja-Paiyunpata, Kavredanda-Bhairavsthan Road",
"procuring_entity": "Baglung Municipality",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "N1SP/QUA-REG/074-75",
"title": "Construction of Incharge Quarter",
"procuring_entity": "District Police Office, Morang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "SNRTP-W-NCB-15-14-PM-074-075",
"title": "Periodic maintenance of Manjariya-Jamuniya-Sanahi-Ragarganj Road From CH 0 + 000 TO CH 8 + 360",
"procuring_entity": "District Technical Office, Nawalparasi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 10:00"
},
{
"rfp_no": "SNRTP-W-NCB-15-15-PM-074-075",
"title": "Periodic maintenance of Arunkhola &amp;#65533;Ratamata- Damfeghera-Rakachuli- Mityal (Palpa) Road From CH 0 + 000 TO CH 11 + 500",
"procuring_entity": "District Technical Office, Nawalparasi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 13:00"
},
{
"rfp_no": "3/SNRTP/074/75",
"title": "Periodic Maintenance of Dhangra khola Laukat causeway",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sarlahi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-02-2018 16:00"
},
{
"rfp_no": "DROBLG/3371114/073/74-121 (Re)",
"title": "Upgrading of Beni-Galeshwor Road",
"procuring_entity": "303 Division Road Office Baglung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "DROLTP-05-21/074/75",
"title": "Supply of construction materials",
"procuring_entity": "208 Division Road Office Lalitpur",
"type": "Goods  Sealed Quotation",
"status": "LOA Issued",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-07 (RE)",
"title": "Construction Of office Building of Heavy Equipment, Dumre, Tanahun",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "08-074-75/050",
"title": "Supply of Grit cover and manhole cover at office yard",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-03-2018 17:00"
},
{
"rfp_no": "08-074-75/051",
"title": "Thermoplastic painting on various SRN/SURN Roads",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-03-2018 17:00"
},
{
"rfp_no": "08-074-75/052",
"title": "Thermoplastic painting and road safety works on various SRN/SURN Roads",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-03-2018 17:00"
},
{
"rfp_no": "08-074-75/053",
"title": "Improvement of Janaudaygalli Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-03-2018 18:00"
},
{
"rfp_no": "08-074-75/054",
"title": "Improvement of Approach Road of Budhanilkatha East Tailung School Deuba Chowk Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "12-03-2018 18:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-07 (RE)",
"title": "Construction Of office Building of Heavy Equipment, Dumre, Tanahun",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-03-2018 00:00"
},
{
"rfp_no": "12.1/PLMC/074-75",
"title": "Upgrading of Khatri Pahiro -Kholabesi- Betyani Road, PLMC-31",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "12.2/PLMC/074-75",
"title": "Upgrading of Katre Bridge-Bamdi-Kakahare-Ghhatichhina-Makawanpur-Panchase Road PLMC-23",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "12.3/PLMC/074-75",
"title": "Upgrading of Shivalaya -Baseri-Batase-Manipal Road, PLMC-11",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/23",
"title": "Supply &amp; Delivery of Pathology ECI Machine Kits",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 10:00"
},
{
"rfp_no": "SM/01/074/75",
"title": "Upgrading ( Premix Carpet Works) Rajdevi Chowk- Sarjuk Mahato's House-Ilaka Police Office Road (Phase II)",
"procuring_entity": "Sukhipur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-02-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/20",
"title": "Supply &amp; Delivery of Pathology, Immunology &amp; Emergency Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/74/75/21",
"title": "Supply &amp; Delivery of Pathology-Biochemistry ERBL XL 300 System Pack &amp; Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/74/75/22",
"title": "Supply &amp; Delivery of Histopathology Goods",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "22-02-2018 10:00"
},
{
"rfp_no": "PCN/NCB/2074-75/01",
"title": "Press Council Enhancement",
"procuring_entity": "Press Council Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "PCN/NCB/2074-75/ 1",
"title": "Press Council Enhancement",
"procuring_entity": "Press Council Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "MGO/074/75/35",
"title": "Supply of Radiology Equipment, Qty- Various",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "11-03-2018 00:00"
},
{
"rfp_no": "NCB/074/75-105.",
"title": "Supply &amp; Delivery of Black Leather Boot",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 11:15"
},
{
"rfp_no": "BPKIHS/074/075/011",
"title": "Hemodialysis Machine",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 11:00"
},
{
"rfp_no": "BPKIHS/074/075/012",
"title": "Computer Spare Parts",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-02-2018 11:00"
},
{
"rfp_no": "003/KNPF/CHT-KMun/NCB/074-075",
"title": "Construction of Municipal Office to Chainpur Chowk Road &amp; Drain",
"procuring_entity": "Khairahani Municiapality Office, Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 16:00"
},
{
"rfp_no": "NCB/03/2074/075",
"title": "construction of blacktop Road",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "08/074-75 WSSDO Dhanusha",
"title": "construction of 200 cum RCC Overhead Tank in Naktajhij wsp, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "09/074-75 WSSDO Dhanusha",
"title": "Construction of 100 cum RCC Overhead Tank in Umaprempur WSP, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "10/074-75 WSSDO Dhanusha",
"title": "Construction of 100 cum RCC Overhead Tank in Digambarpur WSP, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/PDRF/Re03",
"title": "Kirateshwor Sattal Conservation and Rehabilitation Work",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "11/074-75 WSSDO Dhanusha",
"title": "Construction of 100 cum RCC Overhead Tank in Ramdaiya Bhawadi AShhireshwarnath WSP, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "12/074-75 WSSDO Dhanusha",
"title": "Construction of 100 cum RCC Overhead Tank in Hariharpur WSP, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "13/074-75 WSSDO Dhanusha",
"title": "Construction of 100 cum RCC Overhead Tank in Hanspur Kathapulla WSP, Dhanusha",
"procuring_entity": "Water Supply and Sanitation Division Office, Dhanusha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "NCB/04/2074/075",
"title": "Construction of Blacktop Road, lalbandi-06",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "NCB/05/2074/075",
"title": "Construction of Blacktop Road, Padam Bahadur-Sanjivani Gumba Road Lalbandi-08",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "NCB/06/2074/075",
"title": "Construction of blacktop Road, Campus Chowk Haribhawan Road, Lalbandi-09",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "NCB/07/2074/075",
"title": "Construction of Blacktop Road,Shyam Susling-Ramjanki Ban Chautaro Road, lalbandi-10",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "05-DROMNR/074/75-015",
"title": "Upgrading of Nagra (Indian Border) -Devisthan-Mahakali Bridge Road (Km 0+000- Km 4+000)",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "NCB/08/2074/075",
"title": "Construction of RCC Bridge over Jharjhara khola, lalbandi-15",
"procuring_entity": "Lalbandi Municipality Office, Lalbandi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 07:00"
},
{
"rfp_no": "05-DROMNR/074/75-14",
"title": "Upgrading of Bahuliya- Phulbari- Bhojpur Road (Km 0+000 to 5+500), Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "05-DROMNR/074/75-16",
"title": "Construction of RCC Bridge over Maleriya Nala (1x25m), Mahakali Na. Pa. 1, Pashupati Ma. Vi. Dakshin, Dodhara, Chandani, Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "05-DROMNR/074/75-04",
"title": "Improvement and Rehab of Mahakali Highway (Ch. 15+700 to Ch. 50+000)",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "PHQ/G/NCB/2074-075/33",
"title": "Supply, Delivery &amp; Installation of Internet/Intranet Connectivity for 7 sites",
"procuring_entity": "Nepal Police Headquarter Procurememt Section, Naxal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 14:00"
},
{
"rfp_no": "PHQ/G/NCB/2074-075/34",
"title": "Supply and Delivery of Band Equipment",
"procuring_entity": "Nepal Police Headquarter Procurememt Section, Naxal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 14:00"
},
{
"rfp_no": "IFB No. 1/NNRFC/SUV/NCB/074-75",
"title": "The Procurement of Supply &amp; Delivery of Four Wheel Drive Jeep (SUV)",
"procuring_entity": "National Natural Resources and Fiscal Commission",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 10:00"
},
{
"rfp_no": "MOUD/DLPIU/WORKS/2074-075/NCB-02",
"title": "Maintainence of Jilla Karagaar Ramechhap",
"procuring_entity": "District Level Project Implementation Unit-Ramechhap (MoUD)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "09/DROBRT/3371574/2074/75-29",
"title": "Construction Of Road &amp; Retaining Structures near approach of Tengra Khola Bridge in Pashupati chowk 2,3,Ithari,Sunsari",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "PDRF-01/074/75",
"title": "Reconstruction Work of Right and Left wall of Subway,Narayanhiti Palace museum.",
"procuring_entity": "Narayenhiti Place Museum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-03-2018 06:00"
},
{
"rfp_no": "DRODMK/3373204/074/75-13",
"title": "Protection of Hadiya Bridge, MRM Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-03-2018 00:00"
},
{
"rfp_no": "DRODMK/3373204/074/75-14",
"title": "Protection of Ninda Bridge, MRM Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-03-2018 10:00"
},
{
"rfp_no": "DRODMK/3373204/074/75-15",
"title": "Protection of Pali Bridge, MRM Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-03-2018 10:00"
},
{
"rfp_no": "DRODMK/3373204/074/75-16",
"title": "Protection of Surunga Bridge, MRM Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "08-03-2018 10:00"
},
{
"rfp_no": "DROPKR/3371574/074/75-40",
"title": "Construction of Simply supported two span, Cast In-Situ, 2-webbed RCC Slab-deck Bridge (2* 25 m) across Bijayapur river along keshari-Dudhpokharei Road",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "02--2074/075",
"title": "Construction of Chief Quarter Building construction Works",
"procuring_entity": "Inland Revenue Office Birgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "TNN7/DRONGJ/3373294/074/75-28",
"title": "Construction of Black Top Road on Uttar- Dakshin lokmarga (India boarder to jungle) Narainapur gaunpalika",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 07:00"
},
{
"rfp_no": "FRS/Trishuli/NCB/Works/01-074/75",
"title": "Improvement of Water Supply System for Trout Fish Research of FRS, Trishuli",
"procuring_entity": "Nepal Agriculture Research Council",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "TNN7/DRONGJ/3373664/074/75-29",
"title": "Construction of Causeway and Gravel Road Works on Bhauwanaka-Bahunepur-Kusum sadak, Banke",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-02-2018 07:00"
},
{
"rfp_no": "DROBKT/05-032/2074/075",
"title": "Drain &amp; Blacktop works in Gwarko Panauti Dadapari Sadak Kavre.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-033/2074/075",
"title": "Road Upgrading works in panchkhal Palanchowk Bhagwati Road(F071) Kavre.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-034/2074/075",
"title": "Road upgrading works in chyamasing-Nala banepa Road.(F071), Kavre.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-035/2074/075",
"title": "Road Upgrading works in sallaghari-Duwakot Road Bhaktapur.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-036/2074/075",
"title": "Road widening and upgrading works in Lokanthali Manohara Pul Dekhi Tikathali sadsak and ARM Hanumante Sadak Manohara.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-037/2074/075",
"title": "Pandu Bazar Chowk(ARM)-Pandubazzar height-Ganeshman Singh Batika Gundu Baspark-pipal Dand Dadhikot Road, Bhaktapur.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-038/2074/075",
"title": "Specific Maintenance works in Lokanthali-Dharmeswor-Tikathali Road Bhaktapur,ARM suryabinayak Sanga.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-039/2074/075",
"title": "Masonry and Gravelling Works in Phuyalgaun-Changunarayan-Phedigaun-byasi, Bhaktapur",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-040/2074/075",
"title": "Road Widening and upgrading works in pandu bazzar height-Ganeshthan singh batika -Gundu Dadhikot Road.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "Upgrading of Sanischare Khudunabari Road",
"title": "Upgrading of Sanischare Khudunabari Road",
"procuring_entity": "District Technical Office, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-02-2018 16:00"
},
{
"rfp_no": "NCB-P5-PR11-2074/75",
"title": "Construction of Office/Barrack,Mess,Toilet,Septic Tank,Soak Pit,Water Tankand Retaining Wall",
"procuring_entity": "District Police Office, Gulmi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 00:00"
},
{
"rfp_no": "2074/75/PM/1.",
"title": "Periodic Maintenance of Basaha-Chaudandi-Ranitar Rural Road, SNRTP.",
"procuring_entity": "District Development Committee, Udayapur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 00:00"
},
{
"rfp_no": "TNN6/DROSKT/337356-4/074/75-44",
"title": "Rehabilitation Works on Surkhet-Jumla Road, Dailekh (Chainage: 45+000km to 132+000km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-02-2018 03:00"
},
{
"rfp_no": "TNN6/DROSKT/337335-3/074/75-45",
"title": "Construction of Slab Culvert over the Bharul Khola along Ambasa-Danuwatal -Telpani- Surkeht Road. ( 01+650 chainage start from Ratna Highway )",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 03:00"
},
{
"rfp_no": "NCB/DTOJHAPA/ROAD/SR/02",
"title": "Upgrading of Sahid Ram Marga ( Harkalal Marga)",
"procuring_entity": "District Technical Office, Jhapa",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "20-02-2018 16:00"
},
{
"rfp_no": "05/BPKMPOSMDB/074-75",
"title": "Construction of Theatre",
"procuring_entity": "B.P. Koirala Memorial Planetarium,Observatory and Science Musium Development Board",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 22:45"
},
{
"rfp_no": "REG/MUSTANG/074-75/01",
"title": "Construction of Barrack, Mess Block, Septic Tank And Soak Pit at District Police Office Mustang.",
"procuring_entity": "District Police Office, Mustang",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "07-03-2018 05:00"
},
{
"rfp_no": "28/074/075",
"title": "Painting Works at Civil Service Hospital",
"procuring_entity": "Civil Service Hospital",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-02-2018 00:00"
},
{
"rfp_no": "TRTW-02-2074/075",
"title": "Gabion Revetment Constructions Works in Tila River..",
"procuring_entity": "Water Induced Diaster Management Division Office No. 21",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-02-2018 00:00"
},
{
"rfp_no": "09/DROBRT/3371654/2074/75-27",
"title": "Construction of Hume Pipe Culvert Work in Duhabi-Inaruwa Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-03-2018 00:00"
},
{
"rfp_no": "PDRF-23/074/075",
"title": "Conservation work of Dakchin Barahi Temple and Parisar Dadhikot, Bhaktapur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 10:00"
},
{
"rfp_no": "4/074-075",
"title": "Periodic maintenance of Prempur Gonahi Pokhari-Karkach Karmaiya-Kathhariya-Hathiyahi-Jangalsahiya-Kanakpur-MHW Road (21.68 Km) including maintenance of crossing structure.",
"procuring_entity": "District Technical Office (DTO), Rautahat",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "5/074-075",
"title": "Periodic maintenance of Gamhariya Birta (BHW)-Parswa Chowk-Rangpur Road (11.08 Km) including maintenance of crossing structures.",
"procuring_entity": "District Technical Office (DTO), Rautahat",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "6/074-075",
"title": "Periodic Maintenance of Sukdevchowk(BHW)-Khesrahiya-Dipahi-Dharhari-Shivnagar(BHW)Road(8.52Km) including maintenance of crossing structures.",
"procuring_entity": "District Technical Office (DTO), Rautahat",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (02)",
"title": "Road Construction Including Earthwork, Roadside structures,Cross drainage structure works on Darsantar-Upallodihi-Taruka-Kauchheni-Kaule Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (03)",
"title": "Road Construction Including Earthwork, Gabion Works on Koloni-Akkare-Tupche-Sole-Jamune-Chilaune-Kirnebagar-Bumtang-Deurali Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "2-074/75 Ayodhyanagar-OHT 225 m3 Siraha",
"title": "2-74-75 Ayodhyanagar OHT 225 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "3-074-075",
"title": "3-74-75 Chandralalpur OHT 225 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "1-74-75 Golbajar 450 m3 OHTSiraha",
"title": "1-74-75 Golbajar 450 m3 OHTSiraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "11-074-75 Deep Tubewell",
"title": "11-074-75 Bariyarpatti,Rampur,Dhangadhi",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "4-74-75 Chandraudaypur OHT 225 m3, Siraha",
"title": "4-74-75 Chandraudaypur OHT 225 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "12-74-75 Sarswar,Sanaitha, BrahmanGorchari Ayodhyanagar deep tubewell, Siraha",
"title": "12-74-75 Sarswar,Sanaitha, BrahmanGorchari Ayodhyanagar deep tubewell, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "6-74-75 Bastipur OHT 100 m3, Siraha",
"title": "6-74-75 Bastipur OHT 100 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "7-74-75 Simaltoki OHT 100 m3, Siraha",
"title": "7-74-75 Simaltoki OHT 100 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "13-074-75 Padariya Tharutole, Gadha, Gobindpur Malhanma deep tubewell",
"title": "13-074-75 Padariya Tharutole, Gadha, Gobindpur Malhanma deep tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "17-74-75, Gobindapur Malhanma, HDPE pipe Supply, Siraha",
"title": "17-74-75, Gobindapur Malhanma, HDPE pipe Supply, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "5-74-75 Gobindpur Pakkitole OHT 225 m3, Siraha",
"title": "5-74-75 Gobindpur Pakkitole OHT 225 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "8-74-75 Muksar 2OHT 100 m3, Siraha",
"title": "8-74-75 Muksar 2OHT 100 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "9-74-75 Bishnupurkatti 1,2,4 OHT 100 m3, Siraha",
"title": "9-74-75 Bishnupurkatti 1,2,4 OHT 100 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "10-74-75 Govindpur Chandraudaypur OHT 100 m3, Siraha",
"title": "10-74-75 Govindpur Chandraudaypur OHT 100 m3, Siraha",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "14-074-75 krishnapur Majhauliya , Golbajar deep tubewell",
"title": "14-074-75 krishnapur Majhauliya , Golbajar deep tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "15-074-75 Itari prasahi, Itatar, Golbazar 9",
"title": "15-074-75 Itari prasahi, Itatar, Golbazar 9",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "16-074-75 Naraha Rigaul,Tasu Bhagbatipur, Dhodhna,Mohanpur,Bhadaiya deep tubewell",
"title": "16-074-75 Naraha Rigaul,Tasu Bhagbatipur, Dhodhna,Mohanpur,Bhadaiya deep tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (01)",
"title": "Road Improvement Works of Damki-Phalante Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (04)",
"title": "Roadway Improvement Works (Structure,Cross Drainage and Landslide Clearance Works) on Sunkhani-Dhalanghar-Syalping Khola-Siwalaya Road, Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "5/2074-75",
"title": "Reshaping of Canal, Graveling of service road, Canal Lining, Construction of new structures and Repair maintenance of existing structures (Odraha branch canal, Chandra Nahar System)",
"procuring_entity": "Koshi Pump Chandra Nahar Irrigation Management Division",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "18-02-2018 07:00"
},
{
"rfp_no": "NCB-P5-RP9-2074/75",
"title": "Construction of Area Police Office Building",
"procuring_entity": "District Police Office, Dang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-39",
"title": "Specific (Gabionworks) Maintenance Works at Kadmaha - Gaighat Road(Siswari-Cement factory Section), Contract No.:- DROLHN/337165-3(Spc) /074/075-39",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (05)",
"title": "Specific Maintenance Works On Gurje-Chhahare Road,Nuwakot",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-40",
"title": "Construction of Masonary Drain,and Blacktop Road at Pragati Marg Tri. Na. 11 Gaighat, Udaypur, Contract No.:- DROLHN/337355-4/074/075-40",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "Customs/Kailali/Works/NCB/01/074/75",
"title": "Construction of Staff Quarter Building",
"procuring_entity": "Kailali Customs Office , Dhangadhi Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-41",
"title": "Protection work of Culvert and Bridge along MRM Koshi-Balan sector, Saptari, Contract No.:- DROLHN/337320-4/074/075-41",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (06)",
"title": "Specific Maintenance Works on Phalakhu Khola- Dhunche -Shyaphru Road , Rasuwa",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-42",
"title": "Surface Dressing Works and Repair of Surfaces at MRM Koshi-Balan (Ch 175+150-178+250), Contract No.:- DROLHN/337165-3/074/075-42",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "04-074/75 (07)",
"title": "Periodic Maintenance Works on Betrawati-Dhunche-Shyaphrubesi Road Section of Pasang Lhamu Road, Rasuwa",
"procuring_entity": "209 Division Road Office Nuwakot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-43",
"title": "Construction of Blacktop Works at Traffic Chowk Baniniya Sadak (Ch. 1+285 to 1+685),Saptari, Contract No.:- DROLHN/337355-4/074/075-43",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-44",
"title": "Construction of Blacktop Works at Fatepur-Kanchanpur-Rajbiraj-Sakhada-Gobindapur Sadak, Saptari, Contract No.:- DROLHN/337355-4/074/075-44",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "NCB/Bahradashi/EP/02/074-75",
"title": "Supply and Delivery of Pre-stressed Concrete(PSC) Electric Poles.",
"procuring_entity": "Bahradashi Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-02-2018 12:30"
},
{
"rfp_no": "09-074/75(8)",
"title": "Recurrent Maintenance works on Prithivi Rajmarg (Mowakhola-Mugling)",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(9)",
"title": "Construction of office building on site office, physiling, Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "09-074/75(10)",
"title": "Traffic sign and thermoplastic Painting works on -TRP and PRM",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "05-03-2018 00:00"
},
{
"rfp_no": "4/2074/2075",
"title": "COLLECTION OF ROAD USERS' FEE ON THE BASIS OF COMPETITIVE BIDDING AT CHAINAGE 396+000 TO 473+000 KM HETAUDA-NARAYANGHAD ROAD SECTION OF MAHENDRA HIGHWAY CONTRACT IDENTIFICATION NO. TOLL/2/2074/2075",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 18:00"
},
{
"rfp_no": "RBN/4/2074/2075",
"title": "COLLECTION OF ROAD USERS' FEE ON THE BASIS OF COMPETITIVE BIDDING AT CHAINAGE 000+000 TO 029+150 KM OF BHAIRAHAWA-BHUMAHI ROAD SECTION.",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-03-2018 18:15"
},
{
"rfp_no": "27/074/075",
"title": "Procurement of Patient Monitor",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "BDNG/NCB/MAN-01/074-75",
"title": "construction of dressing rooms and shabha hall",
"procuring_entity": "Manahari Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "01-mun-2074-075/Road",
"title": "Bijuwar Mitramani Chowk to Administrative Building of Pyuthan Municipality Premix Carpeting pavement road.",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "02-mun-2074-075/RT",
"title": "Jhimruk River Training Work(Damti area).",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-02-2018 07:00"
},
{
"rfp_no": "03-mun-2074-075/LF",
"title": "Improvement of Land Field Site and Approach road.",
"procuring_entity": "Pyuthan Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-02-2018 07:00"
},
{
"rfp_no": "04-mun-2074-075/CGIS",
"title": "Supply of Colour CGI sheet.",
"procuring_entity": "Pyuthan Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-02-2018 07:00"
},
{
"rfp_no": "NCB/07/PROSEC/2074-75(re-bid)",
"title": "supply and delivery VCCS Console TSP (Touch Screen Panel)",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "PPO-2nos/R/mrptc/ 074-75-5",
"title": "Construction works of Two no's 3 Storey Barrack Building (Structure only).",
"procuring_entity": "Mid Regional Police Training Center",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "SSRC-09-074/75",
"title": "Underground 11 KV, H.T. Cable Works at Singhdurbar Premises",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "SSRC 10-74/75",
"title": "Supplying and Installation of CCTV Camera and Its Accessories at Singhdurbar",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "DUDBC/NewTown Chaurjahari/02/074/75",
"title": "Road Upgradation, Track Opening, Humepipe Culvert &amp; Drain Construction in Chaurjahari Ring Road (From Mankot to khahare khola and Raniban to Kaktekhola) and Black Topped Road Construction works in Urban Area of Chaurjahari (From Baanshkhola- Airport - Tribeni - Khaucheni- Bijeshwori Road Section), Rukum",
"procuring_entity": "Newtown Project Office, Chaurjahari, Rukum",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "DUDBC/NewTown Chaurjahari/02/074/075",
"title": "Construction of Side Drain, Cross Drainage and Road Ugradation work From simlekhola-triveeni- and Gharipakha ,Majhgaun to Mid hill Road, chaurjahari, Rukum",
"procuring_entity": "Newtown Project Office, Chaurjahari, Rukum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "DUDBC/NewTown Chaurjahari/2/074/75",
"title": "Track Opening and Road Upgradation Works From Shyalkhola- Ambachaur to Lamabagar, Chaurjahari, Rukum",
"procuring_entity": "Newtown Project Office, Chaurjahari, Rukum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "HPPCL/NCB/074/75",
"title": "Construction of Load Bearing Building and Truss Stucture",
"procuring_entity": "Herbs Production & Processing Co. Ltd.",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "25/074/075",
"title": "Procurement of Laparoscopic Surgery Set with Camera",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "26/074/075",
"title": "Procurement of Mobile C Arm X Ray Machine",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "HPPCL/NCB-1/74/75",
"title": "Construction of Truss Structure",
"procuring_entity": "Herbs Production & Processing Co. Ltd.",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "BAPIDP-SSSL-01/2074-075",
"title": "Supply, Installation, Operation &amp; Maintenance Of Standalone Solar (PV) Street Lamps along Left Bank of Bagmati from Sinamangal to Thapathali Bridge",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "BAPIDP-SSSL-02/2074-075",
"title": "Supply, Installation, Operation &amp; Maintainance of Standalone Solar (PV) Street Lamps along Right bank of Bagmati River from Minbhawan bridge to Buddhanagar bridge including Guheshwori Area",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "BAPIDP-EQ001/2074-075",
"title": "Supply and Delivery of Hydraulic Excavator",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "BAPIDP-EQ002/2074-075",
"title": "Supply and Delivery of Suction Unit with Jetting Pump",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "2/SARLAHI/074/75",
"title": "Periodic Maintenance of Phulparari Simara Road",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sarlahi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 20:00"
},
{
"rfp_no": "3/SARLAHI/074/75",
"title": "Periodic Maintenance of Ranigunj Parwanipur and Parsa Riterkhor",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Sarlahi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-02-2018 22:00"
},
{
"rfp_no": "CAAN/AIM/EOI/001",
"title": "Design and Specification works for AIS Automation",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "25-02-2018 00:03"
},
{
"rfp_no": "14/2074/75_CN010",
"title": "RSDP Maintenance of SRN Bridges of Khodpe-Chainpur and Mahakali Highway",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN008",
"title": "RSDP Maintenance of SRN Bridges of Palpa",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN002",
"title": "RSDP Maintenance of SRN Bridges of Ramechhap",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN003",
"title": "RSDP Maintenance of SRN Bridges of Rasuwa and Nuwakot Districts",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN005",
"title": "RSDP Maintenance of SRN Bridges of Kathmandu",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN001",
"title": "RSDP Maintenance of SRN Bridges of Dolakha and Sindhupalchowk District",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN006",
"title": "RSDP Maintenance of SRN Bridges of Bhaktapur and Kavrepalanchowk",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN007",
"title": "RSDP Maintenance of SRN Bridges of Lalitpur",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "14/2074/75_CN009",
"title": "RSDP Maintenance of SRN Bridges of Nawalparasi and Rupandehi",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-03-2018 00:00"
},
{
"rfp_no": "03/074/75/WSSDO Baitadi",
"title": "Construction &amp; Supply of Patan Nayashahar Brihat Co-financing WSP, Baitadi.",
"procuring_entity": "Water Supply and Sanitation Division Office, Baitadi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "08/074-75",
"title": "Supply and delivery of HDPE Pipes for Inaruwa WSSP (old)",
"procuring_entity": "Water Supply and Sanitation Division Office, Sunsari",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "NCB/33/PROSEC/2074-75",
"title": "supply, delivery,installation and commissioning of new CCTV cameras,video wall and VMS software licenses",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "NCB/33/PROSEC/2074-75",
"title": "supply, delivery,installation and commissioning of new CCTV cameras,video wall and VMS software license",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "NCB/20/PROSEC/2074-75",
"title": "supply, delivery,installation and commissioning of stationary lead acid batteries in radar system",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "STMSBK/2/2074/75",
"title": "Construction of Headworks, Canal and Canal Structures of Jibachhi Irrigation Project, Hariharpur, Harinmari, Mahottari",
"procuring_entity": "I D D Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "DROBTL-06-074/075/22",
"title": "Specific Maintenance Work along MRM Butwal- Kothi, Butwal Kothi Section (MRM),Golpark to Siddhababa Section Road",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "24/074/075",
"title": "Procurement of High End Color Doppler Ultrasound System with All Applications",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "DROBTL-06-074/075/23",
"title": "Specific Maintenance work from MRM Butwal to Bardghat Section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "MIP/KMISP-IDDPanchthar/NCB-01/074-75",
"title": "construction of canal &amp; canal structures of Kanyatar Madibung ISP, phidim-6, panchthar",
"procuring_entity": "Irrigation Development Division Panchthar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "PMUN/GORKHA/04/2074/75",
"title": "Upgrading (Preparation of Subbase) of Radhakrihsna Tample to Kalamata Road (Phase I)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "DROBTL-06-074/075/24",
"title": "Recurrent Maintenance Work along MRM Butwal- Kothi section and SRM Golpark-Siddhababa section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "DROBTL-06-074/075/25",
"title": "Recurrent Maintenance works along Butwal (Ch.548+670) to Bardghat (Ch.583+000) Section of MRM and Sunwal -Parasi &amp; Mahespur-bardaghat Tribeni section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "PMUN/GORKHA/03/2074/75",
"title": "Costruction of Ward no. 3 office building Palungtaar Municipality (Upto Ground Floor)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "DROBTL-06-074/075/26",
"title": "Recurrent Maintenance along Chormara-Gaindakot Section of East-West Highway",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "DROBTL-06-074/075/27",
"title": "Recurrent Maintenance along MRM Bardaghat - Chormara Section",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-02-2018 10:00"
},
{
"rfp_no": "PMUN/GORKHA/02/2074/75",
"title": "Costruction of Wardno. 8, Office Building (Upto Ground Floor)",
"procuring_entity": "Palungtar Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-02-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/works/74/75/01",
"title": "Bir Hospital OPD Buildings Ground Floor Renovation for CT Scan &amp; USG Expand",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-02-2018 09:00"
},
{
"rfp_no": "14-074-75-DRODML/3371653/74/75-12( Specific Maintenance)(Re)",
"title": "Specific Maintenance works on Aanbu - Gorkha Road (chainage 23+120 to 23+650)",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 10:00"
},
{
"rfp_no": "14-074-75-DRODML/3373564/74/75-15(Re)",
"title": "Road Maintenance Works along Prithivi Highway at various chainages in Tanahaun District",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 10:00"
},
{
"rfp_no": "14-074-75- DRODML/3371653/74/75-17(Re)",
"title": "Recurrent Maintenance Works along Dumre &amp;#65533; Bandipur Road in Tanahaun District.",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-02-2018 10:00"
},
{
"rfp_no": "DDC/ICB/Poly/11 - 074/75",
"title": "Purchase of Polyethylene Film.",
"procuring_entity": "Dairy Development Corporation",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "30-01-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-56/EDCD/2074-75",
"title": "Procurement of Injection Liposomal Amphotericin-B",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "06-DROPLP-2074/75 (CN 021)",
"title": "Roadway Excavation &amp; Earthen Drain Works on Batase Fek Kachal Jhingamara Road, Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "06-DROPLP-2074/75 (CN 022)",
"title": "Roadway Excavation, Structural Works and Sub-Base Works on Siddhartha Highway [Chidiyakhola- Ramdi Sector], Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "DRODKT/337165-3_Rec/074/075-16",
"title": "Recurrent maintainance on KRM (Mulghat-Dhankuta-Hile-Nunthala Section)",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/337165-3_Spec/074/75-017",
"title": "Construction of Drain, Humepipe culvert and Gravelling on Dhankuta-Hile Section",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3371653_Rec/074/075-018(re)",
"title": "Recurrent maintanance works on Bhedetar-Rajarani Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 12:00"
},
{
"rfp_no": "DRODKT/3373354/074/075-019",
"title": "Road upgrading and structural works on Shreejung - Pauthak - poklabung - Simara Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3371653_Spec/074/075-20",
"title": "Specific maintainance on Bhedetar-Rajarani road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3371653_Spec/074/075-021",
"title": "Road safety works on Koshi Rajmarg Dhankuta-Hile-Guranse Section",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "DRODKT/3373354/074/075-15",
"title": "Gravelling and Gabion works on Rabi-Ranke-Rajarani-6 no. Budhware Road",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-02-2018 06:00"
},
{
"rfp_no": "1-074/75-NCB Works",
"title": "Construction of Sub-Metropolitan City Office Building",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-02-2018 11:00"
},
{
"rfp_no": "4/074-75",
"title": "Upgrading of Chutradehi-Dhankauli Road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 10:00"
},
{
"rfp_no": "Chainpur Municipality/Shankhuwasava/02/074/75/NCB",
"title": "Construction Of Municipality Office Building",
"procuring_entity": "Chainpur Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "DTO-GUL-01-074/75",
"title": "Procurement of Fabricated Steel Parts for Eight Short Span Trail Bridges in Gulmi District",
"procuring_entity": "District Technical Office (DTO), Gulmi,",
"type": "Goods  NCB",
"status": "LOA Issued",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "08/DROBRT/3373204/2074/75-24",
"title": "Wing wall construction in Bakaraha khola Bridge in Biratnagar-Rangeli-Urlabari Road",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "NCB-P5-RP7-2074/75",
"title": "Construction of Barrack and Toilet Block, with Septic Tank and Soak Pit.",
"procuring_entity": "District Police Office Kapilvastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "08/DROBRT/3371574/2074/75-25",
"title": "Construction of Two Webbed RCC Bridge in Singhya River Bridge, Gokwaghat Milanchaowk Lakhantari Hathimuda Road, Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 19:00"
},
{
"rfp_no": "DOA-62/074/075",
"title": "Reconstruction work of Baiteshwar Temple Namdu, Dolakha",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "DOA-63/074/075",
"title": "Reconstruction work of Hanuman Temple and Chautara Janakpur",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "5/074-75",
"title": "Updrading pre-mixed carpet of Dhankauli Mahuwa Road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "DOA-64/074/075",
"title": "Conservation work of Devi Mandir Ghorahi-05, Dang",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "DOA-65/074/075",
"title": "Reconstruction work of Dakchinkali Mata&amp;#65533;s Aama Than Dakchinkali, Kathmandu",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "NCB-P5-RP8-2074/75",
"title": "Construction of C-barrack Block",
"procuring_entity": "District Police Office Kapilvastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "6/074/75",
"title": "Upgrading of pre mixed carpet of Dharkhasaw - Charigawa - Pachigawa Road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "DUDBC/Ramechhap/01-074/075",
"title": "Construction of Details Project Report (DPR) of Road and Drain of main market centre in manthalli municipality area.",
"procuring_entity": "DUDBC, DIVISION OFFICE RAMECHHAP",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "MMSI/NCB/2074-75/08",
"title": "Construction of Phatakshila Water Supply Project (Package 1)",
"procuring_entity": "Melamchi Municipality Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 10:00"
},
{
"rfp_no": "NCB/19/PROSEC/2074-75",
"title": "supply and delivery of spare parts for x-ray machine",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "08/DROBRT/3371574/2074/75-26",
"title": "Construction of Two Webbed RCC Bridge in Dhadad Khola , Thalaha VDC ward no. 2 &amp; 7, Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-02-2018 19:00"
},
{
"rfp_no": "DPOTPJ/Works/NCB/1/074/75",
"title": "Construction Works Of District Post Office, Taplejung.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Taplejung",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 00:00"
},
{
"rfp_no": "MGO/074/75/38",
"title": "Supply of Ambulance, Qty-2 Units",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "21-02-2018 05:00"
},
{
"rfp_no": "MOUD/CLPIU/NRF/Service/074/075/13",
"title": "Construction Supervision of Nepal Administrative Staff College",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Consultancy EOI  QCBS",
"status": "Evaluation Pending",
"published_date": "27-02-2018 10:00"
},
{
"rfp_no": "NCB/01/Aurahi/2074/075",
"title": "Aurahi RTW Bateshwar-5 Akhilanand Dhanusha",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/03/Aurahi/2074/075",
"title": "Aurahi RTW Loharpatti-3, Mahadaiya, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/09/Rchure/2074/075",
"title": "Rastrapati Chure Sanrakshan Karya (Rato River Training Works Bardibas-7, Pashupatipur Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/05/Aurahi/2074/075",
"title": "Aurahi RTW Loharpatti-3, Tapanpur, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/08/Rchure/2074/075",
"title": "Rastrapati Chure sanrakshan Karya (Rato RTW Bardibas-6, Kisannagar, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/10/Rchure/2074/075",
"title": "Rastrapati Chure Sanrakshan Karya ( Rato River Training Works Tulasi 3,4, Dhanusha",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/11/Maraha/2074/075",
"title": "Maraha RTW Sonama-2, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/06/Rchure/2074/075",
"title": "Rastrapati Chure Sanrakshan Karya (Rato River Training works )",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/07/Rchure/2074/075",
"title": "Rastrapati Chure Sanrakshan Karya (Rato River Training Works Gauribas 1,2 Mahottari)",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/12/Maraha/2074/075",
"title": "Maraha River Training Works Sonama-8, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/04/Aurahi /2074/0 75",
"title": "Aurahi RTW Matihani-1,Sirsiya, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/13/Rato/2074/075",
"title": "Rato RTW Loharpatti-6, Mahottari",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "NCB/02/Aurahi /2074/075",
"title": "Aurahi RTW Chhireshwar-3 Pakadiya, Dhanusha",
"procuring_entity": "Peoples' Embankment Program, Field Office No. 2, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "MRM/NCB/GOODS-01/074/075",
"title": "Backhoe Loader",
"procuring_entity": "Miklajung Rural Municipality, Panchthar",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 05:00"
},
{
"rfp_no": "MRM/NCB/GOODS-02/074/075",
"title": "HDPE PIPE (NS)",
"procuring_entity": "Miklajung Rural Municipality, Panchthar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 05:00"
},
{
"rfp_no": "04/074-75/NCB",
"title": "CONSTRUCTION OF BARRACK BLOCK 1 AT JALESHWOR,MAHOTTARY",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 10:00"
},
{
"rfp_no": "PR/BLDG/DTO/Kavre/01/074-075",
"title": "Construction Of District Technical Office Building,Kavre",
"procuring_entity": "District Technical Office (DTO), Kavrepalanchowk",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "02-074/075/IDD-TRT",
"title": "Construction of canal and canal structures of Lambu Chyakche Bhanjyang Sungnam Irrigation Project, Laligurans Municipality-8, 9 &amp; 10, Terhathum.",
"procuring_entity": "Irrigation Development Division, Terathum",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "11-02-2018 10:00"
},
{
"rfp_no": "IDDOKHALDHUNGA/01/074-75",
"title": "Construction of Intake, RVT, Distribution Chamber etc. and Laying and Jointing of Pipe Line etc.of Sokmatar Jodi Khola NITP",
"procuring_entity": "Irrigation Development Division, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "IDDOKHALDHUNGA/02/074-75",
"title": "Construction of Intake, RVT, Distribution Chamber etc. and Laying and Jointing of Pipe Line etc. of Mohoriya Gaun NITP",
"procuring_entity": "Irrigation Development Division, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "IDDOKHALDHUNGA/03/074-75",
"title": "Construction of Side Intake, Canal and Canal Structures of Pokting Mulkharka Sirubari IP",
"procuring_entity": "Irrigation Development Division, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "IDDOKHALDHUNGA/04/074-75",
"title": "Construction of Side Intake, Canal and Canal Structures of Tin Dovan IP",
"procuring_entity": "Irrigation Development Division, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "DRODKT/3370144/074/075-14",
"title": "Building Construction Works",
"procuring_entity": "104 Division Road Office Dhankuta",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 06:00"
},
{
"rfp_no": "1/074/075/GBS/KASKI.",
"title": "Construction of Academic Building",
"procuring_entity": "Gandaki Boarding School",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/20/2074/75",
"title": "Printers,UPS and Other IT related Items for Nepal Airlines Corporation for F/Y 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 10:00"
},
{
"rfp_no": "11/PLMC/074-75",
"title": "Supply and Installation of Solar Street Light",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "4/074-75/NCB",
"title": "CONSTRUCTION OF BARRACK BLOCK 2 AT JALESHWOR MAHOTTARY",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "04/074--75/NCB",
"title": "Construction Of Non-Gatezzed Officer building , Jaleshwor Mahottary.",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "PCU-06/074/75",
"title": "Construction of Three Health Post Building (Type-4 HP) at Khotang District",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "PCU-07/074/75",
"title": "Construction of Two Health Post Building (Type-4 HP) at Lamjung District",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "1/NCBGOODS/KALIKA/074-75",
"title": "Supply and delivery of One Unit of Grader.",
"procuring_entity": "kalika Municipality Office , Chitwan",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "MRM/NCB/GOODS-03/074/075",
"title": "Tractor with Trailer",
"procuring_entity": "Miklajung Rural Municipality, Panchthar",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 05:00"
},
{
"rfp_no": "04/074-075/NCB",
"title": "CONSTRUCTION OF HEALTH POST BUILDING IN GONARPURA,MAHOTTARY",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "04/2074-075/NCB",
"title": "Construction of Doctor and Nurse quarter Building At Samsi,Mahottary",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "Dktl RTW-1/074/075",
"title": "Saraswati Ma. Vi. and Veterinary Office Protection Work, Khotang District",
"procuring_entity": "Water Induced Disaster Management Division Office No. 5, Okhaldhunga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 15:00"
},
{
"rfp_no": "05/MMP/074/75",
"title": "Supply of Electrical Lab Equipments",
"procuring_entity": "Manmohan Memorial Polytechnic",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "26-02-2018 00:00"
},
{
"rfp_no": "17-074/75",
"title": "Construction of Children park inside Bhairahawa SEZ, Rupandehi",
"procuring_entity": "Special Economic Zone Development Committee",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "19-074/75",
"title": "Construction of Road Railing inside Bhairahawa SEZ, Rupandehi",
"procuring_entity": "Special Economic Zone Development Committee",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "ARG/DTO/02/074/75",
"title": "Supply and delivery of fabricated steel parts for trail bridges in Arghakhanchi",
"procuring_entity": "District Technical Office (DTO), Arghakhanchi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "08-074/75 (01)",
"title": "Construction of Simply Supported, 35m Span, Cast-in-Situ,Multi-Span, Prestressed Concrete Bridge over Dhungre Khola, Jhawanighat Bridge, Kumaroj-Bachhauli, Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "08-074/75 (02)",
"title": "Construction of Simply Supported, 40m Span, Multi-Span, Cast-in-Situ, Prestressed Concrete Bridge over Dhungre Khola, Kumroj-3, Gauwaghat, Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "1/2074/-075",
"title": "Procurement of Student's Ration Tender",
"procuring_entity": "Mid Regional Police Boarding High School",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 10:00"
},
{
"rfp_no": "08-074/75-(3)",
"title": "Road construction &amp; Improvement Works on United Cement Factory Approach Road, Dhunibesi Na. Pa.,Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "02/DTO Kaski/TB/074-075",
"title": "Procurement of Fabricated Steel Parts for SSTBs",
"procuring_entity": "District Technical Office, Kaski",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 06:00"
},
{
"rfp_no": "MIP-1/074/075",
"title": "Construction of Headworks, Canal Lining &amp; Canal Structures at Githenala Irrigation Sub-Project, Thakurbaba Na. Pa. 6, Shivapur Bardiya",
"procuring_entity": "Irrigation Development Sub-Division, Bardiya",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 12:00"
},
{
"rfp_no": "08-074/75(4)",
"title": "Back cutting and Pavement works on Piplamod-Naubise Sector,Tribhuwan Rajpath",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "02/074/075-NTB",
"title": "construction of loktantric chowk to tute road(second Phase)",
"procuring_entity": "NEW TOWN PROJECT OFFICE, BASANTAPUR",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "1/2074/075",
"title": "procurement of Student's ration",
"procuring_entity": "West Regional Police Boarding High School Belchautara",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 10:00"
},
{
"rfp_no": "NPHSBSSK/RationTender 2075",
"title": "Ration Tender for Academic year 2075",
"procuring_entity": "Nepal Police School, Sanga Kavre",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "13-074/75-020",
"title": "Recurrent Maintenance Works along Prithivi Highway in Tanahaun District",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 14:30"
},
{
"rfp_no": "36/074/075",
"title": "Procurement of Video Larygoscope with Blade &amp; Adapter (Adult Size)",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "37/074/075",
"title": "Procurement of Defibrillator",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "N1SP/RIO-REG/074-75",
"title": "Construction of Senior Officer Quarter and Boundary wall at East Regional Riot Control Police Battalion, Duhabi Sunsari",
"procuring_entity": "East Regional Riot Control Police Battalion, Duhabi, Sunsari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-02-2018 00:00"
},
{
"rfp_no": "24/KPL/SM/RD/074/075",
"title": "Construction of Black Topped road of Majgau to Bishanpur Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "25/KPL/SM/RD/074/075",
"title": "Construction of Black Topped road of Jumali Naugajawa Nibihawa Laxmanpur Road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "BPKIHS/074/075/008",
"title": "Dental Instruments",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 10:00"
},
{
"rfp_no": "04/NCB/KPL/MM/RD/074/075",
"title": "Upgrading of Maharajganj Pipari Bargadi Bargada Kathautiya Kajarahawa Road(0+000to 4+000)Package-I",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "05/NCB/KPL/MM/RD/074/75",
"title": "Upgrading of Maharajganj Pipari Bargadi Bargada Kathautya Kajarahawa (4+000to8+600) Pack-II Road",
"procuring_entity": "Maharajganj Municipality",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "DORP/3373644/2074/075-06",
"title": "Road Way Excavation (Back cutting,Grade cutting and Fress Cutting),cross drainage and Road Protection Works along Madan Bhandari Marga Sadak) ( CH: 67+000 to CH: 71+000 )( Dovan-Chhange Section ),",
"procuring_entity": "North South (Taplejung-Olangchungola) Highway Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-02-2018 10:00"
},
{
"rfp_no": "BPKIHS/074/075/010",
"title": "Dental Materials (Consumables)",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 11:00"
},
{
"rfp_no": "26/NCB/KPL/SM/RD/074/75",
"title": "Construction of Black Topped road of MRM Samiti Chowk to Madawa road",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "13-2074-75",
"title": "OHT Construction 100 m3 of Harirawa WSSP (NCB:13/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "27/NCB/KPL/SM/RD/074/075",
"title": "Construction of Black Topped road of Basantpur Nayabasti School",
"procuring_entity": "Shivraj Municipality, Office of the Municipal Executive, Chandrauta",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-02-2018 10:00"
},
{
"rfp_no": "14-74-75",
"title": "OHT Construction 100 m3 of daulatpur WSSP (NCB:14/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "15-74-75",
"title": "OHT Construction 100 m3 of rampura WSSP (NCB:15/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "16-74-75",
"title": "OHT Construction 100 m3 of dadha WSSP (NCB:16/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "17-74-75",
"title": "OHT Construction 100 m3 of paterwa WSSP (NCB:17/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "18-74-75",
"title": "OHT Construction 100 m3 of lalapatti WSSP (NCB:18/074/75)",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "01/074/75 (Dhading)",
"title": "Upgradation of Daregouda Jyamire--Moudi Bhanjyang-Mewabari-Kharka-Taargaun Ghumti(Murali Bhanjyang) Road",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHADING",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "Metro/Bhr/G/NCB/06/074/075 environment",
"title": "Mini Excavator",
"procuring_entity": "Bharatpur Metropolitian City Office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-02-2018 07:00"
},
{
"rfp_no": "DTO/CHT/G/NCB/TB/01/2074-75",
"title": "Fabrication and Supplying of Steel Parts of 6 SSTB Bridges in Chitwan District",
"procuring_entity": "District Technical Office (DTO), Chitwan",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "08-02-2018 10:00"
},
{
"rfp_no": "DFTQC/NCB-02/2074-75, Package-I",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments at Department of Food Technology and Quality Control, Babarmahal, Kathmandu",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "08-02-2018 06:00"
},
{
"rfp_no": "DFTQC/NCB-02/2074-75, Package-II",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments at Department of Food Technology and Quality Control, Babarmahal, Kathmandu",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 06:00"
},
{
"rfp_no": "DFTQC/NCB-02/2074-75, Package-III",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments at Department of Food Technology and Quality Control, Babarmahal, Kathmandu",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 06:00"
},
{
"rfp_no": "DFTQC/NCB-02/2074-75, Package-IV",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments at Department of Food Technology and Quality Control, Babarmahal, Kathmandu",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 06:00"
},
{
"rfp_no": "DFTQC/NCB-02/2074-75, Package-V",
"title": "Supply, Delivery and Commissioning of Laboratory Equipments at Department of Food Technology and Quality Control, Babarmahal, Kathmandu",
"procuring_entity": "Department of Food Technalogy & Quality Control",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 06:00"
},
{
"rfp_no": "07-074-75/048",
"title": "Improvement of Mitrapark Gaurighat Nayabasti Road",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "08-02-2018 00:00"
},
{
"rfp_no": "07-074-75/049",
"title": "Construction of approach road for Bagmati River Bridge (Tamraganaga Bauddha)",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-02-2018 00:00"
},
{
"rfp_no": "01/ 2074-075",
"title": "Construction of Embankment, Revetment &amp; Stud in Saptakoshi Municipality-1, 3, Fattepur, Saptari",
"procuring_entity": "Water Induced Disaster Management Division Office No. 4, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "01/ 2074- 075",
"title": "Construction of revetment (Ghordah River) in Siraha Road &amp; western Canal, Saptari.",
"procuring_entity": "Water Induced Disaster Management Division Office No. 4, Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "RTISWAp/DTO-Jajarkot/NCB/W/04/074-75",
"title": "Narmara to Kortang VDC Link Roadway excavation Work",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-5",
"title": "Construction of bus berth and money collection building for Kohalpur Buspark",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "08-02-2018 18:00"
},
{
"rfp_no": "01 / 2074- 075",
"title": "RCTMSK/JALAD/NCB/RB-14/074-075",
"procuring_entity": "Water Induced Disaster Management Division No. 6, Dhanusha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 16:00"
},
{
"rfp_no": "RTISWAp/DTO-Jajarkot/NCB/W/05/074-75",
"title": "Batule to Talegaun and Archhani VDC Link Roadway excavation work",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "dmo/works/007",
"title": "Construction and Upgrading works of Shopping complex building.",
"procuring_entity": "Dhulikhel Municipality, Office of Municipal Executive",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "works/dmo/008",
"title": "Construction and upgrading works of Road from DMI hostel to Gandiv Chowk",
"procuring_entity": "Dhulikhel Municipality, Office of Municipal Executive",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "works/dmo/09",
"title": "Construction of Road From Dudamukh to Devitar.",
"procuring_entity": "Dhulikhel Municipality, Office of Municipal Executive",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-02-2018 00:00"
},
{
"rfp_no": "SDSBR-3371024-74/75-009",
"title": "Drain Cover, Asphalt &amp; miscellaneous works from Tinkune to Suryabinayak road",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "07-02-2018 07:00"
},
{
"rfp_no": "DOHS/G/ICB-27/EDCD/2074-75",
"title": "Procurement of Insecticides- Deltranmethrin 5% WP &amp; Labdacyhalothrin 10%WP",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "04/Solar Lift Irrigation/MDVIP/074/75",
"title": "Supply and Installation of PV Solar Module , Pump, Construction of Intake, Pump house, Overhead tank, Reservoir Tank, Laying and fitting of Pipes",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "06-02-2018 06:00"
},
{
"rfp_no": "DROPKR/3371574/074/75-37",
"title": "Construction of simple RCC single span (1* 15 m) bridge across Chhite khola along Mandalithan Chapakot Gajarkot, Chapakot Na.Pa. Syangja",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "06-02-2018 00:00"
},
{
"rfp_no": "DROPKR/3371574/074/75-38",
"title": "Construction of single span (1 * 35m) Prestressed concrete deck slab bridge across Aandhikhola along Dharedhunga bhairavkunda Road, Syangja",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-02-2018 00:00"
},
{
"rfp_no": "DROPKR/3371574/074/75-39",
"title": "Construction of three span (3 * 40m) Prestressed Concrete slab deck bridge across Andhikhola connecting Chhangchhandi-3 Swarek 8, Syangja",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "06-02-2018 00:00"
},
{
"rfp_no": "24/074-75/WSSDO, Kailali",
"title": "Detailed engineering design and study report of waste water management project package-1",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "25/074-75/WSSDO, Kailali",
"title": "Detailed engineering design and study report of waste water management project-package 2",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "21-02-2018 00:00"
},
{
"rfp_no": "04-074/75 Ilam-23",
"title": "Construction of Kabeli Khola Bridge (Prestressed 2x35) along Panchthar-Taplejung Road (Mechi Highway).",
"procuring_entity": "101 Division Road Office Illam",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "04-074/75 Ilam-22",
"title": "Construction of Laxmi Khola bridge ( prestressed 4x40m) along Danabari-8, Mahamai-7, Larumba Road, Ilam.",
"procuring_entity": "101 Division Road Office Illam",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/T12",
"title": "Drainage works at Pancha Deval - Bhashmeshwor Road",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "4/mechi/2074/75",
"title": "Supply of Excavator",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/32",
"title": "Construction of vented Causeway, Approach Road, River Training Works. (Lalbakaiya River Bridge at Katahariya, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/33",
"title": "Construction of vented Causeway, Approach Road, River Training Works. (Lalbakaiya River Bridge at Garja, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "06/Mechi/2074/075",
"title": "Procurement of Motor Grader",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "3/074-75",
"title": "Upgrading with premix carpet of Bhelai-Puraina-Gorusinge-Bakderia Road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-02-2018 10:00"
},
{
"rfp_no": "IDSD/Banke/STMIP/CNIP/NCB-01/2074-075",
"title": "Chisapani Naubasta Irrigation Sub-Project Naubasta 2&amp;3 (Baijanath-2), Banke",
"procuring_entity": "Irrigation Development Sub Division Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 06:00"
},
{
"rfp_no": "IDSD/Banke/MIP/KIP/NCB-01/2074-075",
"title": "Khokari Irrigation Sub-Project",
"procuring_entity": "Irrigation Development Sub Division Banke",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 06:00"
},
{
"rfp_no": "NCB-P5-RP6-2074/75",
"title": "Construction of Senior Officers Quarter,Deep Boring and Supply and Installation of transformer",
"procuring_entity": "Riot Control Police Battalion, Nawalparasi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "03-074/75 WSSDO-Dhading",
"title": "Construction &amp; Supply of different items for Khanikhola Co-financing Water Supply and Sanitation Project-Dhading",
"procuring_entity": "Water Supply and sanitation Division Office, Dhading",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "01 /074 /75",
"title": "Dakale- Sallaghari Blacktop Road Construction work",
"procuring_entity": "Amargadhi Municipality Office, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 06:00"
},
{
"rfp_no": "Finishing Work of Barrack Block EQRP/2074-075/NPA-02",
"title": "Finishing work of Barrack Block EQRP/2074-075/NPA-02",
"procuring_entity": "National Police Academy , Maharajgung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 11:30"
},
{
"rfp_no": "05/PMAMP/NCB/G/074-75",
"title": "Supply, delivery and commensioning of well equipped Soil Testing Mobile Laboratory Van",
"procuring_entity": "Prime Minister Agriculture Modernization Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "5/Mechi/2074/075",
"title": "Procurement of 2 nos of tripper",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/34",
"title": "Earthwork, Hume Pipe Culvert, Guidebund and Protection Works (Bakaiya River Bridge, Jaynagar Maulapur Chutaha Sadak, Dewahi-Pataura Sadak, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/35",
"title": "Construction of Pre-stressed RCC Bridge over Jhanjh Khola along Katahariya &amp;#65533; Late Anurodh Ray Yadav Jodne Sadak, Rautahat",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "DROCNP/337157-4/074-75/36",
"title": "Construction of Pre-stressed RCC Bridge over Tarhari Khola along Chhedi Chowk-Katahariya sadak, Rautahat",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "NPHL/ME/NG/NCB/7/2074/075",
"title": "purchase of machinery equipment",
"procuring_entity": "National Public Health Laborotary",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "MRM/DARCHULA/GOODS/NCB/1/074-75",
"title": "PROCUREMENT OF SUPPLY AND DELIVERY OF HYDRAULIC EXCAVATOR WITH BREAKER",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Darchula",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "05-02-2018 00:00"
},
{
"rfp_no": "DROCNP/337354-4/074-75/08 (Re)",
"title": "Sukhdev Chowk-Pipara Bazar Sadak, Rautahat",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "10-074/75 Works",
"title": "Earthen/Gravel Road Maintenace Work at Janakpur-18, Mahuwa, From House of Bechan Mukhiya to Pulkit Sah",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "11-074/75 Works",
"title": "Earthen/Gravel Road Maintenance Work at Ward No. 20, Devpura Rupaitha, From Main Road House of Shatrughan Sah to Pulkit Das and From House of Kalicharan Sah to Jaykrishna Mishra",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "12-074/75 Works",
"title": "Earthen/Gravel Road Maintenace Work at Ward No. 23, Bindhi, From House of Chulhai Jha to Kameshwar Yadav, Mosafir Nadaf, Parsuram Jha to house of Ram Chalitar",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "13-074/75 Works",
"title": "Earthen/Gravel Road Maintenance Work at Janakpur-25, Lohna, From House of Punit Mandal to Janaki Pond and house of Gyani Paaswan",
"procuring_entity": "Janakpur Sub-Metropolitan City",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 10:00"
},
{
"rfp_no": "11/074/075",
"title": "Supply of Furniture",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-02-2018 10:59"
},
{
"rfp_no": "TNN7/DRONGJ/3371653/074/75-32",
"title": "Recurrent Maintenance works on Mahendra Rajmarga(Kohalpur-Karnali Road Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 07:00"
},
{
"rfp_no": "CRM/G/NCB/ARG/01/074/75",
"title": "Supply and Delivery of Corrugated Galvanized Iron (CGI) Sheet at CRM, Arghakhanchi",
"procuring_entity": "Chhatradev Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "20-02-2018 00:00"
},
{
"rfp_no": "DROBKT/05-041/2074/075",
"title": "Recurrent Maintenance works in Gatthghar thimi,Lokanthali-DharmesworTikathali sinamangal-manohara-Thimi-Sallaghari and thimi karki gaun.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-0042/2074/075",
"title": "Road Embankment and Gravelling Works in Madhyapur Hospital Dadikot.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-043/2074/075",
"title": "Recurrent maintenance works of Kamalbinayak-Sudal-Adhikari Gaun-Nagarkot,:Bhaktapur-Army Camp-Nagarkot,Byasi-Changu Narayan,Nagarkot-Kattike and Phuyalgaun-Changunarayan-Phedigaun,Sallaghari-Duwakot and Sallaghari-Durbar Square",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-02-2018 21:00"
},
{
"rfp_no": "DROBKT/05-044/2074/075",
"title": "Black Top Work and Masonary Works in Kamal Binayak-Sudal-Adhikari Gau-Nagarkot Road",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-046/2074/075",
"title": "Road Upgrading Works in Chalnedunga- Khawa- Lamidanda- Dolalghat Roads, Kavre.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-047/2074/075",
"title": "Patch works in Chalnedhunga- Khawa- Lamidanda- Dolalghat Roads,Kavre",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-048/2074/075",
"title": "Patch works in Chymasingh-Amadol-Nala-Banepa and Jagati- Chyamasing- Kamalbinayak Road.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "DROBKT/05-0045/2074/075",
"title": "Blacktop works in Gwarko Panauti DSRM Road Bhaktapur.",
"procuring_entity": "204 Division Road Office Bhaktapur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "20-02-2018 20:00"
},
{
"rfp_no": "NCB/Works/ITHARI/05/74/75",
"title": "Design and Build of Public cum VIP Stand of Ithari Stadium",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-01-2018 23:59"
},
{
"rfp_no": "02/074-75",
"title": "Construction of the Building (Security Guard House) High Court Janakpur, Janakpurdham",
"procuring_entity": "High Court , Janakpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "GON/DCC/DAILEKH-01/074/75",
"title": "Procurement of fabrication package",
"procuring_entity": "District Technical Office Dailekh",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "MG/G/NCB/GNP/02/2074/075",
"title": "Motor Grader, Engine power output not less than 90 KW @ rated RPM and others are as per approved technical specifications.",
"procuring_entity": "Gulariya Municipality, Gulariya, Bardiya",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "DPR/Work/01/074/75",
"title": "Finishing of Information Center,Rest Room and Construction of Water Tank at Worldpeace Bio-Diversity Garden ,Raniban Kaski",
"procuring_entity": "Department of Plant Resources",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "TRHC/Sarlahi/Work/NCB/05/074-075",
"title": "Construction of Hi-tech Nursery (28m*20m)",
"procuring_entity": "Tropical Region Horticulture Center",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "LBMB/01/074/75",
"title": "The Procurement of Sheet Fed Offset Printing Machine, Perfect Binding Machine and Automatic Cutting Machine",
"procuring_entity": "Law Books Management Board",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "02/FDC/NCB/C/74-75",
"title": "Supplying and Installation of Hightech Polyhouse",
"procuring_entity": "Puspa Bikash Kendra, Godawori",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "03/FDC/NCB/C/74-75",
"title": "Supplying and Installation of Hightech Polyhouse",
"procuring_entity": "Puspa Bikash Kendra, Godawori",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "2/2074-75",
"title": "Construction of Retaining wall,Outfall and Canal lining (D/S of Pump House B, Pump Canal System)",
"procuring_entity": "Koshi Pump Chandra Nahar Irrigation Management Division",
"type": "Works  NCB",
"status": "Contract Awarded",
"published_date": "04-02-2018 07:00"
},
{
"rfp_no": "DROHKR/3371574/074/75-014 (Re)",
"title": "Construction of 25.0m Simply Supported, Cast in-situ 2-Webbed Reinforced Concrete Bridge over Thotne Khola at Odare along Barnalu - Odare - Lekkharka - Chisapani - Pokharibhanjyang - Nechabihibare Road, Okhaldhunga.",
"procuring_entity": "106 Division Road Office Harkapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-02-2018 05:00"
},
{
"rfp_no": "imo/ilam/ncb/works/04/2074/075",
"title": "Black top Road Maintenance work. (O km - Ratna chowk - Dhobidahara, Armi camp - Panitank - Sital Chowk, Balmandir - Sitalchowk - Pipalbote Chureghati, Ratna chowk -Phulgachi &amp; Golakharka Road)",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 10:30"
},
{
"rfp_no": "DROHKR/3371574/074/75-015 (Re)",
"title": "Construction of 40.0m Simply Supported, Cast in-situ 2-Webbed Pre-stressed Concrete Bridge over Thotne Khola at Dhanmuda along Rumjatar &#65533; Mamkha Road, Okhaldhunga.",
"procuring_entity": "106 Division Road Office Harkapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-02-2018 05:00"
},
{
"rfp_no": "3/2074-75",
"title": "Construction of Canal Lining and Protection work (D/S of Budhewa Aqueduct,Chandra Nahar System)",
"procuring_entity": "Koshi Pump Chandra Nahar Irrigation Management Division",
"type": "Works  NCB",
"status": "Contract Awarded",
"published_date": "04-02-2018 07:00"
},
{
"rfp_no": "10.1/PLMC/074-75",
"title": "Amkunna-Chilimdanda-simalchaur-Guntechur-Fulsedanda-Deurali Shera Road",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "10.2/PLMC/074-75",
"title": "Upgrading of Pame-Ward Office Road, PLMC-24",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "10.3/PLMC/074-75",
"title": "Upgrading of Tilahar- Kaulepani-Tareveer Road, PLMC-22",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "10.4/PLMC/074-75",
"title": "Upgrading of Dule Gauda Jibre Dhunga Kalipokhari Lugurko Road",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "10.5/PLMC/074-75",
"title": "Upgrading of Ward Office-Thuldhunga-Suraudi Road, PLMC-33",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "RJKIP/RT/NCB-01/074/075",
"title": "River Training Works for Command Area Protection of Daulatpurghat and Sankatighat Tikapur Municipality, Kailali",
"procuring_entity": "Rani Jamara Kulariya Irrigation Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 11:45"
},
{
"rfp_no": "NPA/NCB/G/2074/075-02",
"title": "Purchase of Mini Press(Digital Printing Machine)",
"procuring_entity": "National Police Academy , Maharajgung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 12:00"
},
{
"rfp_no": "02/ 074-75",
"title": "BRTW-01-074/75: Construction of Earthen Embankment and Drainage Works, Maharajgunj Mun. -10, Kajrahawa, Hardauna, Kapilvastu.",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 17:00"
},
{
"rfp_no": "DRODNG/ 3373564/074/75-025",
"title": "Road improvement works along Ameliya -Tulshipur Section of Rapti Rajmarga (KM 2+5000 - KM 10+000)",
"procuring_entity": "402 Division Road Office Dang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 18:30"
},
{
"rfp_no": "02/074/ 75",
"title": "BRTW-02-074/75 : Construction of Gabion Spurs and Revetment, Maharajgunj Mun. -10, Hardauna, Kapilvastu",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 17:00"
},
{
"rfp_no": "02-074/ 75",
"title": "SRTW-04-074/75: Construction of Gabion Sloping Revetment with RCC Lining, Krishnanagar Mun.-05, Dabara,Kapilvastu.",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-02-2018 17:00"
},
{
"rfp_no": "BAPIDP-SC-01/2074-75",
"title": "Bagmati Area Physical Infrastructure Development Project",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-02-2018 00:00"
},
{
"rfp_no": "BPKMCH/ICB-1/2018-19",
"title": "Latest Iridium-192 based High Dose Rate Brachytherapy Machine &#65533; 1 Set",
"procuring_entity": "B.P. Koirala Memorial Cancer Hospital",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "PUCO-NCB-01/074/75",
"title": "Construction of Academic Block of Janta Aadarsha Multiple Campus (JAMC), PU",
"procuring_entity": "Purbanchal University, Central Office (PU)",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 10:00"
},
{
"rfp_no": "1/074-075",
"title": "Laboratory Building Construction work at District Plant Office, Nepalgunj, Banke.",
"procuring_entity": "District Plant Office, Banke",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-02-2018 10:00"
},
{
"rfp_no": "imo/ilam/ncb/work/01/2074/075",
"title": "Construction of Ward office building, Ilam Municipality ward no 4.",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 00:00"
},
{
"rfp_no": "imo/ilam/ncb/works/02/2074/075",
"title": "Construction of Ward office building, Ilam Municipality ward no 3.",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 10:30"
},
{
"rfp_no": "imo/ilam/ncb/works/03/2074/075",
"title": "Construction of Ward office building, Ilam Municipality ward no 11.",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 10:30"
},
{
"rfp_no": "Arjundhara/Jhapa/NCB/Works/05-074/075",
"title": "Construction of Office Building",
"procuring_entity": "Arjundhara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/T11",
"title": "Pashupati Paripath Nirman works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "09/074/075",
"title": "Construction of Office Building",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "2/074-75",
"title": "Road upgrading with premix carpet of Takihawa -Manpur-Sekhuniyatal-Bishnapur-Derawa village road",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-02-2018 10:00"
},
{
"rfp_no": "01/MCVTC/074/075",
"title": "Supply,Delivery,Installation and Commissioning of Cath Lab Machine",
"procuring_entity": "Manmohan Cardiothoracic Vascular and Transplant Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "JSMC/NCB/ 4-074/075",
"title": "Supply &amp; Delivery of 4WD Motor grader",
"procuring_entity": "Jeetpursimara Sub metropolitan city",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "JSMC/NCB/ 5-074/075",
"title": "Supply &amp; Delivery of 4WD Hardtop Jeep",
"procuring_entity": "Jeetpursimara Sub metropolitan city",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "JSMC/NCB/ 6-074/075",
"title": "Supply &amp; Delivery of 4WD HYDRAULIC TIPPER(5 CUB. MT.)",
"procuring_entity": "Jeetpursimara Sub metropolitan city",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "JSMC/NCB/ 7-074/075",
"title": "Supply &amp; Delivery of 4WD HYDRAULIC TIPPER (7.5 CUB MT)",
"procuring_entity": "Jeetpursimara Sub metropolitan city",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373354/074/75-21",
"title": "Construction of Black Top Work on Buspark - ABC School-Salyanibag Road",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373354/074/75-22",
"title": "Rehabilitation Work on Gulariya-Magaragadi-Rammapur Road",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373564/074/75-23",
"title": "Road Upgrading works on Bansgadhi -Mainapokhar Road",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "12-074/75",
"title": "Black Top works along Mirmi &amp;#65533; Kyakmi - Bhimad road.",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "01/Solar Lift Irrigation/MDVIP/074/75",
"title": "Construction of Solar Lift Pipe Irrigation system",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373204/074/75-24",
"title": "Bridge Protection Works (Gabion Protection) at Aurahi Bridge on Thakurdwar-Khata Road",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373204/074/75-25",
"title": "Roadside &amp; Bridge Protection (Gabion Protection) Works at Auri Bridge on MRM (Kohalpur-Karnali) Section",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "02/Solar Lift Irrigation/MDVIP/074/75",
"title": "Construction of Solar Lift Irrigation System",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373204/074/75-26",
"title": "Bridge Protection work on MRM (Agaiya -Kohalpur) Section (at Gandheli, Muguwa &amp; Paruwa Bridge)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "TNN6/DRONGJ/3373204/074/75-27",
"title": "Bridge Protection work on MRM (Shivakhola -Agaiya) Section (at Khoche and Gavar Bridge)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 07:00"
},
{
"rfp_no": "03/Solar Lift Irrigation/MDVIP/074/75",
"title": "Construction of Solar Lift Pipe Irrigation System",
"procuring_entity": "MDVIP",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "DUDBC/Dang/work/NCB/04/074-75",
"title": "CONSTRUCTION OF CHANDANI TOL RAOD AND DRAINAGE AT TULASHIPUR METROPOLITAN , DANG",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-30",
"title": "Recurrent maintenance of Bituminous surface works at Kadamaha-Gaighat Road. Contract no.:- DROLHN/337165-3(Rec) /074/075-30",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-32",
"title": "Repair &amp; Maintenance of Potholes &amp; Damage Bituminous Surface works at Rupani-Rajbiraj-Kunauli Road(F004), Contract No. :- DROLHN/337165-3(Rec) /074/075-32",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-33",
"title": "Repair &amp; Maintenance of Potholes &amp; Damage Bituminous Surface works at MRM Koshi-Balan Sector, Contract No.:- DROLHN/337165-3(Rec) /074/075-33",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-34",
"title": "Repair &amp; Maintenance of Potholes &amp; Damage Bituminous Surface works at Rajbiraj-Hanumannagar-Bhardah Road, Contract No.:-DROLHN/337165-3(Rec) /074/075-34",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-37",
"title": "Supply and Delivery of Bitumen(80/100) and Emulsion MS 65 at DRO, Lahan, Contract No.:- DROLHN/337165-3 /074/075-37",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-38",
"title": "Supply and Delivery of Chips Aggregate(10mm down) &amp; Crushed Stone Bases (40mm down) at DRO, Lahan, Contract no.:-DROLHN/337165-3 /074/075-38",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-35",
"title": "Recurrent maintenance Works at Dhangadhi-Sukhipur-Bariyarpatti Road (Ch 0+000 to 5+000), Contract No.:-DROLHN/337165-3(Rec) /074/075-35",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "T3/074/75-36",
"title": "Construction of Stone Masonry Wall at MRM Balan-Kamala Sector, Contract No.:- DROLHN/337165-3(Spec) /074/075-36",
"procuring_entity": "107 Division Road Office Lahan",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-02-2018 00:00"
},
{
"rfp_no": "BPKIHS/074/075/002",
"title": "Electrical Operation and Maintenance",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 11:00"
},
{
"rfp_no": "Kageshwori/IFB-04",
"title": "Construction of black top bituminous road from Bista gaun chowk to Ganesh mandir",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 05:00"
},
{
"rfp_no": "BPKIHS/074/075/006",
"title": "Food Stuff (Ration)",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 11:00"
},
{
"rfp_no": "SRMT/Hydraulic-Excavator/2074/075/01",
"title": "Procurement &amp; Supplying of Equipment Hydraulic Excavator with Breaker",
"procuring_entity": "Sidingwa Rural Municipality ,Taplejung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "12/2074/075",
"title": "NEB-Vehicles (Pick-up) National Competitive Bidding (NCB) IFB No. 12/2074/075",
"procuring_entity": "National Examinations Board , Madhyapur Thimi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 10:00"
},
{
"rfp_no": "SRMT/4WD-Tractor/2074/075/03",
"title": "Procurement &amp; Supplying Of 4WD Tractor.",
"procuring_entity": "Sidingwa Rural Municipality ,Taplejung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "Kageshwori/IFB-05",
"title": "Construction black top bituminous road from Chiple gauda to Mahantar",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 00:00"
},
{
"rfp_no": "SRMT/Backhoe-Loader/2074/075/02",
"title": "Procurement and supplying of Backhoe Loader.",
"procuring_entity": "Sidingwa Rural Municipality ,Taplejung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "02-02-2018 00:00"
},
{
"rfp_no": "Kageshwori/IFB-06",
"title": "Construction of RCC over head and underground reservoir tank for Kadaghari DWSS",
"procuring_entity": "Kageshwori Manohara Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 13:00"
},
{
"rfp_no": "NCB/2074-075/08",
"title": "Design, supply , installation and commissioning of solar street light at Bardghat Municipality",
"procuring_entity": "Bardaghat Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 00:00"
},
{
"rfp_no": "01-DTO/RCRE/2074/075",
"title": "Hospital office Building Construction",
"procuring_entity": "District Technical Office (DTO), Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "07/DROBRT/3373554/074/75-22",
"title": "Blacktopped Road Construction Works including drainage structure in Dharan-Bypass-seuti-Zero point",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "07/DROBRT/3373204/074/75-23",
"title": "Rriver training Works in Gachhiya Bridge Protection",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "07/DROBRT/3373554/074/75-21",
"title": "Construction of Blacktopped Road Including Drain &amp; Pipe Culvert in Gandhi Manmohan Marg Morang",
"procuring_entity": "105 Division Road Office Biratnagar",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "02-DTO/RCRE/2074/075",
"title": "Additional Hospital Building Construction",
"procuring_entity": "District Technical Office (DTO), Siraha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-02-2018 14:00"
},
{
"rfp_no": "DOHS/G/ICB-41.7/PHCRD/2074/075",
"title": "Supply &amp; delivery of Capsule Amoxicillin 500 mg",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.14/PHCRD/2074/075",
"title": "Procurement of Acyclovir 200 mg Tab",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-41.25/PHCRD/2074/075",
"title": "Procurement of Clotrimazole Skin Cream 25 gm 1% w/w",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "09-02-2018 00:00"
},
{
"rfp_no": "NLIS/BRIHOD/NCB/07/074-75",
"title": "Construction of lined canal",
"procuring_entity": "Narayani Lift , Khageri Irrigation Management Division , Bharatpur, Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-02-2018 12:15"
},
{
"rfp_no": "05-mun-2074-075/GABS",
"title": "Supply of Machine Made Gabion Box",
"procuring_entity": "Pyuthan Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-02-2018 07:00"
},
{
"rfp_no": "12/2074/75_CN01",
"title": "Design and Build of Dudhaura Bridge, East West Highway, Bara",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "12/2074/75-CN02",
"title": "Design and Build of Karnali River Bridge connecting Bologhat Lagaam VDC",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "12/2074/75-CN04",
"title": "Design and Build of Dudhkoshi River Bridge, Juminghat",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "12/2074/75_CN03",
"title": "Design and Build of Dudhkoshi River Bridge, Diplighat",
"procuring_entity": "Bridge Branch",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "DROJML 3.1-074/075",
"title": "Pavement and Structure works along Nagma Gamgadhi Road (Ch. 17+500 to 25+040) in Jumla Dstrict.",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-01-2018 13:00"
},
{
"rfp_no": "NAMS/NCB/74/75/17",
"title": "Supply &amp; Delivery of 5 Seater Van",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 09:00"
},
{
"rfp_no": "NAMS/NCB/74/75/19",
"title": "Around 14 Seat Capacity Small Bus (Van)",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 09:00"
},
{
"rfp_no": "Padt/2074-075/Goods/T1",
"title": "Supply and Installation of Walk Through gate and Hand Metal Detector",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "SSRC 11-74/75",
"title": "Construction of sentry post at Singhdurbar Premises.",
"procuring_entity": "Singhdurbar Secretariat Reconstruction Committee",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "15-02-2018 00:00"
},
{
"rfp_no": "DUDBC/CS/AIIB/QCBS-013 /ICB/2018",
"title": "Preparation of a Proposed Urban Infrastructure Investment Project of Selected Municipalities of Terai Region of Nepal (AIIB TA Grant Project)",
"procuring_entity": "Department of Urban Development & Building Construction",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "13-02-2018 21:00"
},
{
"rfp_no": "LBU/Work/NBC/01-074/75",
"title": "Construction of Decorative stupa with pond and LandScaping work",
"procuring_entity": "Lumbini Buddhist University",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "30-01-2018 12:00"
},
{
"rfp_no": "01/074--75/NCB",
"title": "Construction of Infrastructure in Bhelhi, Brahampuri, Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "18-01-2018 00:00"
},
{
"rfp_no": "DOHS/G/ NCB-51/EDCD/2074-75",
"title": "Procurement of Water Quality Test Machine",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "IFB NO. BC02/GhatgaunSolar Lift Irrigation/BBDMP/074/75",
"title": "Supply Solar Panel,Solar Pump , Inverter with all accessories including transportation &amp; Installation",
"procuring_entity": "Bheri Babai Diversion Multipurpose Project, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "DCC/GORKHA /G/TB/ NCB-04/074/075",
"title": "Fabrication and delivery of steel parts for 8 trail bridges",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 13:30"
},
{
"rfp_no": "02/074-075/WSSDO BKT",
"title": "Construction of 225 CUM RCC Overhead Tank of Saraswotikhel WS Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Bhaktapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "01/074-075/WSSDO BKT",
"title": "Construction of 225 CUM Overhead Tank of Sim WSP Dadhikot-1 Biruwa",
"procuring_entity": "Water Supply and Sanitation Division Office, Bhaktapur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/SIA-IU/02/River Training/074 -75",
"title": "River Training and Other Associated Works at Bara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/04/Downstream Protection/074-75",
"title": "Downstream Protection Works of Drain No-3 &amp; No-4 and Other Associated Works at Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/SIA-IU/010/Fencing/074-75",
"title": "Fencing Works at Various Part of Airport Area and Other Associated Works at Bara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "2/mechi/2074/075",
"title": "4 BWD PICK UP SUPPLY WORK",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "3/Mechi/2074/075",
"title": "Supply of tractor as per specification provided",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "KTFT/NCB/74/75/17",
"title": "Supply of Drone",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 16:00"
},
{
"rfp_no": "IFB NO. BC03/Aapkholi & Bulbule Solar Lift",
"title": "Supply Solar Panel,Solar Pump , Inverter, Pipe, Construction of Pump house, RVT with all accessories including transportation &amp; Installation work",
"procuring_entity": "Bheri Babai Diversion Multipurpose Project, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "29-01-2018 00:00"
},
{
"rfp_no": "03/2074/2075",
"title": "Side Drain, R.C.C.and Foot path construction work of Middle line of Bode Barsain Market",
"procuring_entity": "Office of Muncipal Executive, Bode Barsain Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 10:00"
},
{
"rfp_no": "02/2074/2075",
"title": "Side Drain, R.C.C.and Foot path construction work of East line of Bode Barsain Market",
"procuring_entity": "Office of Muncipal Executive, Bode Barsain Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 10:00"
},
{
"rfp_no": "04/2074/2075",
"title": "Side Drain, R.C.C.and Foot path construction Work of West line of Bode Barsain Market.",
"procuring_entity": "Office of Muncipal Executive, Bode Barsain Municipality, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "29-01-2018 10:00"
},
{
"rfp_no": "DOHS/G/ICB-21/EDCD/2074/075",
"title": "RE-Procurement of Anti Rabies Vaccine",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "RCIDP/074-75/01",
"title": "Construction of Earthen Embankment (Ch 1+900)",
"procuring_entity": "Rupatal Conservation Integrated Development Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/GBAUP-IU/08/Building/074-75",
"title": "Construction of Office Building and Other Associated Works at Bhairahawa",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "RCIDP/074-75/02",
"title": "Construction of Earthen Embankment (Ch 0+000)",
"procuring_entity": "Rupatal Conservation Integrated Development Project",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "01/074/075 NIDO kaski",
"title": "National Investigation District office Building Construction Kaski.",
"procuring_entity": "National Investigation District Office, Kaski",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 10:00"
},
{
"rfp_no": "RCIDP/074-75/03",
"title": "Construction of Revetment",
"procuring_entity": "Rupatal Conservation Integrated Development Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "DCC/GORKHA/MB/NCB-1/074/075",
"title": "Construction of Badahare Khola Box Culvert.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 13:00"
},
{
"rfp_no": "RCIDP/074-75/04",
"title": "Construction of Check Dams",
"procuring_entity": "Rupatal Conservation Integrated Development Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "RCIDP/074-75/05",
"title": "Construction of De-silting Basin",
"procuring_entity": "Rupatal Conservation Integrated Development Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "DCC/GORKHA/MB/NCB-02/074/075",
"title": "Construction of Lakham Khola Box Culvert",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 13:00"
},
{
"rfp_no": "DCC/GORKHA /MB/NCB-3/2074/075",
"title": "Construction of Khar Khola motorable Bridge Gorkha.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Gorkha",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 13:00"
},
{
"rfp_no": "DTO /Myagdi/Goods/NCB/TB/01(074/75)",
"title": "Fabricated Steel Parts for Short Span Trail Bridge, SSTB",
"procuring_entity": "District Technical Office, Myagdi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "NID/Civil/ 02/2074-075",
"title": "Construction of Commercial Building at Eastern side of Nepalgunj Industrial District Joining Surkhet Road",
"procuring_entity": "Nepalgunj Industrial District Management Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU /03/Drain Cover/074-75",
"title": "Construction of Drain Cover and Other Associated Works at Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/05/Culvert/074-75",
"title": "Culvert Construction and Other Associated Works at Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/06/ River Training Cover/074-75",
"title": "River Training and Other Associated Works at Bijaypur Khola, Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "10-2074-75",
"title": "NEB-Procurement of Stationeries &amp; Office Supplies National Competitive Bidding (NCB) IFB No. 10/2074/075",
"procuring_entity": "National Examinations Board , Madhyapur Thimi",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 10:00"
},
{
"rfp_no": "03/074-75",
"title": "Construction of Dora Khola RCC box Bridge",
"procuring_entity": "District Technical Office (DTO), Rautahat",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 08:00"
},
{
"rfp_no": "NIDO/Salyan/Works/NBC/01/074/75",
"title": "Construction of National Investigation District office Building, Salyan",
"procuring_entity": "National Investigation District Office, Salyan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "01/SSTB/SWAP/074/75",
"title": "FABRICATION PACKAGE(Fabricated Steel Parts for Short Span Trail Bridge, SSTB)",
"procuring_entity": "District Technical Office (DTO), Solukhumbhu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "06/SRTP/WIDMD22/074-75",
"title": "Construction of Spur on Shivaganga River Training Project, Dhangadhi Sub-Metomucipality-17, Deepnagar",
"procuring_entity": "Water Induced Disaster Management Division No. 22, Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 06:00"
},
{
"rfp_no": "07/SRTP/WIDMD22/074 -75",
"title": "Construction of Embankment with Revetment and stud on Shivganga River Training Project, Dhangadhi Sub-Metro municipality-15",
"procuring_entity": "Water Induced Disaster Management Division No. 22, Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 06:00"
},
{
"rfp_no": "08/SRTP/WIDMD22/074 -75",
"title": "Construction of Embankment with revetment and stud on Shivaganga River Training Project, Dhangadhi Sub-metro municipality-15 Shantikatan",
"procuring_entity": "Water Induced Disaster Management Division No. 22, Kailali",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 06:00"
},
{
"rfp_no": "CRM/G/NCB/ARG/02/074/75",
"title": "Supply and delivery of Fabricated Steel Tubular Poles at the location of Chhatradev rural Municipality, Chhatragunj Arghakhanchi",
"procuring_entity": "Chhatradev Rural Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "MMSI/NCB/2074-75/001",
"title": "Construction of Temporary Ward office building AT Dubachour",
"procuring_entity": "Melamchi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-02-2018 10:00"
},
{
"rfp_no": "DOHS/G/NCB-3/CHD",
"title": "Procurement of Fortified Flour-673,500 KG",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 00:00"
},
{
"rfp_no": "MRTP 01/074-75",
"title": "Construction of RCC Retaining Wall with Counterfort and Service road along the left Bank of Mahakali River in Head- Quarter of Darchula(Remaining Works)",
"procuring_entity": "Mahakali River Training Project, Darchula",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-01-2018 00:00"
},
{
"rfp_no": "MRTP 02/074-75",
"title": "Construction of Gabion Toe Wall &amp; Stud along Left Bank of Mahakali River in Other Area.",
"procuring_entity": "Mahakali River Training Project, Darchula",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "25-01-2018 00:00"
},
{
"rfp_no": "DUDBC/Works/NCB/1/2074/75",
"title": "Construction of Bunker",
"procuring_entity": "Department of Urban Development & Building Construction",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 15:00"
},
{
"rfp_no": "MMSI/NCB/2074-75/05",
"title": "Construction of Melamchi Municipality Office Road",
"procuring_entity": "Melamchi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 10:00"
},
{
"rfp_no": "PUCO-NCB-G-01/2074-075",
"title": "Bidding Document for Purchasing and Delivery Of Light Vehicle Min. 1195CC, 2W Jeep type Vehicle Min. 1240CC And Bus(40 Seater)",
"procuring_entity": "Purbanchal University, Central Office (PU)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 10:00"
},
{
"rfp_no": "MMSI/NCB/2074-75/06",
"title": "Construction of Melamchi City Park",
"procuring_entity": "Melamchi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 10:00"
},
{
"rfp_no": "MPCKIRTIPUR/REG/2074-75/01",
"title": "Construction of Office, Mess and Toilet block with Septic Tank and Soak pit",
"procuring_entity": "Metropolitian Circle Kirtipur, Kathamandu",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 11:30"
},
{
"rfp_no": "DORMEB/3370124/074-75/04",
"title": "Supply and Delivery of Tipper Truck",
"procuring_entity": "Mechanical Branch",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 00:00"
},
{
"rfp_no": "DORMEB/3370124/074-75/05",
"title": "Supply and Delivery of Water Tanker",
"procuring_entity": "Mechanical Branch",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 00:00"
},
{
"rfp_no": "TNN5/DROSKT/337165-3/074/75-26",
"title": "Specific Maintenance Works on Surkhet-Jumla Road, Surkhet, Dailekh (Ch: 100+000km to 132+000km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337165-3/074/75-27",
"title": "Recurrent Maintenance Works on Surkhet-Jumla Road, Surkhet (Ch: 58+000km to 60+000km and 106+000km to 120+000km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337165-3/074/75-28",
"title": "Recurrent Maintenance Works on Surkhet-Ranimatta-Dailekh Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337165-3/074/75-29",
"title": "Bridge Minor Maintenance Works on Surkhet-Jumla Road, Surkhet, Dailekh (Ch: 0+000km to 132+000km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-30",
"title": "Roadway Cutting, Improvement and Gabion Wall Construction Works in Beteni-Khola- Dwangdwange-Bidhyalaya-Simle-Piple-Dote Road Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-31",
"title": "Roadway Cutting, Improvement and Gabion Wall Construction Works in Bakharka-Kafalkot Badhsala Jitejuwa Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-32",
"title": "Roadway Cutting, Improvement and Gabion Wall Construction Works in Neta-Majuwa-Chyarkule Khola Hundai Gogane Bata Lapan Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-33",
"title": "Roadway Excavation and Structure Works along Surkhet-Pokhare-Bakhandanda-Dharapani Salyan Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-34",
"title": "Roadway Cutting, Improvement and Gabion Wall Construction Works in Surkhet Gumichuli Daha Ranibas Gandra Ghoreta Sima Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-35",
"title": "Roadway Cutting, Improvement and Gabion Wall Construction Works in Gojibazar-Jumli Amrai-Saukhola-Aarudanda-Dandakhali Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-36",
"title": "Roadway Improvement Works on Chupra-Kotila-Mulki-Dullu Road, Dailekh (Chainage: 4+000km to 5+000km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337335-4/074/75-37",
"title": "Roadway Improvement Works on Gutu-Bijaura-Betan-Lagam Road, Surkhet (Chainage: 6+000km to 51+800km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337355-4/074/75-38",
"title": "Roadway Construction Works in Surkhet Gumichuli Daha Ranibas Gandra Ghoreta Sima Road, Surkhet",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "TNN5/DROSKT/337355-4/074/75-40",
"title": "Roadway Excavation Structures Works in Mathillo Dungeshwor-Baika-Dullu Road, Dailekh (Ch: 0+000km to 33+500km)",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 03:00"
},
{
"rfp_no": "JCO 08 / 09/10 2074-75",
"title": "truss shade, sentry checkpost with main gate construction",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 11:00"
},
{
"rfp_no": "JCO 08/ 09/10 2074-75/",
"title": "temple building construction",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "26-01-2018 11:00"
},
{
"rfp_no": "BAPIDP-PA1-074/75",
"title": "Construction of Stone Pavement and Allied Works at Pashupati Area under the Bagmati Area Physical Infrastructure Development Project (BAPIDP)",
"procuring_entity": "High Powered Committee for Integrated Development of The Bagmati Civilization",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-02-2018 00:00"
},
{
"rfp_no": "05-074-75/038",
"title": "Road extension and improvement of Ganeshchowk Chunikhel Kaudole Gamcha Sapatar",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-11-2017 23:00"
},
{
"rfp_no": "BPKIHS/074/075/001",
"title": "Emergency Expansion Building",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "25-01-2018 11:00"
},
{
"rfp_no": "BPKIHS/074/075/003",
"title": "Academic Block Repair and Maintenance Work",
"procuring_entity": "B.P. Koirala Institute of Health Sciences",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 11:00"
},
{
"rfp_no": "NCB/Works-3/SAG/ADMIN",
"title": "Construction of Administration Building at Tripureshwor, Kathmandu.",
"procuring_entity": "National Sports Council",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "26-01-2018 00:00"
},
{
"rfp_no": "01/EEAP/2074/75",
"title": "Construction of Patichaur - Maidan - Lapsibot Road Section",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Parbat",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "24-01-2018 10:00"
},
{
"rfp_no": "STMSBK/IDD-CHITWAN/MIP/01/74-75",
"title": "Kayer Kalika Irrigation Project",
"procuring_entity": "Irrigation Development Division Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 05:00"
},
{
"rfp_no": "BMP/NCB/WORKS/2074-075/5",
"title": "For Extension of Municipal Building (SECOND FLOOR)",
"procuring_entity": "Bhimeshwor Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 00:00"
},
{
"rfp_no": "207 4-075/01",
"title": "1)Backhoe Loader",
"procuring_entity": "Mahabharat Rural Municipality, Kavre",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 00:00"
},
{
"rfp_no": "20 74-075/02",
"title": "Hdydraulic Evcavator with Breaker",
"procuring_entity": "Mahabharat Rural Municipality, Kavre",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 00:00"
},
{
"rfp_no": "JCO 05/ 06/07 2074-75",
"title": "Canteen building construction.",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 11:00"
},
{
"rfp_no": "JCO 05/ 06 /07 2074-75",
"title": "Passenger-gate section trust building construction with exit gate",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 11:00"
},
{
"rfp_no": "JCO 05/ 06/07 2074-75/",
"title": "Broker(agent)building construction",
"procuring_entity": "Jaleshwor Customs Office, Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 11:00"
},
{
"rfp_no": "08/074/075",
"title": "Blacktop repairing works",
"procuring_entity": "Butwal Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 16:00"
},
{
"rfp_no": "07-074-75/045",
"title": "Supply of Bitumen at DRO Yard",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "07-074-75/046",
"title": "Thermoplastic painting on various SRN/SURN Roads",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "07-074-75/047",
"title": "Construction of office building/ shed at DRO Kathmandu-1",
"procuring_entity": "206 Division Road Office Kathmandu1",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "07-02-2018 01:00"
},
{
"rfp_no": "NCB/02/FY/074/75",
"title": "1/2&quot; WATER REVENUE METER NCB/02/FY/074/75",
"procuring_entity": "Kathmandu Upatyaka khanepani Limited",
"type": "Goods  NCB",
"status": "LOI Issued",
"published_date": "24-01-2018 10:00"
},
{
"rfp_no": "01/074-75 WQS-DWSS",
"title": "Supply of Water Quality Testing Mobile Van",
"procuring_entity": "Water Quality Section",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "02/074-75 WQS-DWSS",
"title": "Supply of Water Quality Test Kits",
"procuring_entity": "Water Quality Section",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "6-074/75(1)",
"title": "Construction of Simply Supported 25m Span, Cast-in-Situ,2-webbed Reinforced Concrete Slab-Deck Bridge over Chyatra Khola , Rapti Na. Pa.-11,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "6-074/75(2)",
"title": "Construction of Simply Supported 25m Span, Cast-in-Situ,2-webbed Reinforced Concrete Slab-Deck Bridge over Rimaldi Khola, Dhading",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/19/2074/75",
"title": "Personal Protective Equipments for Nepal Airlines Corporation for Fiscal Year 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 10:00"
},
{
"rfp_no": "SWAp/G/TB/DTO/Tehrathum/01/2074-75",
"title": "procurement of fabricated steel parts of suspension bridge(Sabeya Truss,Myangkhuwa Truss,Hinguwa Truss,Seradunga Suspended,Sarkedanda Suspended)",
"procuring_entity": "District Technical Office,Terhathum",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 08:00"
},
{
"rfp_no": "22/074/075",
"title": "Procurement of Sports Utility Vehicle (SUV), Two Wheel Drive",
"procuring_entity": "Civil Service Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "DROPKR/3371344/074/75-35",
"title": "Upgrading of Mirdi Kyakmi Bhimad Road (0+000 to 1+500) Syangja",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "DROPKR/3373354/074/75-36",
"title": "Construction of RCC retaining wall at Pokhara Ringroad at Matepani Gumba",
"procuring_entity": "302 Division Road Office Pokhara",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "03-074/75 DOB",
"title": "SUPPLY AND INSTALLATION OF SOLAR STREET LIGHT AT PATAN, BAITADI",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "001/74/75",
"title": "Construction of Office building of NIDO,Sunsari at Inaruwa",
"procuring_entity": "National Investigation District Office, Inaruwa ,Sunsari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "SRH/NCB/WORKS/04/074/75",
"title": "Finishing Works of Hospital Blocks",
"procuring_entity": "Sub. Regional Hospital, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "CAAN-CNAD-NCB-02-074-75",
"title": "The Supply and Delivery of Airport VHF Communication System and Accessories",
"procuring_entity": "Communication And Navigation Aid Department, Civil Aviation Authority of Nepal",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 10:00"
},
{
"rfp_no": "7-074/75 SMC",
"title": "Construction of 3 No. Ward Office Building, Shuklagandaki Municipality &amp;#65533; 03, Tanahun.",
"procuring_entity": "Suklagandaki Municipality",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "24-01-2018 11:00"
},
{
"rfp_no": "NRTW-RB/16-074/75",
"title": "Construction of Spur, RBM embankment with Revet. and launc. appron,Gaidakot-9&amp;10, Kawasoti-11,12 &amp;17, Madhyabindu -02 of Nawalparasi district",
"procuring_entity": "Narayani River Training Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 16:00"
},
{
"rfp_no": "8-074/75 SMC",
"title": "Construction of 4 No. Ward Office Building, Shuklagandaki Municipality &amp;#65533; 04,Tanahun.",
"procuring_entity": "Suklagandaki Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 11:00"
},
{
"rfp_no": "9-074/75 SMC",
"title": "Construction of 10 No. Ward Office Building, Shuklagandaki Municipality &amp;#65533; 10,Tanahun.",
"procuring_entity": "Suklagandaki Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 10:00"
},
{
"rfp_no": "NRTWS-LB/02-074/75",
"title": "Construction &amp; Maintenance of Spurs,embankment ,Sloping Revetment (Left-Bank),Susta Rural Municipality-05, Susta Nawalparasi",
"procuring_entity": "Narayani River Training Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 16:00"
},
{
"rfp_no": "NRTW-LB/24-074/75",
"title": "Construction of Spur, Maintenance of RBM Embankment with Revetment and launching apron,Bharatpur-04 (Ramghat &amp; Gaindachowk) &amp; 17,18 ,28 (Kataharbot Laukhuri), Chitwan",
"procuring_entity": "Narayani River Training Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 16:00"
},
{
"rfp_no": "KTDC/Kohalpur/NCB/074/075-06",
"title": "Construction of Ticket Counter and Asphalt Concrete at Kohalpur Bus park",
"procuring_entity": "Kohalpur Town Development Committee, Kohalpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "24-01-2018 17:30"
},
{
"rfp_no": "7-074/75(1)-Re",
"title": "Supply of furniture and furnishing items for office use.",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "7-074/75(2)-Re",
"title": "Supply of Stationary goods and accessories for official use",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "7-074/75(3) Re",
"title": "Supply of 3-Laptop , 1-Duplex Printer and Ascesories",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "16-02-2018 00:00"
},
{
"rfp_no": "01/DKT/074/75",
"title": "Rehabilitation and Reconstruction of Bhedetar-Mahabharat - Ahale - Barahkshetra Road",
"procuring_entity": "District Technical Office (DTO), Dhankuta",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "23-01-2018 12:00"
},
{
"rfp_no": "DPOKALI/REG/2074-075/01",
"title": "Construction of Barrack Block,In-charge quarter,Toilet &amp; Shower Block,Retaining Wall with Septic Tank and Soak Pit.",
"procuring_entity": "District Police Office, Kalikot",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "22-01-2018 11:00"
},
{
"rfp_no": "DROSNF/3-01/074-75",
"title": "Slope Stabilization work at Sanfe- Mangalsen, Martadi Road( Chainage: 0+800, near Totasal Bazar)",
"procuring_entity": "501 Division Road Office Sanphebagar",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "NIDO/Saptari/Work/NCB/1/074/075",
"title": "Construction of Office Building",
"procuring_entity": "National Investigation District Office, Saptari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "Mun/Elec/W2/2074/75",
"title": "Supply and Insallationn of High-tension line for Bauraha-Sitalpur Electrification",
"procuring_entity": "Lamahi Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "KTFT/NCB/74/75/16",
"title": "Supply of Tractor",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 12:00"
},
{
"rfp_no": "1-74-75",
"title": "Farsaith 01-74-75, Drilling and installation of Deep Tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "2-74-75",
"title": "sarswor 02-74-75, Drilling and installation of Deep Tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "3-74-75",
"title": "saptakoshi 03-74-75, Drilling and installation of Deep Tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "04-74-75",
"title": "arnaha 04-74-75, Drilling and installation of Deep Tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "05-74-75",
"title": "kabilasha 05-74-75, Drilling and installation of Deep Tubewell",
"procuring_entity": "Water Supply and Sanitation Division Office, Saptari",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "SDSBR-3371024-074/75-011",
"title": "Painting of Road Furniture in section I &amp; II (Bardibas -Khurkot Road section)",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  Sealed Quotation",
"status": "LOA Issued",
"published_date": "07-02-2018 07:00"
},
{
"rfp_no": "1/074-75",
"title": "Supply and Delivery of Motor Grader",
"procuring_entity": "Buddhabhumi Municipality Office, Kapilbastu",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "07-02-2018 00:00"
},
{
"rfp_no": "01/ 074 -75",
"title": "DBST works with Earthwork Excavation, Retaining Structure, Line Drain works along Ram Mandir Okherbote Road",
"procuring_entity": "Madi Municipality, Sankhuwasabha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "DRODMK/3371653/074/75-5",
"title": "Double Cell Box Culvert Construction over Jhilmile Kholsi on Birtamode Shanishchhare Budhabare Road",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-NUWAKOT - 11",
"title": "Construction of 8 School Building Complex in Nuwakot District (ESRP/MOE/CLPIU/074/75-Nuwkot - 11)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-01-2018 10:00"
},
{
"rfp_no": "SDSBR-3371024-74/75-006",
"title": "Provide and erecting &quot;W&quot; metal beam crash barrier &amp; widening of road",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "22-01-2018 07:00"
},
{
"rfp_no": "SDSBR-337165-GA-074/75-007",
"title": "Specific maintenance at Section I &amp; II",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "22-01-2018 07:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-NUWAKOT - 12",
"title": "Construction of 7 School Building Complex in Nuwakot District (ESRP/MOE/CLPIU/074/75-Nuwakot - 12)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "21-01-2018 10:00"
},
{
"rfp_no": "SDSBR-337165 -REC-2074/75-008",
"title": "Recurrent Maintenance",
"procuring_entity": "Suryabinayak-Dhulikhel, Dhulikhel-Sindhuli-Bardibaas Road Project",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "22-01-2018 07:00"
},
{
"rfp_no": "BDKRTW-01/ 074-75",
"title": "Construction of Embankment with Revetment and RCC Porcupine, Budhi Ganga Gaun Palika 2 &amp; 3, Morang",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "BDKRTW-02/ 074-75",
"title": "Construction of Embankment with Revetment and Spur Itahari Sub-Metropolitan Ward No. 3, Sunsari",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "LHNDRTW-01/ 074-75",
"title": "Construction of Embankment with Revetment, Katahari Gaun Palika 6, Morang",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "BKRTW-01/ 074-75",
"title": "Construction of Embankment with Revetment, Spur and Slab VRB Sunbarshi Municipality Ward No.7,Bardanga",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "SNSRTW-01/ 074-75",
"title": "Construction of Embankment with Revetment and Spur , Bhokraha Gaun Palika Ward No.4, Muslimtole",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "SNSRTW-02/ 074-75",
"title": "Construction of Revetment and RCC Porcupine, Bhokraha Gaun Palika, Ward No.7, Sukumbasitole",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "BRHCRTW-01/ 074-75",
"title": "Construction of RCC and Plumb Concrete Wall , Barahakshetra Municipality Ward No.1, Barahakshetra",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "TNN5 / DRONGJ/3373564/074/75-19",
"title": "Rehabilitation of Blacktop Road and Roadside Protection Work on Ratna Rajmarga (Kohalpur- Harre Section)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "TNN5/DRONGJ/3373354/074/75-20",
"title": "Road Upgrading Work on Nepalgunj Phattepur-Binauna-Baijapur Road (From Ch 0+000, Nursery Chowk)",
"procuring_entity": "406 Division Road Office Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "001/2074-075",
"title": "Construction of compound wall",
"procuring_entity": "Commission For the Investigation of Abuse of Authority, Itahari",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "DRODMK/3373664/074/75-6",
"title": "Construction of Black-topped (Dense Bituminous Macadam) Road on Laxmipur Ghailadubba Gherabari Sima Sadak",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "SSDRP/04/074/075-006",
"title": "Construction of Road structures &amp; Cross drainage from Myalpokhari (105+000) to Near Gangare (135+000) section along Saljhandi -Shandhikhark - Dhorpatan Road.",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 06:00"
},
{
"rfp_no": "LQML/G/NCB/2074-75/02",
"title": "Procurement of Mobile Laboratory Vehicle for Feed &amp; Milk Testing equipped with Lab Compartment &amp; Lab Equipment",
"procuring_entity": "Livestock Quality Management Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 10:00"
},
{
"rfp_no": "CHSRTW--01/ 074-75",
"title": "Construction of Embankment with Revetment in Letang Municipality 2 (Kamalpur-Beldangi) &amp; 3 Fadani Morang.",
"procuring_entity": "Water Induced Disaster Management Division no. 2, Morang",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "DRODMK/3371574/074/75-7",
"title": "Construction of Bridge ( Pre-stressed Concrete Bridge (1x40m) with Pile Foundation) over Kamal Khola in Baigundhura, Gauradaha-9, Jhapa",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "8.3/PLMC/074-75",
"title": "Upgrading of Arupata Maidan Road, PLMC-27,28",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "8.4/PLMC/074-75",
"title": "Upgrading of Syangkhudi-Kadel Gaun-Raikar-Satdobato-Chipleti Road, PLMC-28",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "8.2/PLMC/074-75",
"title": "Upgrading of Marekhahare Road, PLMC-27",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "8.5/PLMC/074-75",
"title": "Upgrading of Kharane -Rakhidada-Surke Maidan Road, PLMC-26",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "8.6/PLMC/074-75",
"title": "Upgrading of Vijayapur- Surke Maidan Road, PLMC-26,28",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "8.7/PLMC/074-75",
"title": "Upgrading of Jhajarmare -Deumadi-Okhle Road, PLMC-28",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "NCB/08/PROSEC/2074-75",
"title": "supply,delivery, installation and commissioning of body scanner",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "NCB/09/PROSEC/2074-75",
"title": "supply,delivery,installation and commissioning of dual view hand baggage x-ray machine",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/PDRF/Re01",
"title": "Reconstruction of Dhya Chen (Devata Ghar)at Dathu Tole, Pashupati",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "DROBTL-05-074/75/19",
"title": "Upgrading / Widening of Bharatiya sima Sunauli dekhi Basantpur hudai Butwal Dhago Karkhana Road, Rupandehi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "22-01-2018 10:00"
},
{
"rfp_no": "DROBTL-05-074/75/021",
"title": "Upgrading / Widening of Bhujahawa Sima - Khairani Sabha -Ma.ra.Ma Sadak, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "22-01-2018 10:00"
},
{
"rfp_no": "DROBTL-05-074/75/020",
"title": "Road improvement works along Emlihawa-Piparhawa-Chamkipur-diyanagadh-Shankapur-khaharni Rajmarg Rupandehi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "22-01-2018 10:00"
},
{
"rfp_no": "NCB/JRM/W/01/074/075",
"title": "NCB/JRM/W/01/074/075 Upgrading of BhagatpurLayakpur Road (DBST of 0+000.0+993.3)KM",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "NCB/JRM/W/02/074/075",
"title": "NCB/JRM/W/02/074/075 Upgrading of Chilam-Chauraha Road (DBST of 0+000 -0+975.3) KM",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "NCB/JRM/W/03/074/075",
"title": "NCB/JRM/W/03/074/075 Upgrading of Durgauli Chauraha- Kanchanpur Road (DBST of 0+000 -0+957.5) KM",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "DTO/MAK/Goods/NCB/04/074-075",
"title": "Fabrication of steel Parts and transportation up to road heads of six Trail bridges.",
"procuring_entity": "District Technical Office, Makwanpur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 17:30"
},
{
"rfp_no": "NCB/JRM/W/04/074/075",
"title": "NCB/JRM/W/04/074/075 Upgrading of Munwa chowk to Kanchanpur Road (DBST of 0+000 -0+980.6) KM",
"procuring_entity": "Janaki Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "22-01-2018 00:00"
},
{
"rfp_no": "DROCNP/337366-4/074/75-04(Re)",
"title": "Simara-Kaudena-Khoriya-Hempur-Kishanpur Sadak, Sarlahai District at Simara-Kaudena-Hempur-Kisanpur-Sadak, Sarlahi District",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "DROCNP/337354-4/074/75-06(Re)",
"title": "Earthwork, Gravelling, Blacktop and Structure works at Mahinathpur-7 Harkathawa-6 Hanuman chowk Sisautiya Sadak, Sarlahi District.",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "DROCNP/337335-4/074-75/37",
"title": "Supplying Hume Pipe. (At Garuda-Aruwa River Section, Junglesahiya-Himalibas Saction, Rautahat)",
"procuring_entity": "205 Division Road Office Chandranigahapur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "05-02-2018 07:00"
},
{
"rfp_no": "05-DROPLP-2074/75 (016)",
"title": "Specific Maintenance Works on Siddhartha Highway (Chidiyakhola - Bartung Sector), Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "05-DROPLP-2074/75 (017)",
"title": "Specific Maintenance works on Bartung-Ridi-Tamghas Road [Ridi Tamghas Sector (Chainage 33+600 To Chainage 80+000)], Gulmi",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "05-DROPLP-2074/75 (018)",
"title": "Specific Maintanance Works on Aryabhanjyang - Rampur Feeder Road, Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "05-DROPLP-2074/75 (019)",
"title": "Structural Works on Tansen- Chandibhanjyang-Jorte-Ridi Road, Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "05-DROPLP-2074/75 (020)",
"title": "Traffic safety works on Siddhartha Highway (Chidiyakhola - Ramdi Sector), Palpa",
"procuring_entity": "304 Division Road Office Palpa",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 00:00"
},
{
"rfp_no": "NAMS/SQ/075/75/04",
"title": "Supply &amp; Delivery of Dental Prosthodontics",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "06-02-2018 09:00"
},
{
"rfp_no": "16- 074/75",
"title": "Construction of Overhead Water Tank and deep tube well in GPZ of Block A Simara SEZ, District Bara",
"procuring_entity": "Special Economic Zone Development Committee",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "06-02-2018 00:00"
},
{
"rfp_no": "DRODMK/3371653/074/75-5",
"title": "Double Cell Box Culvert Construction over Jhilmile Kholsi on Birtamode Shanishchhare Budhabare Road",
"procuring_entity": "102 Division Road Office Damak",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "ICB/TB/WR/1-2017/18",
"title": "Supply of Steel Wire Ropes",
"procuring_entity": "Local Bridge Section, DoLIDAR",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "DOHS/G/ICB-24/EDCD/2074-75",
"title": "Procurement of LLINs",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "DROHTD/337157-4/074-75/IFB04/27",
"title": "Bridge Construction Works (RCC Girder) over Singaha River, Birgunj-Kalaiya Road between Prasauni-08 &amp; Khutuwa Jabdi, Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-01-2018 06:00"
},
{
"rfp_no": "DROHTD/337157-4/074-75/IFB05/28",
"title": "Bridge Construction Works (PSC Girder) over Madhuwa River Bridge, Parsa",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "19-01-2018 06:00"
},
{
"rfp_no": "DROHTD/337157-4/074-75/IFB05/29",
"title": "Bridge Construction Works (PSC Girder) over Karra River along Chuche Khola Bazar-Baraute Road, Hetauda, Makwanpur",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 06:00"
},
{
"rfp_no": "DROHTD/337157-4/074-75/IFB05/30",
"title": "Bridge Construction Works (PSC Girder) over Dudhaura Khola along Nitanpur Kalaiya Road, Bara",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 06:00"
},
{
"rfp_no": "01 /074/075..",
"title": "Procurement of Civil Works for Chassikot Park Construction LMC-25",
"procuring_entity": "KVDA, District Commissioner's Office,Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "01/074 /075..",
"title": "Prucurement of Civil Works for Construction of Chundevi Park at LMC",
"procuring_entity": "KVDA, District Commissioner's Office,Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "01 / 074/ 075",
"title": "Procurement of Civil Works for the construction of Dashi Pokhari Mahalaxmi Municipality",
"procuring_entity": "KVDA, District Commissioner's Office,Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "gmun/2/074/75",
"title": "Supplying and Delivery Hume Pipe",
"procuring_entity": "Ghodaghodi Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "19-01-2018 06:00"
},
{
"rfp_no": "DUDBC/05/NCB/G/2074/75",
"title": "Supply and Delivery of Double Cab Pickup",
"procuring_entity": "Department of Urban Development & Building Construction",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "21-01-2018 12:00"
},
{
"rfp_no": "DUDBC/DOK/KTM/NCB WORKS-EBID-5/074/075",
"title": "Construction and Upgrading of 1.3 KM Road (Tokha Municipality, Tokha-Bhutkhel-Harmoni Housing) Kathmandu",
"procuring_entity": "DUDBC, DIVISION OFFICE, KATHMANDU",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "21-01-2018 16:00"
},
{
"rfp_no": "01/BM/NCB/2074-75",
"title": "Construction of Municipality office Building (Phase II)",
"procuring_entity": "Budhanilkantha Municipality Office",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "21-01-2018 00:00"
},
{
"rfp_no": "DROHKR/3373554/074/75-016 (Re)",
"title": "Roadway Excavation and Gabion Works on Rabuwa &#65533; Kalibeli &#65533; Mamkha &#65533; Deurali &#65533; Solu &#65533;Pattale (Ch. 0+000, Pattale onwards) Road.",
"procuring_entity": "106 Division Road Office Harkapur",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 05:00"
},
{
"rfp_no": "imo/ilam/sq/works/01/2074/075",
"title": "Rajduwali Karphok Khola Raod Upgrading Work.",
"procuring_entity": "Ilam Municipality, Office of the Municipal Executive, Ilam, Province no 1, Nepal",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "04-02-2018 10:30"
},
{
"rfp_no": "DOHS/G/NCB-28/EDCD/2074/075",
"title": "Procurement of Outbreak Disaster Related Drugs",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "17-01-2018 00:00"
},
{
"rfp_no": "DEO/NCB/Works/01-074/75",
"title": "Jilla Nirwachan Karyalayako Bhawan Nirwan (Construction of District Election office), Tehrathum",
"procuring_entity": "District Election Office, Myanglung",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "PADT/2074-075/Const/T9",
"title": "Construction of Shivalaya reconstruction works at char shivalaya Area",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-01-2018 00:00"
},
{
"rfp_no": "01/074/75/NCB",
"title": "Construction of roads in Brahampuri Sarlaahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-01-2018 10:00"
},
{
"rfp_no": "01/074-75/NCB",
"title": "Construction and Beautification of Panpiya Pokhari at Brahampuri, Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-01-2018 10:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/18/2074/75",
"title": "Laptop and Ipad for Nepal Airlines Corporations for F/Y: 2074/75",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "18-01-2018 10:00"
},
{
"rfp_no": "DANGA/074-75/REG/01",
"title": "Construction of Senior Officer,s Quarter",
"procuring_entity": "Riot Control Police Battalion, Mahendranagar",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "19-01-2018 10:00"
},
{
"rfp_no": "01a/074-75/NCB",
"title": "Construction of road and drains in Tribhuvan Nagar-Bhelhi-Brahampuri, Sarlahi",
"procuring_entity": "DUDBC, DIVISION OFFICE, DHANUSHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "18-01-2018 00:00"
},
{
"rfp_no": "001/Khairahani Mun",
"title": "Construction of Municipal Executive Administrative Building",
"procuring_entity": "Khairahani Municiapality Office, Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-01-2018 14:00"
},
{
"rfp_no": "002/Khairahani Mun",
"title": "Purano Parsa Chowk to Surtani chowk road (Black Top)",
"procuring_entity": "Khairahani Municiapality Office, Chitwan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-01-2018 14:00"
},
{
"rfp_no": "PCU-03/074/75",
"title": "Construction of Bichari Chautara Health Post (Type-4) at syangja",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 00:00"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-2",
"title": "ICP Road Construction Work",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-01-2018 18:30"
},
{
"rfp_no": "DUDBC/Banke/Works/NCB/074/075-3",
"title": "Drain Construction Work Rajapur Municipality Road",
"procuring_entity": "DUDBC, DIVISION OFFICE BANKE",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "17-01-2018 18:30"
},
{
"rfp_no": "NBL/MSD/GOODS/004",
"title": "Desktop Computer-300",
"procuring_entity": "Nepal Bank Limited",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "17-01-2018 16:00"
},
{
"rfp_no": "PCU-04/074/75",
"title": "Construction of Daraun Health Post Building at Syangja",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "19-01-2018 00:00"
},
{
"rfp_no": "000006",
"title": "Maintenance and Patching works of all dhulikhel municipality Road",
"procuring_entity": "Dhulikhel Municipality, Office of Municipal Executive",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "NID/01/074/75",
"title": "Construction of Office Building, Malangawa-2, Sarlahi",
"procuring_entity": "National Investigation District Office Sarlahi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-01-2018 07:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-GORKHA - 14",
"title": "Construction of 12 School Building Complex in Gorkha District (ESRP/MOE/CLPIU/074/75-Gorkha - 14",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 10:00"
},
{
"rfp_no": "RMO/Palpa/NCB/Goods-Ebid/01/074/075",
"title": "Supply &amp; Deliver of Green Coloured CGI Sheet",
"procuring_entity": "Rampur Municipality Office, Rampur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 06:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-MAKWANPUR -06",
"title": "Construction of 9 School Building Complexes in Makwanpur District (ESRP/MOE/CLPIU/074/75-MAKWANPUR - 06)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 10:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-Makawanpur - 07",
"title": "Construction of 10 School Building Complex in Makawanpur District",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-01-2018 10:00"
},
{
"rfp_no": "DROKTM2/3371653/074/75- 17",
"title": "Periodic Maintenance Work of Samakhosi-Gongbu-Baniyatar Road.",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-01-2018 00:00"
},
{
"rfp_no": "DROKTM2/3371574/074/75-18",
"title": "Construction of a Prestress Bridge over Bagmati River,setidevi, Kathmandu",
"procuring_entity": "207 Division Road Office Kathmandu2",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "15-01-2018 00:00"
},
{
"rfp_no": "PADT/2974-075/Const/T8",
"title": "Construction of Gates in Different Places around Pashupati Area",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 10:00"
},
{
"rfp_no": "DROJKR/4-16/074-75",
"title": "Construction of RCC Bridge on Aukhsi River at Jaukh-Gonapura Road , Mahootari;DROJKR/337157-4/074-75 /16",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-17/074-75",
"title": "Construction of RCC Bridge on Dumariya River at Duhabi-Harusaha Road , Dhanusha :DROJKR/337157-4/074-75 /17",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-18/074-75",
"title": "Construction of RCC Bridge on Mangalpurwan River at Between Sitalpur VDC2 and Mahendranagar , Dhanusha :DROJKR/337320-4/074-75 /18",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-19/074-75",
"title": "Construction of RCC Bridge 1 and 2 over Bachharaja River at Yadukuha -Singhiyahimaran Road, Bisharbhora , Dhanusha :DROJKR/337157-4/074-75 /19",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-20/074-75",
"title": "Construction of Rigid pavement and structure works on Bisharmora -Nathpatti- Magrah-bhachi- Khajuri -Balhagoth Road (IB) , Dhanusha :DROJKR/337366-4/074-75 /20",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-21/074-75",
"title": "Construction of Black-top road and structure works on Laxminiya-fulkaha-sundarpur-Sonma-Raghunathpur Road , Mahottari :DROJKR/337366-4/074-75 /21",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-22/074-75",
"title": "Construction of Rigid pavement and structure works on Mahinathpur- Baidehi-Dhanushadham Road , Dhanusha :DROJKR/337366-4/074-75 /22",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-23/074-75",
"title": "Construction of Rigid pavement and structure works on Thera Road Section ( Janakpur -Parikrama Sadak) , Dhanusha :DROJKR/337354-4/074-75 /23 :",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-25/074-75",
"title": "Construction of RCC Bridge on Jamuni (Amari) River at Between Tisiyahi -Morha Road , Dhanusha :DROJKR/337157-4/074-75 /25",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "DROJKR/4-24a/074-75",
"title": "Repair and Maintenance work of Mahendra Rajmarg bridges :DROJKR1./337320-4/074-75 /24a",
"procuring_entity": "203 Division Road Office Janakpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 13:00"
},
{
"rfp_no": "01-74-75-GRADER",
"title": "Heavy Equipment and Vehicle",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "02-74-75-TIPPER",
"title": "Procurement of TIPPER",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "DIO/Arghakanchhi/01/074/74",
"title": "Rastriya Annusandhan Office Building Construction at Sandhikharka Arghakanchi",
"procuring_entity": "DUDBC, DIVISION OFFICE, RUPANDEHI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "15-01-2018 00:00"
},
{
"rfp_no": "NNRM/KKT/LSKRDRCP/NCB/01/2074/075",
"title": "Lalighat-Suntharali-Kumalganu-Rupsa District Road Construction Project.(Chainage: (0+500-3+000)",
"procuring_entity": "Naraharinatha Rural Muinicipality",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "16-01-2018 10:00"
},
{
"rfp_no": "03-74-75-BACKHOE",
"title": "Procurement of BACKHOE LOADER",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "04-74-75-ROLLER",
"title": "VIBRATORY COMPACTOR",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "05-74-75-TRACTOR",
"title": "TRACTOR WITH HYDRAULIC TRAILER",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "06-74-75-PICKUP",
"title": "4 WD PICKUP",
"procuring_entity": "Birtamode Municipality, Office of Municipal Executive, Birtamod Jhapa",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "GON\\G\\NCB\\MAHALAXMI\\LALITPUR\\05\\74\\75",
"title": "Procurement of Supply and Delivery of Sport Utility Vehicle ( SUV )",
"procuring_entity": "Mahalaxmi Municipality, Office of Municipal Executive",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "11-074/15",
"title": "Emergrncy Maintanace of Bailey Bridge over Khudi River at Khudi Lamjung",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "16-01-2018 10:00"
},
{
"rfp_no": "GON\\G\\NCB\\MAHALAXMI\\LALITPUR\\07\\74\\75",
"title": "PROCUREMENT OF SUPPLY AND DELIVERY OF HatchBack Car",
"procuring_entity": "Mahalaxmi Municipality, Office of Municipal Executive",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "GON\\G\\NCB\\MAHALAXMI\\LALITPUR\\06\\74\\75",
"title": "PROCUREMENT OF SUPPLY AND DELIVERY OF Motorcycle",
"procuring_entity": "Mahalaxmi Municipality, Office of Municipal Executive",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "16-01-2018 00:00"
},
{
"rfp_no": "PCU-05/074/75",
"title": "Maintenance works of District Health office and Kharanitar PHC at Nuwakot",
"procuring_entity": "Project Coordination Unit, Ministry of Health",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-01-2018 00:00"
},
{
"rfp_no": "14 /074/75",
"title": "Implementation of Skill Development Training on Tailoring for Garment Processing Zone at Simara SEZ",
"procuring_entity": "Special Economic Zone Development Committee",
"type": "Consultancy EOI  QCBS",
"status": "EOI Published",
"published_date": "01-02-2018 00:00"
},
{
"rfp_no": "ATCEP/03/2073-74",
"title": "Outer Perimeter Road from Gothatar Height to Guheshwori",
"procuring_entity": "Air Transport Capacity Enhancement Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "05/BMO/KAPIL/NCB/GOOD/74-75",
"title": "Supply and Deliver of Motor Grader",
"procuring_entity": "Banganga Municipality Office",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "02/074-075",
"title": "Mohana River Training works,Kailali",
"procuring_entity": "People,s Embankment Programe Field Office No. -7, Kanchanpur",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "14-01-2018 14:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/NCB/01/074/75",
"title": "Construction of View Tower on Devichaour, Godawari Municipality -7 (Devichaour).",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ W/NCB/02/074/75",
"title": "Construction of Ward Building on Godawari Municipality-13 (Jharuwarashi)",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 06:00"
},
{
"rfp_no": "26/074-75/ WSSDO Banke",
"title": "Procurement of OHT, 225 cum in Binauna, WSSDO, Banke",
"procuring_entity": "WSSDO, Banke, Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "03/074-75/WSSDO, Lalitpur",
"title": "Construction of RCC overhead water storage tank (225 Cum),Setidevi Water Supply Project,Lalitpur",
"procuring_entity": "Water Supply and Sanitation Division Office, Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "4/074-75 /WSSDO, Lalitpur",
"title": "Construction of RCC overhead water storage tank (450Cum),Bjepokhari Water Supply Project,Lalitpur",
"procuring_entity": "Water Supply and Sanitation Division Office, Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "05/074-75/WSSDO, Lalitpur",
"title": "Construction of RCC overhead water storage tank (450Cum),Makhundol Water Supply Project,Lalitpur",
"procuring_entity": "Water Supply and Sanitation Division Office, Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "06/074-75/WSSDO, Lalitpur",
"title": "Construction of Sanitary Sewerage Project,Sitapakha Sewerage Construction Project,Lalitpur",
"procuring_entity": "Water Supply and Sanitation Division Office, Lalitpur",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "27/074-75/ WSSDO Banke",
"title": "Procurement of OHT, 225 cum in Tithiria, WSSDO, Banke",
"procuring_entity": "WSSDO, Banke, Nepalgunj",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "NCB/05/PROSEC/2074-75",
"title": "supply,delivery and testing of VHF Tx/Rx equipments related spares and accessories",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "NCB/04/PROSEC/2074-75",
"title": "supply,delivery,installation and commissionning of baggage x-ray machine",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "NCB/11/JUG/074/075",
"title": "NCB/11/JUG/074/075",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/2074-075/ 01",
"title": "Supply and Delivery of Crawler Mounted Hydraulic Excavator",
"procuring_entity": "Galchi Rural Municipality, Baireni Dhading",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "3/074-75 RMSO Surkhet",
"title": "Supply of HDPE Pipes",
"procuring_entity": "Regional Monitoring and Supervision Office, Surkhet",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "WIDMD17/02/074/075",
"title": "Construction of Gabion Revetments",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "BIMD/STMIP/NCB-01/074-075",
"title": "Improvement of Masaiya Pond",
"procuring_entity": "Banganga Irrigation Management Division",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 06:00"
},
{
"rfp_no": "BIMD/STMIP/NCB-02/074-075",
"title": "Reshaping and Improvement of Escapes of Jagdishpur Reservoir",
"procuring_entity": "Banganga Irrigation Management Division",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 06:00"
},
{
"rfp_no": "NCB/13/JHUP/074/075",
"title": "Jhupra khola training works, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/14/NEW/074/075",
"title": "Neware Khoa Training works",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/15/KHOR/074/075",
"title": "Khorkekhola training work, Birendranagar",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/16/DUNG/074/075",
"title": "Dungikhola Training works, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/17/AAB/074/075",
"title": "Bewaraghari, AApkhola and AApdali khola training work",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/18/KAR/074/075",
"title": "Karnali and Tamadhara Training work, Ghatgaon",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/19/SIM/074/075",
"title": "Simta Khola Training works, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/20/GOC/074/075",
"title": "Gochhe and Golarakhola Training works.",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/21/CHIN/074/075",
"title": "Chingad Khola Training work, Matela awalching",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/22/CHIN/074/075",
"title": "Chingad khola Training works, Lekhbesi",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/23/TOL/074/075",
"title": "Tolikhola Training works, Bheriganga Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/24/ITR/074/075",
"title": "Itram khola training works Birendranagar, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/25/SOT/074/075",
"title": "Sothkhola Training works, Barahatal, Surkhet",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/26/BHR/074/075",
"title": "Bheri River Training work, Panchapuri-5, Tikhakuna",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NCB/27/BHR/074/075",
"title": "Bheri River Training works, Panchapuri-9, Tatapani.",
"procuring_entity": "Water Induced Disaster Management Division Office No. 17, Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "14-01-2018 16:00"
},
{
"rfp_no": "NTPO/Khurkot/01-074/75",
"title": "Playground improvement works in Bhimeshwor Ward No -1",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "14-01-2018 12:00"
},
{
"rfp_no": "NTPO/Khurkot/02-074/75",
"title": "Krishna Mandir Protection and Improvement Works in Bhimeshwor Ward No- 4",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "14-01-2018 12:00"
},
{
"rfp_no": "NTPO/Khurkot/03-074/75",
"title": "Upgradation works in Refresh Centre Area in Lower Bazar, Khurkot",
"procuring_entity": "New Town Project Office Khurkot",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "14-01-2018 12:00"
},
{
"rfp_no": "NTC/G/NCB/06/074-75",
"title": "SSupply &amp; Delivery of Chemicals &amp; Consumables for Liquid Culture Supply &amp; Delivery of Chemicals &amp; Consumables for Liquid Culture",
"procuring_entity": "National Tuberculosis Center",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 14:34"
},
{
"rfp_no": "NCB/06/PROSEC/2074-75",
"title": "supply,delivery,installation and commissioning of chemical identifier",
"procuring_entity": "Tribhuvan International Airport Civil Aviation Office, Gauchar",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "TBSWAp/DTO-Jajarkot/NCB/G/02/074-75",
"title": "Procurement and supply of Fabricated of steel parts.",
"procuring_entity": "Office of the District Co-ordination Committee (ODCC), Jajarkot",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "14-01-2018 00:00"
},
{
"rfp_no": "DOHS/G/SQ-63/LMD/2074-75",
"title": "Procurement of Dark Room Accessories",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  Sealed Quotation",
"status": "Bid Published",
"published_date": "28-01-2018 12:00"
},
{
"rfp_no": "01/Mechi/rb/2074/75",
"title": "road maintenance work",
"procuring_entity": "Mechinagar Municipality Jhapa",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "DROMNR-04-074/75-010",
"title": "Road construction works on Khajuriya Bhansar nayagau Bhagatpur kalkatta Khairighat Baibaha healthpost Jhilmila Emiliya Beldandi Hudai Daiji ,Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 06:00"
},
{
"rfp_no": "DROMNR-04-074/75-011",
"title": "Road construction works on Indraban samudaya pipalchautara( Chadani-5) Hudai Devisthan Bharatiya Simana ,Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 06:00"
},
{
"rfp_no": "DROMNR-04-074/75-012",
"title": "Road construction works on Basai fatiya &amp;#65533;Matiya Bandatal Khiriya Butabari belauri Daiji ,Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 06:00"
},
{
"rfp_no": "DROMNR-04-074/75-013",
"title": "Road construction works on Bhuda Sadakghat Kalkatta Ratanpur beldadi Daiji ,kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 06:00"
},
{
"rfp_no": "RVPL/G/NCB/03/2074-075",
"title": "Supply, Delivery and Installation of Upright Fluorescence Microscope for Quality Control Lab",
"procuring_entity": "Rabies Vaccine Production Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "RVPL/G/NCB/04/2074-075",
"title": "Supply, Delivery and Installation of Laboratory Equipments for Quality Control Lab (Package_2)",
"procuring_entity": "Rabies Vaccine Production Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 05:00"
},
{
"rfp_no": "DUDBC/DANG/WORK/NCB/5/074-075",
"title": "Construction work",
"procuring_entity": "DUDBC, DIVISION OFFICE, DANG",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "RVPL/G/NCB/05/2074-075",
"title": "Supply, Delivery and Installation of Laboratory Equipments for Quality Control Lab (Package_3)",
"procuring_entity": "Rabies Vaccine Production Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 05:00"
},
{
"rfp_no": "RVPL/G/NCB/06/2074-075",
"title": "Supply, Delivery and Installation of Vaccine refrigerator (Package_4)",
"procuring_entity": "Rabies Vaccine Production Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 05:00"
},
{
"rfp_no": "DROBTL-04-074/75",
"title": "Road improvement works along Triveni Sanai Gandak Nahar Road, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "DRODML/3373564/74/75-16",
"title": "Road Maintenance Works along Khhairenitar &#65533; Bhimad Road in Tanahaun District",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "DROBTL-04-074/75/015",
"title": "Road improvement works along Thakali Chowk - Magarkot - Meghauli Road, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "DROBTL-04-074/75/016",
"title": "Construction of Road Structure along Hongsi Shivam Cement Factory Access Road, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "DROBTL-04-074/75/017",
"title": "Construction of Road Structure, Roadway Excavation, Grade/bend Improvement along Jhyalbas to Pokhari section of Dhauwadi Falam Khani to MRM Road, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "DROBTL-04-074/75/018",
"title": "Construction of Road Structure, Blacktop works at Daunne (Ch. 40+050 and its periphery from Butwal) along East-West Highway, Nawalparasi",
"procuring_entity": "305 Division Road Office Butwal",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "Gajuri/Dhading/IFB/01/2074/075",
"title": "Ward No.1 Office Building Construction works",
"procuring_entity": "Gajuri Rural Municipality, Dhading",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 17:17"
},
{
"rfp_no": "CAAN/NPP/PRIAP-IU/07/Guard House/074-75",
"title": "Construction of Army Security Guard House and Other Associated Works at Pokhara",
"procuring_entity": "Civil Aviation Authority of Nepal, National Pride Project",
"type": "Works  Sealed Quotation",
"status": "Contract Awarded",
"published_date": "28-01-2018 00:00"
},
{
"rfp_no": "04/074-75/RMSO/Kaski",
"title": "Lekhnath II Co-financing Water Supply and Sanitation Project",
"procuring_entity": "RMSO Pokhara, Kaski",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "05/074-75/RMSO/Kaski",
"title": "Bharat Pokhari Kristi Nirmal Pokhari Co-Financing Water Supply and Sanitation Project",
"procuring_entity": "RMSO Pokhara, Kaski",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "12-01-2018 00:00"
},
{
"rfp_no": "01/EEAP/2074-75",
"title": "Construction of Hinguapati-Jyamdi-Dolalghat Road Section",
"procuring_entity": "District Level Project Implementation Unit (DLPIU), Kavrepalanchowk",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "11-01-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/73/74/15",
"title": "Supply &amp; Delivery of Plumbing Items",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 09:00"
},
{
"rfp_no": "DROHTD/337165-3/074-75/IFB04/24",
"title": "Periodic Maintenance Works on TRP, Ch 103+890, Lamidanda to Ch 122+000 Bhainse",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 06:00"
},
{
"rfp_no": "CAAN/AED/Phaplu/Apron/074-75/11",
"title": "Construction of Apron, Access Road and Other Associated Works at Phaplu Airport, Solukhumbu.",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-01-2018 00:01"
},
{
"rfp_no": "STMSBK/1/2074/75",
"title": "Construction of Intake, Canal and Canal Structure of Bhaktipur Irrigation Project Maisthan, Bardibas mahottari",
"procuring_entity": "I D D Mahottari",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "12-01-2018 10:00"
},
{
"rfp_no": "DROHTD/307108-4/074-75/IFB04/25",
"title": "Road Construction and Improvement Works on access road of Riddhi Siddhi Cement, Santandadha to Bhumichuli, Makwanpur",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 06:00"
},
{
"rfp_no": "DROHTD/337157-4/074-75/IFB04/26",
"title": "Bridge Construction Works (Box Culvert) over Imirty Khola, Parsa",
"procuring_entity": "210 Division Road Office Hetauda",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 06:00"
},
{
"rfp_no": "CAAN/AED/Phaplu/Fence/074-75/12",
"title": "Renovation of Chainlink Fence and Construction of Retaining Structures at Phaplu Airport, Solukhumbu.",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-01-2018 00:01"
},
{
"rfp_no": "01/DTO/Uday/TB/SSTB/074-075",
"title": "Fabrication and supply of steel parts of different trail bridges",
"procuring_entity": "District Development Committee, Udayapur",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 06:00"
},
{
"rfp_no": "CAAN/AED/Gulmi/Drainage/074-75/15",
"title": "Construction of Drainage, Retaining Structure and Earthwork at Simichour, Gulmi",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-01-2018 00:00"
},
{
"rfp_no": "CAAN/AED/Rara/Fence/074-75/14",
"title": "Construction of Chainlink Fencing, Retaining Structures and Other Associated Works at Rara Airport, Talcha, Mugu.",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "11-01-2018 00:00"
},
{
"rfp_no": "NAMS/NCB/74/75/16",
"title": "Supply &amp; Delivery of Rashan (Food Item) for the NAMS, Bir Hospital",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 09:00"
},
{
"rfp_no": "CAAN/AED/TMI/074-75/13",
"title": "Tumlingtar Airport Project",
"procuring_entity": "Civil Aviation Authority of Nepal Aerodrome Engineering Department",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "11-01-2018 00:00"
},
{
"rfp_no": "MOUD/CLPIU/NRF/ Service/2074-075-3A",
"title": "Detail Damage Assessment, Retrofitting Design &amp; Construction Supervision of Keshar Library Kesharmahal, Kathmandu",
"procuring_entity": "Central Level Project Implementation Unit (MoUD)",
"type": "Consultancy EOI  QCBS",
"status": "Evaluation Pending",
"published_date": "26-01-2018 10:00"
},
{
"rfp_no": "01/074/75/NCB//WORKS",
"title": "Construction of Prefeb Building",
"procuring_entity": "Beema Samiti ( Insurance Board)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "NIDO/Khotang/Work/NCB/01/2074-075",
"title": "Construction of National Investigation Office Building at Diktel, Khotang",
"procuring_entity": "DUDBC, DIVISION OFFICE, UDAYAPUR",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "5.1/PLMC/074-75",
"title": "Maintenance of City Road (Package -1)",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "5.2/PLMC/074-72",
"title": "Maintenance of City Road (Package-2)",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "5.3/PLMC/074-75",
"title": "Maintenance of City Road (Package-3)",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "5.4/PLMC/074-75",
"title": "Maintenance of City Road (Package-4)",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 00:00"
},
{
"rfp_no": "MR/NCB/W/01/2074/75",
"title": "Retaining Wall Works of Sitaram school Taufukhel Ramkot sadak",
"procuring_entity": "Nagarjun Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "10-01-2018 13:30"
},
{
"rfp_no": "KTFT/NCB/74/75/15",
"title": "Supply for Computer Equipments",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "10-01-2018 16:00"
},
{
"rfp_no": "0003/74/075",
"title": "Recurrent maintaince of pot holes along koshi highway ch 0 +000 to 25 +000",
"procuring_entity": "Rani-Biratnagar-Itahari-Dharan Road Project",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "24-01-2018 08:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/RBN/ W/SQ/04/074/75",
"title": "Lele Bhanjayang to Tahakhel Chapagau Road Maintanence",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-01-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ RBN/ W/SQ/05/074/75",
"title": "Godawari Municipality to Bulu Road Maintenance",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-01-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ RBN/ W/SQ/07/074/75",
"title": "Thecho Maligau Pingglasthan Road Maintenance",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-01-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ RBN/ W/SQ/08/074/75",
"title": "Godamchour Dhurb Thapa Marg Road Maintenance",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-01-2018 06:00"
},
{
"rfp_no": "Godawari Munic./Bajrabarahi, Lalitpur/ RBN/ W/SQ/06/074/75",
"title": "Tikavairab Lapse to Kotdanda Road Maintenance",
"procuring_entity": "Godawari Municipality, Office of the Municipal Executive,",
"type": "Works  Sealed Quotation",
"status": "Bid Published",
"published_date": "23-01-2018 06:00"
},
{
"rfp_no": "00003/74/075",
"title": "recurrent maintenance of pot holes along koshi highway ch 25+000 to 29 + 600",
"procuring_entity": "Rani-Biratnagar-Itahari-Dharan Road Project",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "24-01-2018 00:00"
},
{
"rfp_no": "NCB/074/75-95",
"title": "Bivinna Sikshyan Sasthaka Samanharu",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 14:00"
},
{
"rfp_no": "NCB/074/75-96",
"title": "Sainik Bandka Bajaharu",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "25-01-2018 14:30"
},
{
"rfp_no": "DORMEB/3370124/074-75/01",
"title": "Procurement of wheel Loader",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-12-2017 00:00"
},
{
"rfp_no": "DORMEB/3370124/074-75/02",
"title": "Procurement of Pneumatic roller",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "24-12-2017 00:00"
},
{
"rfp_no": "DORMEB/3370124/074-75/03",
"title": "Procurement of Truck Mounted Bitumen Distributor",
"procuring_entity": "Mechanical Branch",
"type": "Goods  ICB",
"status": "Evaluation Pending",
"published_date": "24-12-2017 00:00"
},
{
"rfp_no": "SSDRP/03/074/075-003",
"title": "Construction of Road structures , Cross drainage and Gravelling works from Khursane Daha (17+000) to Nigali (35+000) section along Saljhandi -Shandhikhark - Dhorpatan Road .",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 06:00"
},
{
"rfp_no": "PADT/2074-075/const/T7",
"title": "Paving Works on Darsan Marga (char Shivalaya, Rajeradheshwori,Panchadevwol)",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "ODRM-GUL-01-074/075",
"title": "Construction of Training center Building for Office of Dhurkot Rural Municipality, Gulmi",
"procuring_entity": "Office of Dhurkot Rural Municipality, Dhurkot Jaisithok, Gulmi",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "SSDRP/03/074/75-004",
"title": "Construction of Road structures,Cross drainage works from Patauti (40+000) to Balebang (60+000) section along Saljhandi-Sandhikharka-Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 06:00"
},
{
"rfp_no": "NCB/2074-075/01",
"title": "supply and delivery of double cab pick up",
"procuring_entity": "Kalinchok Rural Municipality, Sunkhani",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "SSDRP/03/074/075-005",
"title": "Construction of Road structures , Cross drainage works from Kanchan Khola (4+840) to Madhuban (16+180) section along Saljhandi -Shandhikhark - Dhorpatan Road",
"procuring_entity": "Saljhandi Sandhikharka Dhorpatan Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 06:00"
},
{
"rfp_no": "NCB/2074-075/02",
"title": "Supply and delivery of Hard Top Jeep",
"procuring_entity": "Kalinchok Rural Municipality, Sunkhani",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "NCB/2074-075/03",
"title": "Supply and Delivery of Hydraulic Excavator with breaker",
"procuring_entity": "Kalinchok Rural Municipality, Sunkhani",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "NCB/2074-075/04",
"title": "Supply and delivery of Backhoe loader",
"procuring_entity": "Kalinchok Rural Municipality, Sunkhani",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "NCB/2074-075/05",
"title": "Supply and delivery of Tipper Truck",
"procuring_entity": "Kalinchok Rural Municipality, Sunkhani",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/17/2074/75",
"title": "Computer Sets for Nepal Airlines Corporation for F/Y: 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "09-01-2018 10:00"
},
{
"rfp_no": "2-2074/075",
"title": "Supply and Delivery of 1. 4WD(2000-3000)CC Vehical Double Cab Pickup 2. 4WD(2100-2200) CC Vehical Jeep",
"procuring_entity": "Office of the Bhimad Municipal Executive, Tanahun",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 07:00"
},
{
"rfp_no": "NPA/NCB/G/2074/075-01",
"title": "Stitch Diary, ball pen, Notebook diary, Board marker, Photocopy paper and register purchase",
"procuring_entity": "National Police Academy , Maharajgung",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 12:00"
},
{
"rfp_no": "09/74-75-13",
"title": "Road Upgrading Works on Taal link Road (Manang)",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 10:00"
},
{
"rfp_no": "09/74-75-14",
"title": "Road Maintenance Works on Vyas Marga (Ch: 0+000 to 28+900)",
"procuring_entity": "301 Division Road Office Damauli",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 10:00"
},
{
"rfp_no": "NCB/074/75-93",
"title": "Supply of Engineering Equipment",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "09-01-2018 11:30"
},
{
"rfp_no": "004/074/075",
"title": "Construction Of View Tower at Shankarnagar Ban Bihar Tatha Anusandhan Kendra, Tilottama Municipality ward No 1",
"procuring_entity": "Tilottama Municipality Office, Rupandehi",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "24-01-2018 22:00"
},
{
"rfp_no": "N1SP/KHO-REG/074-75",
"title": "Construction of Barrack Building, Mess Block, Toilet Block, Septic Tank and Soak Pit at District Police Office, Khotang, Diktel",
"procuring_entity": "District Police Office Khotang",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-02-2018 15:30"
},
{
"rfp_no": "DOA-44/074/075",
"title": "Makawanpur Gadi Conservation Work",
"procuring_entity": "Department of Archaeology",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 10:00"
},
{
"rfp_no": "PPCR/MoAD/G/NCB74",
"title": "Supply, Delivery and Installation of AMIS Portal Hardware Requirements for Data Center",
"procuring_entity": "PPCR:BRCH:AMIS",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "RCTMSK /Khando /RB /06 /074-075",
"title": "Construction of Embankment &amp; Revetment etc. works.",
"procuring_entity": "Khando River Training Project",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "08-01-2018 23:59"
},
{
"rfp_no": "PPCR/MoAD/G/NCB-83",
"title": "Supply, Delivery and Installation of AMIS Portal Hardware Requirements for Disaster Recovery (DR)",
"procuring_entity": "PPCR:BRCH:AMIS",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "PPCR/MoAD/G/NCB75",
"title": "Supply, Delivery and Installation of AMIS Portal Software Requirements",
"procuring_entity": "PPCR:BRCH:AMIS",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-04",
"title": "Upgrading of Urban Road and Drainage in Gorkha Municipality (Patechaur, Gorkha Bazzar &amp; Pokharathok , Gorkha)",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 22:00"
},
{
"rfp_no": "DUDBC/ GORKHA/ NCB/ WORKS/074/75-05",
"title": "Upgrading of Urban Road at Gorkha (Red cross aale gau DFO Municipality Chowk to DUDBC DO Gorkha)",
"procuring_entity": "DUDBC, DIVISION OFFICE, GORKHA",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "RCTMSK /Khando /RB /07/074-075",
"title": "Construction of Embankment &amp; Revetment etc. works",
"procuring_entity": "Khando River Training Project",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "08-01-2018 23:59"
},
{
"rfp_no": "12/074/75",
"title": "Construction Of Sanibare Hatiya Bawan",
"procuring_entity": "Bhojpur Municipality Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 00:00"
},
{
"rfp_no": "03-INLPP-CCW-074/75",
"title": "Construction of Compound wall (Rubble Masonary)",
"procuring_entity": "Kathmandu Valley Development Authority (KVDA)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 15:00"
},
{
"rfp_no": "2/2074/2075",
"title": "COLLECTION OF ROAD USERS&amp;#65533; FEE ON THE BASIS OF COMPETITIVE BIDDING AT CHAINAGE 396+000 TO 473+000 KM HETAUDA - NARAYANGHAD SECTION OF MAHENDRA HIGHWAY Contract Identification No. TOLL2/2074/2075",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 13:20"
},
{
"rfp_no": "1/2074/2075",
"title": "COLLECTION OF ROAD USERS&#65533; FEE ON THE BASIS OF COMPETITIVE BIDDING AT CHAINAGE 000+000 TO 029+150 KM SECTION OF BHAIRAHAWA BHUMAHI ROAD",
"procuring_entity": "Roads Board Nepal",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 14:00"
},
{
"rfp_no": "02-INLPP-CCB-074/75",
"title": "Construction of Community Building",
"procuring_entity": "Kathmandu Valley Development Authority (KVDA)",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 15:00"
},
{
"rfp_no": "1/Exa/074/75",
"title": "supply of excavator",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 18:00"
},
{
"rfp_no": "2/Exa.brk/074/75",
"title": "Supply of excavator with Breaker",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 18:00"
},
{
"rfp_no": "3/Back/074/75",
"title": "Supply of Backhoe Loader-1no.",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 18:00"
},
{
"rfp_no": "4/Fourwheel/074/75",
"title": "Supply of four wheel Vehicle-1no.",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 18:00"
},
{
"rfp_no": "5/DCPickup/074/75",
"title": "supply of Double cab pickup-1no.",
"procuring_entity": "Galyang Municipality",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "08-01-2018 18:00"
},
{
"rfp_no": "DROBLG/3373554/074/75-08 (Re)",
"title": "Road Construction/ Upgradation Works . along Beni Maldhunga Kushma Road Parbat.",
"procuring_entity": "303 Division Road Office Baglung",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "23-01-2018 00:00"
},
{
"rfp_no": "03/PMAMP/NCB/G/074-75",
"title": "Supply and delivery of pick-up truck",
"procuring_entity": "Prime Minister Agriculture Modernization Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "04/PMAMP/NCB/G/074-75",
"title": "Supply and Delivery of Compact SUV Car",
"procuring_entity": "Prime Minister Agriculture Modernization Project",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "NAC/GS&PMD/PS/16/2074/75",
"title": "Printing Items for Nepal Airlines Corporation for F/Y 2074/75.",
"procuring_entity": "Nepal Airlines Corporation (NAC)",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "IFB:01/074/075",
"title": "Construction Of Drain in Sanfebagar Municipality,Sanfebagar ,Achham",
"procuring_entity": "NEW TOWN PROJECT OFFICE, SAFEBAGAR, ACHHAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "NCB/W/01/2074/75",
"title": "Construction Of Sanfebagar Municipality Office Building (Phase II)",
"procuring_entity": "Safebagar Municipality Office, Achham",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "NCED-NCB01-074-075",
"title": "SUPPLY AND DELIVERY OF SPORT UTILITY VEHICLE (SUV), 4WD",
"procuring_entity": "National Center for Educational Development",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "DUDBC 04/NCB/G/2074/75",
"title": "Supply and Delivery of SUV",
"procuring_entity": "Department of Urban Development & Building Construction",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 13:00"
},
{
"rfp_no": "NCED-NCB02-074-075",
"title": "SUPPLY AND DELIVERY OF SUV TYPE VEHICLE FOR ETC",
"procuring_entity": "National Center for Educational Development",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "-01/074/075",
"title": "Construction Of Goreto Bato in Sanfebagar Municipality,Sanfebagar ,Achham",
"procuring_entity": "NEW TOWN PROJECT OFFICE, SAFEBAGAR, ACHHAM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "04/DSMC/2074/075",
"title": "Maintenance of Various Road Sections",
"procuring_entity": "Dhanghadhi Sub-Metropolitan City",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "01- 074/75",
"title": "Construction of Gabion Spurs with Revetment (SRTW-1- 074/75)",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "01-074/ 75",
"title": "Construction of Gabion Spurs with Revetment (SRTW-2-074/75)",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "3.1/PLMC/074-75",
"title": "Upgrading of Kahun Khola- Patanbesi-Sajha Road, PLMC-13",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "3.2/PLMC/074-75",
"title": "Upgrading of Kulayan Marga, PLMC-13",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "3.3/PLMC/074-75",
"title": "Upgrading of Gharmikhola - Jumleti-Dhikidada- Sudakomukh Road, PLMC-16",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "01 - 074/75",
"title": "Construction of Gabion Spurs with Revetment &amp; Retaining Wall (SRTW-3-074/75)",
"procuring_entity": "Water Induced Disaster Management Division No.15, Gorusinge Kapilvastu",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "3.4/PLMC/074-75",
"title": "Upgrading of Mahendra Gufa -Armalakot Road, PLMC-16",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "3.5/PLMC/074-75",
"title": "Upgrading of Chitepani--Raikar-Machhapuchchhre-VMP, PLMC-19",
"procuring_entity": "Pokhara-Lekhnath Metropoitan City Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/02/074-075",
"title": "upgrading of Basantapur-ghuski boarder road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "NIDO 01/2074/75",
"title": "Construction of Office Building of national Investigation District Office, Charikot dolakha",
"procuring_entity": "National Investigation District Office, Dolakha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "5/074/75-24",
"title": "Sulichaur Pobang Basa Gaam Vivang Dhorepatan Road, Earthwork Excavation, cross drainage and Retaining Structure works.",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/01/074-75",
"title": "upgrading of Harinagara-basantapur road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/05/074-075",
"title": "upgrading of Basantapur-basecamp road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "01/DTO-KAPIL/2074-075",
"title": "Procurement of fabricated steel parts for Gauri Ghat Suspension Bridge, Contract I.D.: 01/GOODS/SSTB/DTO-KAPIL/2074-075 and transportation to the project site.",
"procuring_entity": "District Co-ordination Committee Office Kapilvastu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 00:00"
},
{
"rfp_no": "5/074/75-23",
"title": "Dang Duikholi Masina Dhaulabang Libang Road, Rolpa, Roadway Excavation , Retaining Structure and Cross drainage works.",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "5/074/75-27",
"title": "Hari Purkhe Sunar Sahidmarg Sadak, Rolpa, Earth work Hume pipe culvert and Retaining structure works",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "HRM ROAD/C/NCB/07/074-075",
"title": "upgrading of Harinagara-gautampur naya hat road",
"procuring_entity": "Harinagara rural Municipality, Office",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "5/074/75-25",
"title": "Koila jugar hanjawang ghorneta Rake,Type of Work:- Roadway Excavation,Hume pipeculvert and retaining Structure works.",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "5/074/75-26",
"title": "Road way construction works ( Earthworks and Retaining structure ) in Libang-Madichaur-Jinabang",
"procuring_entity": "401 Division Road Office Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "07-01-2018 10:00"
},
{
"rfp_no": "NAMS/NCB/74/75/14",
"title": "Supply, Delivery &amp; Fitting of Oxygen Pipeline",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "26-12-2017 09:00"
},
{
"rfp_no": "NCB/REG/2074-75/NPA-02",
"title": "Construction of Running Track, Retaining Wall, Fencing and Allied Works",
"procuring_entity": "National Police Academy , Maharajgung",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 12:00"
},
{
"rfp_no": "01/TSPRP-074/075",
"title": "Construction of Motorable Bridge over Karpata Khola, along Karpata Ghorle Link Road,Gulmi. Contract No.: TSPRP/3371574/073/74-180(Re)",
"procuring_entity": "Tamghas Simaltari Pyuthan Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-01-2018 12:00"
},
{
"rfp_no": "DLPIU/Dolakha/Work/NCB/01-2074/75",
"title": "Repair and Retrofitting Of Division Sahakari Office, Charikot, Dolakha",
"procuring_entity": "District Level Project Implementation Unit-MoUD-Dolkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "DLPIU/Dolakha/Work/NCB/2074/75-02",
"title": "Repair and Retrofitting of Sitoshna Fruit Rootstock Office Building, Boch, Dolakha",
"procuring_entity": "District Level Project Implementation Unit-MoUD-Dolkha",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "SRNSP/074/75-02",
"title": "Roadway Excavation Works on Mahendradhar Dilip kuch parakatne paudi Road, Contract No. SRNSP/3373354/074/75-002",
"procuring_entity": "Seti Rajmarga (Northern Section) Chainpur Taklakot Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-01-2018 00:00"
},
{
"rfp_no": "DLPIU/Dolakha/Work/NCB/2074/75-03",
"title": "Construction Of Office Building in Hill Crops Research, Baiteshor, Kabre, Dolakha",
"procuring_entity": "District Level Project Implementation Unit-MoUD-Dolkha",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "SRNSP/074/75-2",
"title": "Roadway Excavation Works on Juil seku Tudikhel Bhamchaur Chuwan Road, Contract No. SRNSP/3373354/074/75-003",
"procuring_entity": "Seti Rajmarga (Northern Section) Chainpur Taklakot Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-01-2018 00:00"
},
{
"rfp_no": "SRNSP/074/75-02-03",
"title": "Roadway Excavation and Structural Works on Rayal Utkadi Thing Padesh link Road, Contract No. SRNSP/3373354/074/75-004",
"procuring_entity": "Seti Rajmarga (Northern Section) Chainpur Taklakot Road Project",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-01-2018 00:00"
},
{
"rfp_no": "DLPIU/Dolakha/Work/NCB/2074/75-04",
"title": "Suspakshemawati Resettlement Project, Suspakshemawati, Dolakha",
"procuring_entity": "District Level Project Implementation Unit-MoUD-Dolkha",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-01",
"title": "Recurrent Repair of Bituminous Surface in Gokuleshwor-Khalanga Section of Mahakali Highway; DROBTD/3371653/074/75-05(RE)",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "SRM-01",
"title": "Construction of Bridge over Beti Khola at Nandanagar-Patariya-Bashkhor Road in Kapilbastu District RCC Bridge (1x20m) with Pile Foundation",
"procuring_entity": "Shuddhodhan Rural Municipality Office, Kapilbastu",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "05-01-2018 10:00"
},
{
"rfp_no": "TNN-074/75/03-04",
"title": "Roadway Excavation and Structure Works in Bippyekatal-Dulain-Dhungad-Doti-Thalara Road; DROBTD/3373554/074/75-15",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-05",
"title": "Roadway Excavation and Structure Works in Lamalek-Baralaghat Road, Baitadi; DROBTD/3373554/074/75-16",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-06",
"title": "Roadway Excavation and Structure Works in Dudilakhan-Ganjari-Thalakada-Deura-Bajhang Road; DROBTD/3373354/074/75-17",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-07",
"title": "Roadway Excavation and Structure Works in Khal-Dehimandau-Sharmali Road, Baitadi; DROBTD/3373354/074/75-18",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-08",
"title": "Periodic Repair (Resealing) in Satbanjh-Gokuleshwor Section of Mahakali Highway(H14); DROBTD/3371653/074/75-19",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-02",
"title": "Rehabilitation Works in Baagthala-Chainpur Section of Khodpe-Bajhang Road (F49); DROBTD/3373564/074/75-13",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "TNN-074/75/03-03",
"title": "Roadway Excavation and Structure Works in Anarkholi-Dewal-Kailpal-Dibbyapur Road; DROBTD/3373554/074/75-14",
"procuring_entity": "503 Division Road Office Baitadi",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "LQML/G/NCB/2074-75/01",
"title": "Supply, Delivery and Installation of Analytical HPLC System and Sheet for Feed Analyzer",
"procuring_entity": "Livestock Quality Management Laboratory",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 10:35"
},
{
"rfp_no": "4/74/75",
"title": "Ration Tender for no 19 bridge, Ripu mardan gana and no.19 field ambulance gulma 2074/75",
"procuring_entity": "NO 19 BRIGADE",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "21-01-2018 17:00"
},
{
"rfp_no": "GON/DDA-NCB-01/2074-75",
"title": "Light Weight Vehicle (SUV)",
"procuring_entity": "Department of Drug Administration",
"type": "Goods  NCB",
"status": "Contract Awarded",
"published_date": "04-01-2018 12:00"
},
{
"rfp_no": "LRO/Waling/NCB/Works/ 01/074/75",
"title": "Construction of Land Revenue Office Building, Waling, Syangja",
"procuring_entity": "Land Revinue Office, Waling",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "GON/DDA-02/2074-75",
"title": "Light Weight Vehicle (Pickup Truck)",
"procuring_entity": "Department of Drug Administration",
"type": "Goods  NCB",
"status": "Contract Awarded",
"published_date": "04-01-2018 12:00"
},
{
"rfp_no": "MIDHLDNG/3371384/074/75-002",
"title": "Upgrading of road to blacktop standard.",
"procuring_entity": "Pushpalal (MIDHILL) HIghway Project , Western Sector",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "04-01-2018 00:00"
},
{
"rfp_no": "MIDHLDNG/3371384/074/75-02",
"title": "Widening and Upgrading of Road to Blacktop Standard.",
"procuring_entity": "Pushpalal (MIDHILL) HIghway Project , Western Sector",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "05-01-2018 00:00"
},
{
"rfp_no": "DTCO/Terhathum/NCB/Works/01/2074-75",
"title": "Construction of Treasury Comptroller office, Terhathum",
"procuring_entity": "District Treasury Control office, Terhathum",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 12:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 18",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 18",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 18:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 19",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 19",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 18:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 20",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 20",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 19:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 21",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 21",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 19:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 22",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 22",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 19:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/2074/075 - 23",
"title": "Road Way excavation, Road way embankment construction , Composite soil reinforcement System, Cross Drainage Structure and other Structure's Construction 23",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 19:00"
},
{
"rfp_no": "NCB/074/75-89",
"title": "Supply of Machinery Equipments",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 17:00"
},
{
"rfp_no": "NCB/074/75-91",
"title": "Supply of Chemicals for Small Arms Phospating",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 17:00"
},
{
"rfp_no": "NCB/074/75-90",
"title": "Supply of Machinery Equipments for full fledged Vehicle and Radio Workshop",
"procuring_entity": "Master General of Ordnance (Provision)",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "04-01-2018 16:30"
},
{
"rfp_no": "01/ 074/ 075",
"title": "Hattiban Conservation Work at LMC-23",
"procuring_entity": "KVDA, District Commissioner's Office,Lalitpur",
"type": "Works  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "19-01-2018 07:00"
},
{
"rfp_no": "DOHS/G/NCB-61",
"title": "Procurement of Stationary &amp; Other Goods",
"procuring_entity": "Department of Health Services, Logistics Management Division",
"type": "Goods  NCB",
"status": "Evaluation Pending",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "05-074/75(1)",
"title": "Construction of Simply Supported, 40m Span, Cast-in-Situ, Prestressed Concrete Bridge over Dhungre Khola, Kathar, Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "05-074/75(2)",
"title": "Construction of Simply Supported 25m Span, Cast-in-Situ,2-webbed Reinforced Concrete Slab-Deck Bridge over Pampha Khola,Rapti NaPa 6-10,Paharanbari,Chitwan",
"procuring_entity": "211 Division Road Office Bharatpur",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "DUDBC/SINDHU/NCB/074/75/01",
"title": "DUDBC Division Office Sindhuli Hudai Jane Road Upgreading",
"procuring_entity": "DUDBC, DIVISION OFFICE, SINDHULI",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "03-01-2018 12:00"
},
{
"rfp_no": "DUDBC/SINDHULI/NCB/074/75-02",
"title": "Bhiman Bazaar Road Upgrading work",
"procuring_entity": "DUDBC, DIVISION OFFICE, SINDHULI",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "03-01-2018 12:00"
},
{
"rfp_no": "DUDBC/Kailali/Works/NCB/03/074/75",
"title": "Construction of Senior citizen housing",
"procuring_entity": "DUDBC,DIVISION OFFICE KAILALI",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "DUDBC/Lamjung/Work/NCB/8/074/075",
"title": "Construction of Water supply and Sanitation Division Office Building, Manang District",
"procuring_entity": "DUDBC, DIVISION OFFICE, LAMJUNG",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "01/ 074-075",
"title": "Costruction of Revetment, Thabang Ga. Pa., Sarampakha and Guman Tyang (LB), Rolpa",
"procuring_entity": "Water Induced Disaster Management Division Office No. 19, Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 17:00"
},
{
"rfp_no": "01 / 074-075",
"title": "Costruction of Revetment, Thabang Ga. Pa., Paijabang (LB), Rolpa",
"procuring_entity": "Water Induced Disaster Management Division Office No. 19, Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 17:00"
},
{
"rfp_no": "01 / 074 -075",
"title": "Costruction of Revetment, Thabang Ga. Pa., Dahabang Village (RB), Rolpa",
"procuring_entity": "Water Induced Disaster Management Division Office No. 19, Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 17:00"
},
{
"rfp_no": "01 / 074-075",
"title": "Construction of Vertical Revetment Works, Maranthana,Upstream from Suspension Bridge, Pyuthan-09, Pyuthan",
"procuring_entity": "Water Induced Disaster Management Division Office No. 19, Pyuthan",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 17:00"
},
{
"rfp_no": "CVL/Goods/NCB/074/75-02",
"title": "Supply and Delivery of Laboratory Reagents and Chemicals at Central Veterinary Laboratory Tripureshwor, Kathmandu.",
"procuring_entity": "Central Veterinary Laboratory, Tripureshwor, Kathmandu",
"type": "Goods  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 11:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-10",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 10",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-11",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 11",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-12",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 12",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-13",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 13",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-14",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 14",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-15",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 15",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "KTFT/NCB/WORKS/ 2074/075-16",
"title": "Road way Excavation, Road way embankment construction, Composite soil reinforcement system, Cross drainage structure and other structure's Construction 16",
"procuring_entity": "Kathmandu-Terai / Madesh Fast Track (Express Way) Road Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 23:00"
},
{
"rfp_no": "NAMS/SQ/075/75/08",
"title": "Supply, Delivery &amp; Installation of Pre-Vacuum Auto-Clave Machine",
"procuring_entity": "National Academy of Medical Sciences, Bir Hospital",
"type": "Goods  Sealed Quotation",
"status": "Evaluation Pending",
"published_date": "18-01-2018 00:00"
},
{
"rfp_no": "MGO/074/75/39",
"title": "Supply of Water Tanker Truck, Qty-1 Unit",
"procuring_entity": "Master General of Ordnance (Int.)",
"type": "Goods  ICB",
"status": "Bid Published",
"published_date": "18-12-2017 00:00"
},
{
"rfp_no": "PADT/2074-075/const/T5",
"title": "Mrigabatika fencing maintenance and Tourist Service Development works",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "PADT/2974-075/Const/T6",
"title": "construction of Toilet near by Guheshwori",
"procuring_entity": "Pashupati Area Development Trust",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 10:00"
},
{
"rfp_no": "MIP/Upper Parigaun/NCB-1/074-75",
"title": "Construction of Intake, RCC Canal &amp; Protection works on Upper Parigaun ISP, Pa.Na. Pa. 5, Dadeldhura",
"procuring_entity": "Irrigation Development Sub-Division, Dadeldhura",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "31-12-2017 00:00"
},
{
"rfp_no": "MIP/Tal ISP/NCB-2/074-75",
"title": "Construction of Intake, RCC Canal &amp; Protection work on Tal Irrigation Sub Project, Rupal-2, Dadeldhura",
"procuring_entity": "Irrigation Development Sub-Division, Dadeldhura",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "31-12-2017 00:00"
},
{
"rfp_no": "MIP/Anchal ISP/NCB-3/074-75",
"title": "Construction of Intake, RCC Canal &amp; Protection works on Anchal Irrigation Sub Project, Bhageshwor-9, Dadeldhura",
"procuring_entity": "Irrigation Development Sub-Division, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-12-2017 00:00"
},
{
"rfp_no": "STRMM/KKT/SCMRRCP/NCB/01/2074/075",
"title": "Sannigad-Chilkholesh-Mehalmundi Rural Road Construction Project .(Chainage: (0+000-2+000)",
"procuring_entity": "Sanni Tribeni Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "STRMM/KKT/TKMCRRCP/NCB/02/2074/075",
"title": "Tusarkhola-Mumra Chaur Rural Road Construction project. (Chainage: (0+000-0+800)",
"procuring_entity": "Sanni Tribeni Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "SMIDP/Mansuta ISP/NCB-1/074-75",
"title": "Construction of Side Intake, Canal Structures Pipe Line and Fittings Works on Mansuta ISP, Koteli-1, 2, 3, Dadeldhura",
"procuring_entity": "Irrigation Development Sub-Division, Dadeldhura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-12-2017 00:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-LALITPUR - 04",
"title": "Construction of 3 School Building under Batch-III (ESRP/MOE/CLPIU/074/75-LALITPUR - 04)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "01-01-2018 10:00"
},
{
"rfp_no": "03/074/75/NID",
"title": "Construction of NID Residential Safe House at Ranibari, Kathmandu",
"procuring_entity": "National Investigation Department, Kathmandu",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "12/074-75/ WSSDO, Kailali",
"title": "Construction of RCC Overhead Water Storage Tank(225 Cum) of Andaiya Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "ESRP/MOE/CLPIU/074/75-RASUWA - 02",
"title": "Construction of 5 School Building under Batch-III (ESRP/MOE/CLPIU/074/75-RASUWA - 02)",
"procuring_entity": "Central Level Project Implementation Unit(Education), National Reconstruction Authority",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "01-01-2018 10:00"
},
{
"rfp_no": "VLMP/Kaande/1/2074/75",
"title": "Kaande Landslide Management Works",
"procuring_entity": "Vulnerable Landslide Management Project, DWIDM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "BAG/01/074-75",
"title": "Construction of Burtibang-Khunga-Bongadovan-Khunkhani Road (0+000KM-9+853KM)",
"procuring_entity": "District Technical Office, Baglung",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "31-12-2017 00:00"
},
{
"rfp_no": "03-DROMNR/074/75/007",
"title": "Road Construction Works on Bauniya Sadakpur Jhabai Tikapur Road, Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "RCTMSK /Khando /LB /08 /074-075",
"title": "Khando River Training Project",
"procuring_entity": "Khando River Training Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "13/074-75/WSSDO, Kailali)",
"title": "Construction of RCC Overhead Water Storage Tank (225 Cum) of Baghmara Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "14/074-75/WSSDO, Kailali",
"title": "Construction of RCC Overhead Water Storage Tank (225 Cum) of Banbeheda Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "15/074-75/WSSDO, Kailali",
"title": "Construction of RCC Overhead Water Storage Tank (225 Cum) of Beli Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "16/074-75/WSSDO, Kailali",
"title": "Constructio of RCC Overhead Water Storage Tank (225 Cum) ofPataupur Champakpur Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "17/074-75/WSSDO, Kailali",
"title": "Construction of RCC Overhead Water Storage Tank (225 Cum) of Samayaji Water Supply Project",
"procuring_entity": "Water Supply and Sanitation Division Office, Kailali",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "02-2074/75DOB",
"title": "Construction maintenance of various Urban Road of, Patan, Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "03-DROMNR/074/75/008",
"title": "Road Construction Works on Krishnapur Malubela Ghodaghat Road, Kanchanpur",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOI Issued",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "03-DROMNR/074/75/009",
"title": "Road Construction Works on Dhangadhi Ring Road, Kailali",
"procuring_entity": "504 Division Road Office Mahendranagar",
"type": "Works  NCB",
"status": "LOA Issued",
"published_date": "01-01-2018 00:00"
},
{
"rfp_no": "VLMP/Dandakharka/3/2074/75",
"title": "DandaKharka Landslide Management Works, Dolakha",
"procuring_entity": "Vulnerable Landslide Management Project, DWIDM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "DROJML 2.1- 074/075",
"title": "Roadway excavation works along Kalikot Jumla North South Road in Jumla/ Kalikot District",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "01-01-2018 12:15"
},
{
"rfp_no": "VLMP/Ramche/2/ 2074/75",
"title": "Ramche Landslide Management Works, Kalika-1, Rasuwa",
"procuring_entity": "Vulnerable Landslide Management Project, DWIDM",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "02/2074/75DOB",
"title": "Construction and Improvement of access road to proposed landfill site at Patan Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "DROJML 2.2- 074/75",
"title": "Construction of Structures, Bailey Bridge Transportation &amp; Installation and Approach Road works",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "31-12-2017 19:00"
},
{
"rfp_no": "DROJML 2.3- 074/075",
"title": "Roadway Improvement works along Manang Mustang Dolpa Jumla Road in Jumla District",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "31-12-2017 19:00"
},
{
"rfp_no": "DROJML 2.4- 074/075",
"title": "Roadway Excavation and Structural works along Mugu Simikot Road in Mugu District",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "31-12-2017 19:00"
},
{
"rfp_no": "02-2074-75DUDBC",
"title": "Construction of Cottage and small industries development office building Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "DROJML 2.5- 074/075",
"title": "Roadway Improvement works along Nagma- Gamgadhi Road (65+000 to 72+000) in Mugu District",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 10:00"
},
{
"rfp_no": "02-2074-75Dob",
"title": "Construction and Improvement works of minor urban road and drain in DCM, Baitadi",
"procuring_entity": "DUDBC,DIVISION OFFICE , BAITADI",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "DROJML 2.6- 074/075",
"title": "Roadway Improvement works along Nagma- Gamgadhi Road (72+000 to 80+000) in Mugu District]",
"procuring_entity": "403 Division Road Office Jumla,Khalanga",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "01-01-2018 09:00"
},
{
"rfp_no": "TNN4/DROSKT/337320-4/074/75-25",
"title": "Construction of RCC Bridges over 1. GAGRE KHOLA BRIDGE (CHAINAGE:104+050km), 2. NEWARE KHOLA BRIDGE (CHAINAGE:105+650km) 3. ITRAM KHOLA BRIDGE (CHAINAGE:106+800km) 4. KHORKE KHOLA BRIDGE (CHAINAGE:108+850km) and 5. DHODEKHALI KHOLA BRIDGE (CHAINAGE:111+500km) along Ratna Rajmarga.",
"procuring_entity": "405 Division Road Office Surkhet",
"type": "Works  NCB",
"status": "Evaluation Pending",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "GRM / BAJURA / Bldg / IFB -01",
"title": "Building Construction Works",
"procuring_entity": "Gaumul Rural Municipality, Bajura",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 00:00"
},
{
"rfp_no": "STRMM/KKT/RRMMRRCP/NCB/03/2074/075",
"title": "Rengil-Raku-Mehlmundi-Mumra Rural Road Construction Project ( Rengil to Raku) (Chainage: (0+000-1+800)",
"procuring_entity": "Sanni Tribeni Rural Municipality",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "02-01-2018 14:00"
},
{
"rfp_no": "RCTMSK /Khando/ RB /09/ 074-075",
"title": "Construction of Launching and Revetment works",
"procuring_entity": "Khando River Training Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "RCTMSK /Khando/ RB /10/ 074-075",
"title": "Construction of Launching and Revetment works.",
"procuring_entity": "Khando River Training Project",
"type": "Works  NCB",
"status": "Bid Published",
"published_date": "03-01-2018 00:00"
},
{
"rfp_no": "RCTMSK /Khando/ RB /11/ 074-075",
"title": "Construction of Launching and
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment