alert('Invalid Verification Code'); history.back();"); } } use Razorpay\Api\Api; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; require 'vendor/autoload.php'; $crm_website = strtoupper($_SERVER['SERVER_NAME']); $url1 = $_SERVER['SERVER_NAME']; $webpath = pathinfo($url1, PATHINFO_FILENAME); $website = strtoupper($webpath); //uydam cantilation if ((isset($_POST['form_name']))&&(isset($_POST['form_id']))&&($_POST['form_name']=="UDYAM Cancellation")&&($_POST['form_id']=="udyam_cancellation")){ $applicant_name = urlencode($_POST['applicant_name']); $mobile_number = urlencode($_POST['mobile_number']); $email_id = urlencode($_POST['email_id']); $form_name = urlencode($_POST['form_name']); //cancel reason togle if(isset($_POST['cancel_reason_text'])){$cancelreason=$_POST['cancel_reason_text'];}else{$cancelreason=$_POST['cancel_reason'];} $_SESSION['table_id'] = 'msme_form'; $payment_status = 'Unpaid'; // price of udaym canceletion $product_price = 2700; $sql=" INSERT INTO msme_form ( form_name, applicant_name, mobile_number, email_id, aadhaar_number, udyam_number, business_name, total_amount, payment_status, terms_of_service, cancel_reason ) VALUES ( '".$_POST["form_name"]."', '".$_POST["applicant_name"]."', '".$_POST["mobile_number"]."', '".$_POST["email_id"]."', '".$_POST["aadhaar_number"]."', '".$_POST["udyam_number"]."', '".$_POST["business_name"]."', '".$product_price."', '".$payment_status."', 'Checked', '".$cancelreason."' )"; if(!$result = $conn->query($sql)){ die('There was an error running the query [' . $conn->error . ']'); } else { $_SESSION["form_id"] = $conn->insert_id; $ch = curl_init('https://crm2.techlounge.co.in/api/registration-form-submission.php?formId='.$_SESSION["form_id"].'&vendor=TTG&business=MSME&website='.$crm_website.'&amount='.$product_price.'&status=Unpaid&name='.$applicant_name.'&mobile='.$mobile_number.'&email='.$email_id.'&formName='.$form_name.''); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); $_SESSION["panel_form_id_2"] = $response; $ch = curl_init('https://crm11.techlounge.co.in/api/registration-form-submission.php?formId='.$_SESSION["form_id"].'&vendor=TTG&business=MSME&website='.$crm_website.'&amount='.$product_price.'&status=Unpaid&name='.$applicant_name.'&mobile='.$mobile_number.'&email='.$email_id.'&formName='.$form_name.''); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); $_SESSION["panel_form_id_5"] = $response; // Razorpay Payment $api = new Api($keyId, $keySecret); $orderData = [ 'receipt' => 3457, 'amount' => $product_price * 100, 'currency' => 'INR', 'payment_capture' => 1 ]; $razorpayOrder = $api->order->create($orderData); $razorpayOrderId = $razorpayOrder['id']; $_SESSION['razorpay_order_id'] = $razorpayOrderId; $displayAmount = $amount = $orderData['amount']; // ---------------------------------- $post = [ 'api_key' => 123456, 'formId' => $_SESSION["form_id"], 'vendor' => 'TTG', 'business' => 'MSME', 'website' => 'UDYAMONLINEREGISTRATION.ORG', 'amount' => $product_price, 'status' => 'Unpaid', 'name' => $_POST['applicant_name'], 'mobile' => $_POST['mobile_number'], 'email' => $_POST['email_id'], 'state' => '-', 'formName' => $_POST['form_name'], 'orderId' => $razorpayOrderId, ]; // echo "
";print_r($post);die; // $ch = curl_init('https://webhook.site/80fa954f-869f-4c43-860d-889706d1bbfb'); $ch = curl_init('https://newcrm.techlounge.co.in/v1/form-data-send-to-crm'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); $response = curl_exec($ch); curl_close($ch); // -------------------------------------- if ($displayCurrency !== 'INR') { $url = "https://api.fixer.io/latest?symbols=$displayCurrency&base=INR"; $exchange = json_decode(file_get_contents($url), true); $displayAmount = $exchange['rates'][$displayCurrency] * $amount / 100; } $checkout = 'automatic'; if (isset($_GET['checkout']) and in_array($_GET['checkout'], ['automatic', 'manual'], true)) { $checkout = $_GET['checkout']; } $data = [ "key" => $keyId, "amount" => $amount, "name" => strtoupper($url1), "description" => $_POST['form_name'], "image" => "./assets/img/digital-india.png", "prefill" => [ "name" => $_POST['applicant_name'], "email" => $_POST['email_id'], "contact" => $_POST['mobile_number'], ], "notes" => [ "address" => "India", "merchant_order_id" => "EDSLlcJtsq4PGU", ], "theme" => [ "color" => "#2767dc" ], "order_id" => $razorpayOrderId, ]; if ($displayCurrency !== 'INR') { $data['display_currency'] = $displayCurrency; $data['display_amount'] = $displayAmount; } $json = json_encode($data); require("checkout/{$checkout}.php"); // Mailer // Mailer $host_name = $_SERVER['HTTP_HOST']; $website_name = strtoupper($host_name); $mail = new PHPMailer(true); try { $mail->isSMTP(); // $mail->SMTPDebug = 2; $mail->Host = $host_name; $mail->SMTPAuth = true; $mail->Username = 'order@'.$host_name.''; $mail->Password = 'freeDOM@611#'; $mail->SMTPSecure = 'tls'; $mail->Port = 587; $mail->setFrom('order@'.$host_name.'', $website_name); $mail->addAddress($_POST["email_id"]); $mail->isHTML(true); $mail->Subject = "New ".$_POST["form_name"]." Form Submitted"; $mail->Body = " APPLICANT NAME: ".$_POST["applicant_name"]."
MOBILE NUMBER: ".$_POST['mobile_number']."
EMAIL ID: ".$_POST['email_id']."
BUSINESS NAME: ".$_POST["business_name"]."
AADHAAR NUMBER: ".$_POST["aadhaar_number"]."
UDYAM NUMBER: ".$_POST["udyam_number"]."
CANCELLATION REASON: ".$_POST['cancel_reason']."
TOTAL AMOUNT: ".$product_price."
"; $mail->send(); } catch (Exception $e) { echo "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } } include_once('./client-email.php'); //after submiting... die(); } ?>Cancel Udyam Registration | Udyamonlineregistration.org Cancel Udyam Registration
Cancel Udyam Registration
उद्यम पंजीकरण रद्द करेंRead the Instruction to Cancel Udyam Registration
उद्यम पंजीकरण रद्द करने का निर्देश पढ़ेंREASON FOR CANCEL UDYAM REGISTRATION
Udyam Registration, Previously Known As Msme Registration, Is An Essential Process For Micro, Small, And Medium-sized Enterprises (MSMEs) In India. Once Registered, Enterprises Can Avail Of Various Benefits, Government Schemes, Subsidies, And Other Support Measures. Canceling Or Closing A Udyam Registration May Occur Due To Several Reasons:-
➧Business Closure: If The Business Has Terminate Operations Or Permanently Shut Down, The Owner Might Choose To Cancel The Udyam Registration As It Is No Longer Required.
➧Registration Errors: In Some Cases, Incorrect Information Might Have Been Submitted During The Registration Process. If There Are Significant Errors That Cannot Be Rectified Through The Update Process, Cancellation And Re-registration Might Be Considered.
➧Change In Business Structure: If There Has Been A Significant Change In The Business Structure, Such As Converting From A Proprietorship To A Partnership Or Changing The Ownership Structure, The Registration Might Need To Be Canceled And Re-registered To Reflect The Updated Information Accurately.
➧Non-compliance: If The Enterprise Is Found To Be Non-compliant With The Eligibility Criteria Or Regulations For Udyam Registration, Authorities May Cancel The Registration.
➧Voluntary Decision: The Enterprise Might Opt To Cancel The Registration Due To Strategic Reasons, A Change In Business Objectives, Or If They No Longer Wish To Avail The Benefits Or Support Associated With The Msme Category.
➧Merger Or Acquisition: In The Case Where The Business Has Been Merged With Another Entity Or Acquired By Another Company, The Udyam Registration Might Be Canceled Or Modified To Reflect The Changes Accurately.
Suppose There's A Need To Cancel A Udyam Registration. In that case, It's Advisable To Follow The Prescribed Procedure On Our Udyam Registration Portal Or Contact Our Team To Understand The Specific Steps And Requirements For Cancellation. Keeping Proper Documents To Follow Our Procedures Is Important To Ensure Observation And Avoid Any Complications Related To The Cancellation Process.