You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
489 lines
32 KiB
489 lines
32 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<!--Franchise website menu-->
|
|
<data noupdate="1">
|
|
<record id="website_franchise_menu" model="website.menu">
|
|
<field name="name">Become A Franchise</field>
|
|
<field name="url">/franchise_menu</field>
|
|
<field name="parent_id" ref="website.main_menu"/>
|
|
<field name="sequence">25</field>
|
|
</record>
|
|
</data>
|
|
<!--Franchise request form-->
|
|
<template id="tmpl_dealer_request" name="Become A Franchise">
|
|
<t t-call="website.layout">
|
|
<div id="wrap">
|
|
<div class="oe_structure">
|
|
<div class="container">
|
|
<br/>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<form id="regForm"
|
|
action="/franchise_menu/form/submit">
|
|
<!-- <nav>-->
|
|
<div class="nav nav-tabs" id="nav-tab"
|
|
role="tablist">
|
|
<button class="nav-link active"
|
|
id="nav-info-tab"
|
|
data-toggle="tab"
|
|
href="#nav-info"
|
|
type="button" role="tab"
|
|
aria-controls="nav-info"
|
|
aria-selected="true">
|
|
Personal Information
|
|
</button>
|
|
<button class="nav-link"
|
|
id="nav-detail-tab"
|
|
data-toggle="tab"
|
|
href="#nav-detail"
|
|
type="button" role="tab"
|
|
aria-controls="nav-detail"
|
|
aria-selected="false">
|
|
Business Details
|
|
</button>
|
|
</div>
|
|
<!-- </nav>-->
|
|
<div class="tab-content" id="nav-tabContent">
|
|
<div class="tab-pane fade show active"
|
|
id="nav-info" role="tabpanel"
|
|
aria-labelledby="nav-info-tab">
|
|
<div class="tab">
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Contact Information:
|
|
</b>
|
|
</h6>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">Name:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="dealer_name"
|
|
id="dealer_name"
|
|
placeholder="Name"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">
|
|
Phone:
|
|
</label>
|
|
<br/>
|
|
<input type="phone"
|
|
class="link-style"
|
|
name="dealer_phone"
|
|
id="dealer_phone"
|
|
placeholder="Phone"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">
|
|
Email:
|
|
</label>
|
|
<br/>
|
|
<input type="email"
|
|
class="link-style"
|
|
name="dealer_mail"
|
|
id="dealer_mail"
|
|
placeholder="Email"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">
|
|
Website:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="dealer_website"
|
|
id="dealer_website"
|
|
placeholder="Website
|
|
"/>
|
|
<br/>
|
|
</div>
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Shop Address Info
|
|
:
|
|
</b>
|
|
</h6>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">
|
|
Location:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="street"
|
|
id="street"
|
|
placeholder="Location
|
|
"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label">
|
|
City:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="city" id="city"
|
|
placeholder="City"/>
|
|
<br/>
|
|
<label for="state_id"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
State:
|
|
</label>
|
|
<br/>
|
|
<select name="state_id"
|
|
class="link-style"
|
|
placeholder="State">
|
|
<t t-foreach="state_rec"
|
|
t-as="states">
|
|
<option t-att-value="states.id">
|
|
<t t-esc="states.name"/>
|
|
</option>
|
|
</t>
|
|
</select>
|
|
<br/>
|
|
<label for="country_id"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Country:
|
|
</label>
|
|
<br/>
|
|
<select name="country_id"
|
|
class="link-style"
|
|
placeholder="country">
|
|
<t t-foreach="country_rec"
|
|
t-as="countries">
|
|
<option t-att-value="countries.id">
|
|
<t t-esc="countries.name"/>
|
|
</option>
|
|
</t>
|
|
</select>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Pincode:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="zip" id="zip"
|
|
placeholder="zip code"/>
|
|
<br/>
|
|
</div>
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Profession and
|
|
Qualification:
|
|
</b>
|
|
</h6>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Qualification:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="dealer_qualification"
|
|
id="dealer_qualification"
|
|
placeholder="Qualification"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Current
|
|
Occupation:
|
|
</label>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="dealer_occupation"
|
|
id="dealer_occupation"
|
|
placeholder="Current Occupation"/>
|
|
<br/>
|
|
<br/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="tab-pane fade show active"
|
|
id="nav-detail" role="tabpanel"
|
|
aria-labelledby="nav-detail-tab">
|
|
<div class="tab">
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Franchise Details:
|
|
</b>
|
|
</h6>
|
|
<label for="franchisee_name"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">Franchisee Name:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
required="1"
|
|
name="franchisee_name"
|
|
id="franchisee_name"
|
|
placeholder="Franchisee Name"/>
|
|
<br/>
|
|
<label for="franchisee_email"
|
|
class="col-form-label
|
|
col-sm-auto
|
|
s_website_form_label
|
|
">
|
|
Franchisee Email:
|
|
</label>
|
|
<br/>
|
|
<input type="email"
|
|
class="link-style"
|
|
required="1"
|
|
name="franchisee_email"
|
|
id="franchisee_email"
|
|
placeholder="Email"/>
|
|
<br/>
|
|
<label for="contract_type_id"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Franchise Agreement:
|
|
</label>
|
|
<select name="contract_type_id"
|
|
class="link-style"
|
|
required="1"
|
|
placeholder="Agreement Type">
|
|
<t t-foreach="franchise_agreement_rec"
|
|
t-as="agreement">
|
|
<option t-att-value="agreement.id">
|
|
<t t-esc="agreement.agreement_type"/>
|
|
</option>
|
|
</t>
|
|
</select>
|
|
<br/>
|
|
<label for="monthly_target_amount"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Monthly Target:
|
|
</label>
|
|
<br/>
|
|
<input type="number"
|
|
class="link-style"
|
|
required="1"
|
|
name="monthly_target_amount"
|
|
id="monthly_target_amount"
|
|
placeholder="Monthly Target Amount"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
City
|
|
Interested in:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="business_city"
|
|
required="1"
|
|
id="business_city"
|
|
placeholder="City Interested in"/>
|
|
<br/>
|
|
<label for="business_country"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Country
|
|
Interested in:
|
|
</label>
|
|
<br/>
|
|
<select name="business_country"
|
|
class="link-style">
|
|
<t t-foreach="country_rec"
|
|
t-as="countries">
|
|
<option t-att-value="countries.id">
|
|
<t t-esc="countries.name"/>
|
|
</option>
|
|
</t>
|
|
</select>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Experience in this
|
|
Business:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="experience"
|
|
id="experience"
|
|
placeholder="Experience in this Business"/>
|
|
<br/>
|
|
</div>
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Investment
|
|
Capacity:
|
|
</b>
|
|
</h6>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Investment from:
|
|
</label>
|
|
<br/>
|
|
<input type="number"
|
|
class="link-style"
|
|
name="investment_from"
|
|
id="investment_from"
|
|
placeholder="Investment from"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Investment To:
|
|
</label>
|
|
<br/>
|
|
<input type="number"
|
|
class="link-style"
|
|
name="investment_to"
|
|
id="investment_to"
|
|
placeholder="Investment To"/>
|
|
<br/>
|
|
</div>
|
|
<br/>
|
|
|
|
<div>
|
|
<br/>
|
|
<h6>
|
|
<b>Site Location:</b>
|
|
</h6>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Site
|
|
Location:
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="site_location"
|
|
required="1"
|
|
id="site_location"
|
|
placeholder="Site Location"/>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Site
|
|
Type:
|
|
</label>
|
|
<br/>
|
|
<select name="site_type"
|
|
class="link-style">
|
|
<option value="owned"
|
|
selected="selected">
|
|
Owned
|
|
</option>
|
|
<option value="rented">
|
|
Rented
|
|
</option>
|
|
<option value="leased">
|
|
Leased
|
|
</option>
|
|
<option value="others">
|
|
Others
|
|
</option>
|
|
</select>
|
|
<br/>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Total
|
|
Area(in sq/ft):
|
|
</label>
|
|
<br/>
|
|
<input type="text"
|
|
class="link-style"
|
|
name="site_area"
|
|
id="site_area"
|
|
placeholder="Total Area(in sq/ft)"/>
|
|
<br/>
|
|
<br/>
|
|
</div>
|
|
<br/>
|
|
<h6>
|
|
<b>Advertisement Details:
|
|
</b>
|
|
</h6>
|
|
<div>
|
|
<label for="name"
|
|
class="col-form-label col-sm-auto s_website_form_label">
|
|
Dealer
|
|
Vacancy Known Through:
|
|
</label>
|
|
<br/>
|
|
<select name="advertisement"
|
|
class="link-style">
|
|
<option value="advertisement"
|
|
selected="selected">
|
|
Advertisement
|
|
</option>
|
|
<option value="area_sales_manager">
|
|
Area Sales Manager
|
|
</option>
|
|
<option value="regional_manager">
|
|
Regional Manager
|
|
</option>
|
|
<option value="others">
|
|
Others
|
|
</option>
|
|
</select>
|
|
<br/>
|
|
<br/>
|
|
<button type="submit"
|
|
class="button"
|
|
id="next2">SUBMIT
|
|
</button>
|
|
<br/><br/><br/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<h1 align="center">BECOME A FRANCHISE</h1>
|
|
<div class="image"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
<!--Franchise request form success page-->
|
|
<template id="website_success_page"
|
|
name="Franchise Request Successfully Submitted">
|
|
<t t-call="website.layout">
|
|
<div id="wrap">
|
|
<div class="container">
|
|
<div class="col-md-12">
|
|
<div>
|
|
<h1>Success!!!</h1>
|
|
<p>Your Franchise Dealership form has been submitted
|
|
successfully..........
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|