��<?php /* Plugin Name: Tenderslink Display Description: Displays tenders from Tenderfile.csv with search and pagination. Version: 1.0 Author: Custom */ function tenderslink_display_shortcode() { $csv_file = WP_CONTENT_DIR . '/Tenderfile.csv'; ob_start(); ?> <div class="tenderslink-search-wrapper"> <form class="tenderslink-search-form" role="search" method="get"> <input type="search" class="tenderslink-search-input" placeholder="Search tenders..." value="" /> <button type="submit" class="tenderslink-search-button">Search</button> </form> </div> <div class="tenderslink-tender-list" id="tenderslink-tender-list"> <?php if (file_exists($csv_file) && ($handle = fopen($csv_file, 'r')) !== false) { $header = fgetcsv($handle); $count = 0; while (($data = fgetcsv($handle)) !== false && $count < 10000) { // Changed from 500 to 10000 $tln = esc_attr($data[0]); $authority = esc_html($data[1]); $title = esc_html($data[2] === '#NAME?' ? $data[6] : $data[2]); $tender_id = esc_html($data[3]); $tender_value = esc_html($data[4]); $due_date = esc_html($data[5]); $work_brief = esc_html($data[6]); $status_link = 'https://tenderslink.com/subscribe-0/'; ?> <div class="tenderslink-tender-container" data-tln="<?php echo $tln; ?>"> <div class="tenderslink-tender-header"> <h3><?php echo $authority; ?></h3> <a class="tenderslink-tender-button" href="<?php echo $status_link; ?>">View Status</a> </div> <hr class="tenderslink-tender-divider"/> <p class="tenderslink-tender-title"><strong>Title:</strong> <?php echo $title; ?></p> <div class="tenderslink-tender-details"> <span><strong>TLN:</strong> <?php echo $tln; ?></span> <span><strong>Tender ID:</strong> <span class="tenderslink-blurred"><?php echo $tender_id; ?></span></span> <span><strong>Due Date:</strong> <?php echo $due_date; ?></span> </div> <p class="tenderslink-tender-value"><strong>Tender Value:</strong> <span class="tenderslink-blurred"><?php echo $tender_value; ?></span></p> <p class="tenderslink-tender-brief admin-only"><strong>Work Brief:</strong> <?php echo $work_brief; ?></p> </div> <?php $count++; } fclose($handle); } else { echo '<p>Error: Unable to load tenders. Please check Tenderfile.csv.</p>'; } ?> <div class="tenderslink-pagination"> <button id="tenderslink-prev-page" disabled>Previous</button> <span id="tenderslink-page-info">Page 1 of 1000</span> <!-- Updated to reflect potential max pages --> <button id="tenderslink-next-page">Next</button> </div> </div> <?php return ob_get_clean(); } add_shortcode('tenderslink_list', 'tenderslink_display_shortcode'); function tenderslink_enqueue_assets() { if (has_shortcode(get_post()->post_content, 'tenderslink_list')) { wp_enqueue_style('tenderslink-styles', plugin_dir_url(__FILE__) . 'tenderslink-styles.css', [], '1.0'); wp_enqueue_script('tenderslink-script', plugin_dir_url(__FILE__) . 'tenderslink-script.js', [], '1.0', true); } } add_action('wp_enqueue_scripts', 'tenderslink_enqueue_assets'); function tenderslink_body_class($classes) { if (current_user_can('manage_options')) { $classes[] = 'admin-logged-in'; } return $classes; } add_filter('body_class', 'tenderslink_body_class'); function tenderslink_admin_menu() { add_menu_page('Tenderslink Generator', 'Tenderslink', 'manage_options', 'tenderslink-generator', 'tenderslink_generate_html_page'); } add_action('admin_menu', 'tenderslink_admin_menu'); function tenderslink_generate_html_page() { if (!current_user_can('manage_options')) { wp_die('Unauthorized.'); } $csv_file = WP_CONTENT_DIR . '/Tenderfile.csv'; $output_file = WP_CONTENT_DIR . '/tenders.html'; if (isset($_POST['generate_tenders']) && file_exists($csv_file)) { $html = '<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Tender List</title>'; $html .= '<link rel="stylesheet" href="' . plugin_dir_url(__FILE__) . 'tenderslink-styles.css">'; $html .= '</head><body>'; $html .= '<div class="tenderslink-search-wrapper"><form class="tenderslink-search-form" role="search" method="get"><input type="search" class="tenderslink-search-input" placeholder="Search tenders..." value="" /><button type="submit" class="tenderslink-search-button">Search</button></form></div>'; $html .= '<div class="tenderslink-tender-list" id="tenderslink-tender-list">'; if (($handle = fopen($csv_file, 'r')) !== false) { $header = fgetcsv($handle); $count = 0; while (($data = fgetcsv($handle)) !== false && $count < 10000) { // Changed from 500 to 10000 $tln = htmlspecialchars($data[0]); $authority = htmlspecialchars($data[1]); $title = htmlspecialchars($data[2] === '#NAME?' ? $data[6] : $data[2]); $tender_id = htmlspecialchars($data[3]); $tender_value = htmlspecialchars($data[4]); $due_date = htmlspecialchars($data[5]); $work_brief = htmlspecialchars($data[6]); $status_link = 'https://tenderslink.com/subscribe-0/'; $html .= "<div class=\"tenderslink-tender-container\" data-tln=\"{$tln}\"><div class=\"tenderslink-tender-header\"><h3>{$authority}</h3><a class=\"tenderslink-tender-button\" href=\"{$status_link}\">View Status</a></div><hr class=\"tenderslink-tender-divider\"/><p class=\"tenderslink-tender-title\"><strong>Title:</strong> {$title}</p><div class=\"tenderslink-tender-details\"><span><strong>TLN:</strong> {$tln}</span><span><strong>Tender ID:</strong> <span class=\"tenderslink-blurred\">{$tender_id}</ >B25BAB25=: <span><strong>Due Date:</strong> {$due_date}</span></div><p class=\"tenderslink-tender-value\"><strong>Tender Value:</strong> <span class=\"tenderslink-blurred\">{$tender_value}</span></p><p class=\"tenderslink-tender-brief admin-only\"><strong>Work Brief:</strong> {$work_brief}</p></div>"; $count++; } fclose($handle); } $html .= '<div class="tenderslink-pagination"><button id="tenderslink-prev-page" disabled>Previous</button><span id="tenderslink-page-info">Page 1 of 1000</span><button id="tenderslink-next-page">Next</button></div></div>'; $html .= '<script src="' . plugin_dir_url(__FILE__) . 'tenderslink-script.js"></script>'; $html .= '</body></html>'; if (file_put_contents($output_file, $html)) { echo '<div class="notice notice-success"><p>tenders.html generated at: ' . $output_file . '</p></div>'; } else { echo '<div class="notice notice-error"><p>Failed to generate tenders.html.</p></div>'; } } ?> <div class="wrap"> <h1>Tenderslink HTML Generator</h1> <form method="post"> <p><input type="submit" name="generate_tenders" class="button button-primary" value="Generate tenders.html"></p> </form> </div> <?php } ?> Tenders Document Checklist - Tender Link

Tenders Document Checklist

Document Checklist


This is a general guide, as specific requirements vary by tender and organization. Always refer to the tender document (RFP, NIT or BoQ) for exact details.

1. General Documents

  • Company Registration Certificate: Proof of business registration (e.g., Certificate of Incorporation, Partnership Deed, or Proprietorship registration).
  • GST Registration Certificate: Valid GSTIN for tax compliance.
  • PAN Card: Permanent Account Number of the company or proprietor.
  • Digital Signature Certificate (DSC): Required for e-procurement platforms like GeM or CPPP.
  • Authorized Signatory Details: Power of Attorney or authorization letter for the person signing the bid.

2. Financial Documents

  • Audited Financial Statements: Balance sheets and profit/loss statements for the last 2-3 years (as specified).
  • Turnover Certificate: Certified by a Chartered Accountant to prove annual turnover meets tender requirements.
  • Income Tax Returns (ITR): Filed ITRs for the last 2-3 years.
  • Solvency Certificate: Issued by a bank to confirm financial stability (if required).
  • Earnest Money Deposit (EMD): Proof of payment (demand draft, bank guarantee, or online transaction receipt), unless exempted (e.g., MSMEs).

3. Technical Documents

  • Experience Certificates: Work completion certificates or contracts proving relevant experience (number of years/projects as per tender).
  • Technical Specifications: Detailed documents showing compliance with the tender’s technical requirements (e.g., product specs, service capabilities).
  • Certifications: ISO, BIS, or other industry-specific certifications, if applicable.
  • Manpower Details: Information on staff strength, qualifications, or technical expertise (if required).
  • Equipment and Infrastructure: Details of machinery, tools, or facilities available to execute the project.

4. Statutory and Compliance Documents

  • EPF and ESI Registration: Proof of registration with Employees’ Provident Fund and Employees’ State Insurance (if applicable).
  • Labor License: If the tender involves labor-intensive work.
  • No Blacklisting Declaration: Self-declaration stating the company is not blacklisted by any government entity.
  • Undertaking for Compliance: Declaration of adherence to tender terms, labor laws, and other regulations.

5. Bid-Specific Documents

  • Technical Bid: Detailed proposal addressing the scope of work, methodology, and timelines.
  • Financial Bid: Price quote in the specified format (e.g., Bill of Quantities – BoQ), including taxes and other costs.
  • Bid Security Declaration: If EMD is exempted, a declaration committing to bid terms.
  • Tender Acceptance Letter: Acknowledgment of tender terms and conditions.
  • Pre-Bid Query Responses: Clarifications or documents submitted post pre-bid meeting (if applicable).

6. Additional Requirements

  • Performance Bank Guarantee (PBG): If required post-award, prepare bank guarantee details.
  • MSME/Startup Certificate: For exemptions like EMD waivers or relaxed eligibility (e.g., Udyam Registration for MSMEs).
  • Bank Details: Cancelled cheque or bank certificate for payment purposes.
  • Non-Disclosure Agreement (NDA): If the tender involves sensitive information.
  • Other Specific Documents: As mentioned in the tender (e.g., quality test reports, client references).

Key Notes

  • Verify Tender Requirements: Cross-check the tender document for specific documents, formats, and submission methods (online/offline).
  • Organize Documents: Arrange documents in the order specified in the tender to avoid rejection.
  • Check Validity: Ensure all certificates (GST, DSC, etc.) are valid at the time of submission.
  • Digital Submission: For e-procurement, upload documents in PDF or specified formats and ensure DSC compatibility.
  • Physical Submission: For offline bids, submit sealed envelopes (technical and financial bids separately, if required) with proper labeling.
  • Keep Copies: Retain copies of all submitted documents and proof of submission (e.g., portal acknowledgment or courier receipt).
  • Corrigenda: Monitor the tender portal for amendments or additional document requirements.

Tips

  • Use a checklist specific to each tender to avoid missing critical documents.
  • For complex tenders, consult a tender expert or legal advisor to ensure compliance.
  • Register on platforms like GeM (gem.gov.in) or CPPP (eprocure.gov.in) to access tender-specific templates and guidelines.

This checklist is a starting point. Always tailor it to the specific tender’s requirements to ensure a compliant and competitive bid.