Booking Dt.: {{ \Carbon\Carbon::parse($data->booking_date)->format('d-m-Y') }}
Branch: {{ $data->branch_name }}
Tentative Delivery Date: {{ \Carbon\Carbon::parse($data->tentetive_delivery_date)->format('d-m-Y') }}
Customer Name: {{ $data->customer_name }}
GST Required.: {{ $data->gst_required }}
Mobile No.: {{ $data->contact_number }}
Company Name: {{ $data->company_name }}
GST No.: {{ $data->gst }}
PAN No.: {{ $data->pan_number }}
Registration Correspondence:
{{ $data->address }}
e-Invoice Applicable: {{ ucwords($data->einvoicing_applicable) }}
Occupation:- {{ $data->occupation }}
Date of Birth :- {{ \Carbon\Carbon::parse($data->dob)->format('d-m-Y') }}
City: {{ $data->city_name }}
District: {{ $data->district_name }}
State: {{ $data->state_name }}
Customer/Company Name: {{ $data->ship_to_customer_name }}
Registration Correspondence:
{{ $data->ship_to_address }}
GST No.: {{ $data->gst }}
City: {{ $data->ship_to_city_name }}
District: {{ $data->ship_to_district_name }}
State: {{ $data->ship_to_state_name }}
Name: {{ $data->nominee_name }}
Date of Birth: {{ $data->nominee_dob ? \Carbon\Carbon::parse($data->nominee_dob)->format('d-m-Y') : '' }}
Relation: {{ $data->nominee_reletion }}
Nominee Age: {{ $data->nominee_age }}
Car Model: {{ $data->car_model_name }}
Car Variant: {{ $data->car_varient_name }}
Exterior Color: {{ $data->exteriorcolor_name }}
Interior Color: {{ $data->interiorcolor_name }}
Fuel Type: {{ $data->fule_type }}
VIN Number: {{ $data->vin_number }}
Engine Number: {{ $data->engine_number }}
Key Number: {{ $data->key_number }}
MFG Year: {{ $data->manufacturing_year }}
@php
$rto = (float) ($data->registration_tax_id ?? 0) + (float) ($data->rto_custom_handling_charges ?? 0);
$on_road_price = (float) ($data->ex_showroom_price ?? 0) + (float) ($data->tcs_tax_id ?? 0) + $rto
+ (float) ($data->municipal_tax_id ?? 0) + (float) ($data->municipal_custom_handling_charges ?? 0)
+(float) ($data->insurance_id ?? 0) + $data->rsa_amount
+ $data->ccs_amount + (float) ($data->extand_warranties_amount ?? 0)
+ (float) ($data->mcp_amount ?? 0) + (float) ($data->fasttag_amount ?? 0)
+ (float) ($accessory_sum ?? 0) + (float) ($data->other_accesssories_prise ?? 0);
$total_discount = (float) ($data->offer_ib_amount ?? 0) + (float) ($data->offer_kin_amount ?? 0)
+ (float) ($data->exchange_bonus ?? 0) + (float) ($data->finance_discount ?? 0)
+ (float) ($data->way_off ?? 0) + (float) ($data->tl_discount ?? 0)
+ (float) ($data->sm_discount ?? 0) + (float) ($data->gm_discount ?? 0)
+ (float) ($data->bh_discount ?? 0) + (float) ($data->ceo_discount ?? 0)
+ (float) ($data->md_discount ?? 0)+ (float) ($data->foc_accessories ?? 0);
// Calculate final deal on-road price
$final_deal_on_road = $on_road_price - $total_discount;
@endphp
|
|
| Standard Ex-Showroom Price |
|
{{ $data->ex_showroom_price ?? 0 }} |
| TCS | 1% | {{ $data->tcs_tax_id ?? 0 }} |
Pan Aadhar Link | {{ ucwords($data->aadhar_pan_link) }} |
| Registration Tax | | {{ $rto }} |
RTO Type | {{ ucwords(str_replace('_', ' ', $data->customer_type)) }} |
| | |
Customer Type | {{ $data->customer_type_name }} |
| Municiple Tax | | {{ $data->municipal_tax_id ?? 0 }} |
RMC Status | {{ ucwords(str_replace('_', '-', $data->municipal_tax_type)) }} |
| Municipal Custom Handling Charges | | {{ $data->municipal_custom_handling_charges ?? 0 }} |
| | |
| Insurance | | {{ $data->insurance_id ?? 0 }} |
Insurance Company | {{ $data->insurance_company_name }} |
| Road Side Assistance (RSA) | | {{ $data->rsa_amount ?? 0 }} |
Package (RSA) | {{ $data->rsa_name ?? 'N/A' }} |
| CCS | | {{ $data->ccs_amount ?? 0 }} |
Package (CCS) | {{ $data->ccs_name ?? 'N/A' }} |
| Extended Warranty | | {{ $data->extand_warranties_amount ?? 0 }} |
Package (EW) | {{ $data->extand_warranties_years }} |
| MCP / MCP+ | | {{ $data->mcp_amount ?? 0 }} |
Package (MCP/MCP+) | {{ $data->mcp_name }} |
| Fastag | | {{ $data->fasttag_amount ?? 0 }} |
Package (Fastag) | {{ $data->fasttage_name }} |
| Accessories | | {{ $accessory_sum ?? 0 }} |
Package (Accessories) | {{ $accessory_names }} |
| Other Accessories | | {{ $data->other_accesssories_prise ?? 0 }} |
Package (Other Accessories) | {{ $data->other_accesssories_detail }} |
| Other Value Add Service_01 | | {{ $data->other_one_name ?? 0 }} |
Insurance Remark | {{ $data->step3_remarks ?? '-' }} |
| Other Value Add Service_02 | | {{ $data->other_two_name ?? 0 }} |
KEC Remarks | |
| {{ $data->step1_remarks }} |
@php
function convertNumberToWords($number) {
$words = array(
'0'=> '', '1'=> 'One', '2'=> 'Two', '3'=> 'Three', '4'=> 'Four', '5'=> 'Five',
'6'=> 'Six', '7'=> 'Seven', '8'=> 'Eight', '9'=> 'Nine', '10'=> 'Ten',
'11'=> 'Eleven', '12'=> 'Twelve', '13'=> 'Thirteen', '14'=> 'Fourteen',
'15'=> 'Fifteen', '16'=> 'Sixteen', '17'=> 'Seventeen', '18'=> 'Eighteen',
'19'=> 'Nineteen', '20'=> 'Twenty', '30'=> 'Thirty', '40'=> 'Forty',
'50'=> 'Fifty', '60'=> 'Sixty', '70'=> 'Seventy', '80'=> 'Eighty', '90'=> 'Ninety'
);
$digits = array('', 'Hundred', 'Thousand', 'Lakh', 'Crore');
$number = round($number);
if ($number == 0) {
return 'Zero Rupees Only';
}
$str = [];
$i = 0;
while ($number > 0) {
$divider = ($i == 1) ? 10 : 100;
$numberPart = $number % $divider;
$number = (int)($number / $divider);
if ($numberPart) {
$prefix = '';
if ($numberPart < 21) {
$prefix = $words[$numberPart];
} else {
$tens = (int)($numberPart / 10) * 10;
$units = $numberPart % 10;
$prefix = $words[$tens] . ($units ? ' ' . $words[$units] : '');
}
$str[] = $prefix . ' ' . $digits[$i];
}
$i++;
}
return implode(' ', array_reverse($str)) . ' Rupees Only';
}
@endphp
On Road Price (In Words) : {{ convertNumberToWords($final_deal_on_road) }}
@php
$total_payment_received = ($data->booking_amount ?? 0) + ($data->dp_amount ?? 0) + ($data->net_disbusment ?? 0) + ($data->total_exchange_amount ?? 0);
$finance_dis = ($data->offer_ib_amount ?? 0) + ($data->offer_kin_amount ?? 0) + ($data->finance_discount ?? 0) + ($data->way_off ?? 0) + ($data->tl_discount ?? 0) + ($data->sm_discount ?? 0) + ($data->gm_discount ?? 0) + ($data->bh_discount ?? 0) + ($data->ceo_discount ?? 0) + ($data->md_discount ?? 0)+ ($data->foc_accessories ?? 0);
$due_amount = $data->on_road_price - $total_payment_received - $finance_dis;
@endphp
| Booking Amount | {{ $data->booking_amount ?? 0 }} |
| Down Payment | {{ $data->dp_amount ?? 0 }} |
| Finance Disbursed | {{ $data->net_disbusment ?? 0 }} |
| Exchange Amount | {{ $data->total_exchange_amount ?? 0 }} |
| Other Amount Received | 0 |
| Total Payment Received (D) | {{ $total_payment_received }} |
| Due Amount (-) / Refund (+) (C - D) | {{ $due_amount }} |
| Finance By :- | {{ $data->finance_name}} |
| Finance Type :- | {{ ucwords(str_replace('_', ' ', $data->finance_type)) }} |
| |
| Ex. Car Name :- | {{ $data->exchange_company_name }}MFG Year :- {{ $data->manufacturing_year }} |
| Ex.Car Variant :- | {{ $data->exchange_car_name }} |
| Ex. Car Reg. No. :- | {{ $data->registration_number }} |
I/We have read the terms and conditions related to the above contract as attached in annexure and accept the same.
I/We further understand that this agreement of sale of the above vehicle is between both of us & that KIN is not a party to this booking & is not liable in any manner.
** Please find the enclosed terms and conditions for order and booking form for Kia India Ltd. in the back page.
Retail Order & Booking Form
Terms and Conditions for RETAIL ORDER & BOOKING FORM
1. Definitions
- Kia Motors India is having its registered office In India.
- "Shivam Kia", is a legal entity authorized by KMI for undertaking Sale and Service of the KIA Vehicles in the non-exclusive territory of responsibility.
- “Customer” means buyer who intends to purchase a KIA Vehicle from the Dealer.
- “Retail & Booking Form” means the date of realization of the initial Demand Draft / Pay Order / Cheque provided by the Customer to Dealer alongwith the Booking Order Form towards the booking of the KIA Vehicle.
- “(CKD) Vehicles / Cars” means KIA Vehicles that are constructed and configured as per specific customer requirements outlined at the time of booking and / or ordered / imported as fully built units for sale to that specific customer.
2. Conditions for acceptance of Order
- Particulars of Sales Contract form should be filled out by Customer in English language only. The Sales Contract form must be filled in duplicate, one copy thereof duly acknowledged and stamped with the date and time or
receipt shall be given by the Dealer to the Customer.
- The Customer should obtain his / her copy of the Sales Contract from the Dealer duly stamped after submitting the completed Sales Contract and making payment of prescribed booking amount.
- A Customer may place an order for only a single KIA Vehicle in a Sales Contract. If a Customer wishes to place an Order for more than one KIA Vehicle, the order for each KIA Vehicle should be made in a separate Sales Contract bearing new order number. The Sales Contract should clearly indicate the specifications of the KIA Vehicle ordered by the Customer.
- An order shall only be considered binding when accepted in writing by the Dealer and signed by the Customer.
- Sales Contracts which are incomplete in any respect, or which are not properly signed by the Customer may be rejected by the Dealer. If at any point of time, it is found that any of information / documents given for booking of the vehicle are incorrect, the Dealer shall have the right to cancel the booking and refund the money to the Customer (if applicable) as per the Dealer’s refund policy, without any further claims on the Dealer.
- The nominee designated by the applicant in the Sales Contract shall not be a minor in the event of the death of the applicant the Order may be transferred to the nominee of the deceased or to the legal representative
upon satisfactory evidence being provided.
- Orders will be accepted by the Dealer based on the number of KIA Vehicles likely to be received from the Manufacturer.
3. Payment
- The price taxes, duties, etc payable will be applicable on the basis of the prices ruling on the date and city of delivery.
- An advance payment of minimum Rs. 25000 shall be made along with the Sales Contract by the way of a DD/ONLINE/Cheque in Favour of the SAVAN IB AUTOMOTIVE PVT. LTD. Advance payment will be adjusted against the price of the KIA Vehicle ruling at the time of the delivery.
- Based on the communication from the Manufacturer, the Dealer shall intimate the status regarding the vehicle allotment and its readiness to the applicant through a written notice / Whatss App./ electronic mail. The applicant will be required to make the balance payment within 7 working days from the date of this intimation, failing which the Sales Contract shall be cancelled. Upon cancellation of the Sales Contract the advance paid will be forfeited in accordance with the terms contained under clause-4.
- State Entry Tax, if any leviable, will be charged extra on the customer.
- Any applicable increase in the price of vehicle, excise Duty, Surcharge, Central and Sales Tax, GST Tax, Ces, transportation charges and or any governmental levies which comes into force and is communicated to the dealer before / by the date of delivery / dispatch of the vehicle(s) to the customer shall be payable by the customer.
- All deliveries shall only be made against realization of 100% payment.
- In the event of the cheque for the advance payments submitted by the customer is rejected by the bank for any reason whatsoever, the Sales contract stands cancelled and the customer is liable to pay any charges the Dealer may suffer.
- In the event of customer’s cheque for the balance payment is rejected by the bank for any reason whatsoever, the customer can make the payment within 3 working days through a DD only. Further, the customer shall also intimate the Dealer for any damages suffered by the Dealer for the rejection of the customers cheque by the Bank should the customer not be able to make the required payments in 3 working days, the Sales contract would be deemed to be cancelled and would lead to forfeiture of the advance paid in accordance with the terms contained under Clause 4.
4. Cancellation
- In the event of cancellation of the Sales Contract in accordance with the terms contained herein, the following cancellation charges apply. Dealer shall be entitled to deduct the same from the advance paid by the applicant
depending upon the model of the vehicle ordered. In case of Model (a) Seltos - 2500, (b) Carnival - 5000, (c) Sonet / Carens / Carens Clavis / Syros /- 2000, (d) EV6 - 25000 Upon forfeiting of such amounts as mentioned
herein above by the Dealer from the advance paid by the customer, the remaining balance amount shall be returned to the customer.
5. Interest
- The advance payment received towards the vehicle by the Dealer, shall not carry any interest
6. Delivery
- Dealer stock vehicles will be delivered within 4 working days from the date of realization of 100% payment. Vehicle will be not delivered without number plate fitted.
- The applicant shall not be entitled to claim any damages or losses of any kind for delay in the delivery or non delivery of the KIA Vehicle due to natural causes, war or civil strike, labour strike or unrest, natural calamities,etc.
- The specification and price of the KIA Vehicle are subject to change without prior notice and the price ruling at the time of delivery will be applicable.
- The company will not be responsible for any damage or shortage reported after the delivery and after obtaining the signature of the customer or his authorized representative (including transport contractor through whom the vehicle is transported) on the delivery receipt
7. General
- The Dealer will not be responsible for delay, loss or rejection of the Sales Contract, or for safe custody or transmission of any Demand Draft/pay order or any other payment or documents sent to the Dealer by post/courier.
- Vehicles once sold will not be taken back under any circumstances.
- The supply against order will be governed by statutory orders, rules and regulations imposed by Central and State Government from time to time.
- All vehicles carry maker’s standard warranty. No warranty other than that given by the makers shall be stipulated as applicable to this purchase.
- The company shall not permit in relation to any contracts or intended contracts, any act(s) constituting attempts of inducements to favour or bribe any employee of SAVAN IB AUTOMOTIVE PRIVATE LIMITED and reserves the right to cancel or refuse to deal with any person(s) attempting to do so. Company encourages the report to any such misconduct immediately to appropriate authorities.
- All legal proceedings in respect of any matter covered under the Sales Contract shall be governed in accordance with the laws of India. The courts situated in RAJKOT shall have the jurisdiction to settle the disputes arising under these terms and conditions to the exclusion of any other court.
- As per the order of RTO and Transport commissioner Gujarat, the delivery of new vehicle will not be done without a number plate. Once the RTO tax porcess is completed no cahnges will be made in the Model, vareint and colour. I also aggre that address proof provided by me will not be changed under any circumstances, I also agree that Dealership will not be responsible for the choice number. My delivery.
- I am providing all the documents pertaining to KYC/RTO registration are genuine and valid.
- I am also informed that Any DISCOUNT offered to me will be adjusted from Ex. Showroom Price, TCS, RTO & Municipal Tax if applicable.
8. Customer Data
- By signing the Sales contract the customer is informed that his details will be shared with KIA Motors India.