TAX SERVICES

TYPES OF INCOME TAX NOTICE ONE CAN RECEIVE

Image

Notice u/s 139(9): Defective Income Tax Return

In this case, Portal identifies a particular Error in the filing of Income Tax Return and also suggests a probable Resolution to rectify the same.

Assessee is given the opportunity to respond within 15 days from the date of Intimation or before it is Assessed. If Assessee didn’t respond within 15 days, then the Return will be rejected by A.O.

The Defect u/s 139(9) can be the wrong ITR filed, missing Information, Incomplete Return etc.

Intimation u/s 143(1)

After Electronically Processing of the Income Tax Return by CPC, the Income is computed after considering the following Adjustments:

  • IconAny Arithmetical Error
  • IconAn Incorrect Claim
  • IconDisallowance of Incorrectly Claimed loss or Expenditure
  • IconAny Income which has not been included in the Return

 

Upon successful Processing, Intimation is issued determining the Tax Liability to be paid, refund determined, or No refund or No demand.

Notice u/s 143(2)

The Purpose of this Notice is to notify the Assessee, that the Return filed has been picked for Scrutiny. This Notice has to be served to the Assessee within 6 months after the completion of Assessment Year to which it pertains.

The Assessing Officer intends to be assured that you have not done any of the following:

  • IconUnderstated your Income
  • IconClaimed Excessive Loss
  • IconPaid Lesser Taxes

 

The Taxpayer is required to respond to the Questionnaire issued along with the Documents required by the Income Tax Department.

Notice u/s 148

An Assessing officer may have a Reason to believe that Assessee has not disclosed the Income correctly and therefore has paid lower Taxes or the ITR has not been filed at all. In this case, Officer is entitled to Reassess the Income accordingly.

Before making such an Assessment, the officer would serve a Notice u/s 148 to the Assessee asking him to furnish the Return of Income.

Then, the Taxpayer is required to respond to the Questionnaire issued u/s 142(1) along with the Documents required by the Income Tax Department.

 
AWARDS

Unlock Financial Excellence With Fint CPA Bookkeeping Services!

Book A Free Consultation
Call Icon
Free Call Now +91 9999275999

435

BUSINESS SERVED

1434

TAX FORM PREPARED

700

PAYROLL SETUP

441K

$ SAVED EARLY

150+

TAX PROFESSIONALS

// Primansh Lead Capture Script for Custom Forms // Version: 1.0.0 // Place this script in your custom website or form handler // Configuration - REPLACE WITH YOUR ACTUAL CLIENT ID const CLIENT_ID = '71452776-abef-4ebd-b581-e3e51f553d53'; // This is pre-filled with your client's ID const WEBHOOK_URL = 'https://tpeskbbvrfebtjiituwi.supabase.co/functions/v1/process-webhook'; // Helper function to normalize form values function normalizeValue(value) { if (value === null || value === undefined) return ''; if (typeof value === 'string') return value.trim(); if (typeof value === 'number' || typeof value === 'boolean') return String(value); return String(value); } // Handle form submission async function handleFormSubmit(event) { event.preventDefault(); const form = event.target; const formData = new FormData(form); // Convert FormData to object const data = {}; formData.forEach((value, key) => { data[key] = normalizeValue(value); }); // Prepare lead data const leadData = { client_id: CLIENT_ID, source: 'website', status: 'new', ...data }; // Add common field mappings if they exist const fieldMappings = { name: ['name', 'fullname', 'full_name', 'your-name', 'fname', 'firstname'], email: ['email', 'e-mail', 'your-email', 'emailaddress'], phone: ['phone', 'telephone', 'tel', 'mobile', 'your-phone', 'whatsapp'], notes: ['message', 'comments', 'comment', 'notes', 'requirement', 'description'], service: ['service', 'services', 'subject', 'inquiry-type', 'interest'], firm_name: ['firm_name', 'firm name', 'company', 'company name', 'business name'], budget: ['budget', 'estimated-budget', 'estimated budget', 'project-budget'] }; // Apply field mappings Object.keys(fieldMappings).forEach((leadField) => { const possibleFields = fieldMappings[leadField]; for (const field of possibleFields) { if (data[field] !== undefined && data[field] !== '') { leadData[leadField] = data[field]; break; } } }); // Submit to webhook try { const response = await fetch(`${WEBHOOK_URL}?client_id=${encodeURIComponent(CLIENT_ID)}`, { method: 'POST', body: new URLSearchParams(leadData) }); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); } const result = await response.json(); console.log('Primansh lead capture success:', result); return { success: true, data: result }; } catch (error) { console.error('Primansh lead capture error:', error); return { success: false, error: error.message }; } } // Export for use in form handlers window.PrimanshLeadCapture = { handleFormSubmit };