@php $logo_1 = $images->gatepass_logo1 ?? ''; @endphp
Shivam Kia ( IB Group)
RETAIL ORDER & BOOKING FORM
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') }}
Bill To:
PAN No.: {{ $data->pan_number }}
PAN Aadhar Link Status.: {{ ucwords($data->aadhar_pan_link) }}
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 }}
Ship To:
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 }}
Nominee Details:
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 Details
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 }}
Sales Person Name :-{{ $data->sales_person_name }}          Team Leader Name :-{{ $data->team_name }}
Car On Road Price
@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
Particular Amount Price List Wef. :- {{ $data->price_list_name }}
Standard Ex-Showroom Price {{ $data->ex_showroom_price ?? 0 }}
TCS1%{{ $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
On Road Price (A){{ $on_road_price }} {{ $data->step1_remarks }}
Less: Total Discount (B){{ $total_discount }}
Final Deal On Road (A - B = C){{ $final_deal_on_road }}
@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) }}
Customer Payment Status
@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 Received0
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.
Customer Signature
KEC / TL Signature
SM : GM : BH Signature
Retail Order & Booking Form

Terms and Conditions for RETAIL ORDER & BOOKING FORM

1. Definitions

2. Conditions for acceptance of Order

3. Payment

  1. The price taxes, duties, etc payable will be applicable on the basis of the prices ruling on the date and city of delivery.
  2. 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.
  3. 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.
  4. State Entry Tax, if any leviable, will be charged extra on the customer.
  5. 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.
  6. All deliveries shall only be made against realization of 100% payment.
  7. 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.
  8. 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

  1. 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

  1. The advance payment received towards the vehicle by the Dealer, shall not carry any interest

6. Delivery

  1. 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.
  2. 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.
  3. 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.
  4. 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

  1. 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.
  2. Vehicles once sold will not be taken back under any circumstances.
  3. The supply against order will be governed by statutory orders, rules and regulations imposed by Central and State Government from time to time.
  4. All vehicles carry maker’s standard warranty. No warranty other than that given by the makers shall be stipulated as applicable to this purchase.
  5. 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.
  6. 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.
  7. 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.
  8. I am providing all the documents pertaining to KYC/RTO registration are genuine and valid.
  9. 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

  1. By signing the Sales contract the customer is informed that his details will be shared with KIA Motors India.
Customer Signature
KEC / Team Leader
GM / BH