EOS/Views/Notifications/Inventory/ManageFleet.cshtml
Nidhi Bhargava f0c1ab20e1 code push
2025-09-04 16:25:07 +05:30

150 lines
7.1 KiB
Plaintext

@model GODATA.Models.UserInventory.UserInventory
@{
ViewBag.Title = System.Configuration.ConfigurationManager.AppSettings["Title"] + " | Manage EOS Team";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="size25 left">
<div class="window">
<div class="titlebar">
<div class="title">
Manage EOS Team
</div>
</div>
<div class="innerWindow">
<div class="menubar">
<div class="searchBox" title="Quick Search">
<div class="inputBox">
<input type="text" id="txtSearch" />
</div>
<div class="sIcon">
<img alt="" src="@Url.Content("~/Content/images/search-icon.png")" />
</div>
</div>
</div>
<div class="content withstatusbar">
<div class="listDetails">
<div class="ldSection">
<table class="themeTable" cellpadding="5" cellspacing="0">
<tbody>
<tr>
<td class="tableCelllabel">
<span class="darktxt">Product Variant</span>
</td>
<td class="tableCellinfo darktxt fleet_combo">
<input id="fueltypeCombobox" placeholder="Product Variant" onfocus="setfueltype();" style="width: 200px;" />
</td>
</tr>
<tr>
<td class="tableCelllabel">
<span class="darktxt">State</span>
</td>
<td class="tableCellinfo darktxt fleet_combo">
<input id="stateCombobox" placeholder="State" onfocus="this.select();" style="width: 200px;" />
<span id="spanState" class="error" style="display: none; color: red">*</span>
</td>
</tr>
<tr>
<td class="tableCelllabel">
<span class="darktxt">City</span>
</td>
<td class="tableCellinfo darktxt fleet_combo">
<input id="cityCombobox" onfocus="this.select();" style="width: 200px;" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="divDealerList" class="dealerListing" @*class="content"*@>
</div>
</div>
<div class="statusbar">
<input id="get_van_coverage" type="button" value="Search" class="button_blue custom_postool_btn" onclick="GetDealerNameList(true, -1)" />
</div>
</div>
</div>
</div>
<div class="size75 right" id="rightPanel">
<div class="window">
<div class="titlebar">
<div class="title">
Eicher EOS Team Detail
</div>
</div>
<div class="innerWindow" style="overflow: hidden;">
<div class="toolbar">
<button class="button_blue" type="submit" id="btnAdd" onclick="addDealer();" title="Add Dealer" style="padding-top: 4px; padding-bottom: 5px; margin-top: 2px; height: 24px; margin-bottom: 0; width: auto; line-height: 11px;">
Add Dealer</button>
<button class="button_blue" type="submit" id="btnDelete" onclick="DeleteRecord(true);" title="Delete Dealer" style="padding-top: 4px; padding-bottom: 5px; margin-top: 2px; height: 24px; margin-bottom: 0; width: auto; line-height: 11px;">
Delete Dealer</button>
@*<a class='k-button k-button-icontext' onclick='VanDetail()' href='#'>Add Van Detail</a>*@
<div class="imei" style="float: right;font-weight: bold; margin-right: 15px;">
License No. <input id="inpReleaseIMEI" placeholder="Please Enter License Number " type="text" style="height: 24px;margin: 0px 8px; width: 238px;"/>
<span id="spanReleaseIMEI" class="error" style="display: none; color: red">*</span>
<button class="button_blue" type="submit" id="btnReleaseIMEI" onclick="ReleaseIMEI();" title="Release IMEI" style="padding-top: 4px; padding-bottom: 5px; margin-top: 2px; height: 24px; margin-bottom: 0; width: auto; line-height: 11px;">
Release License</button>
</div>
</div>
<div class="content withstatusbar" style="top: 29px; /*margin-bottom: 37px; margin-top: -7px; */">
<div id="divAddOrEditFleet" class="content">
</div>
</div>
<div class="statusbar">
<div class="leftsidebar" style="float: left; width: 48%">
<input type="submit" value="Save" id="btnSaveFleet" class="button_blue" style="margin-top: -2px; width: auto; height: 27px; line-height: 9px;" onclick="SaveRecord(false);" />
<input type="button" value="Cancel" class="button_blue" style="background: #ee2e22 !important; margin-top: -2px; width: auto; overflow: hidden; height: 27px; line-height: 9px;" onclick="btnCancelAddUser();" />
</div>
<div class="rightlegent">
<label style="text-decoration: underline; font-weight: bold;"># Update leads to save the License Number</label>
</div>
</div>
</div>
</div>
</div>
@{
var mapApiKey = System.Configuration.ConfigurationManager.AppSettings["GoogleId"];
//(mapApiKey);
var src1 = "http://maps.google.com/maps/api/js?v=3&sensor=false&libraries=geometry,places&key="+mapApiKey;
}
<script src="@src1"></script>
@*<script type='text/javascript' src='http://maps.google.com/maps/api/js?v=3&sensor=false&client=gme-teramatrix'></script>*@
@*<script src="@Url.Content("~/Scripts/Inventory/ManageFleet.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/Inventory/ManageFleet_Detail.js")" type="text/javascript"></script>*@
<script type="text/javascript" src="@Url.Content("~/Scripts/Shared/jquery.mask.js")"></script>
@Scripts.Render("~/bundles/jsManageFleet")
<script type="text/javascript">
var securityToken = '@ViewBag.SecurityToken';
var UtcMinutes = '@ViewBag.UtcMinutes';
var userId = '@ViewBag.Userid';
function onChangegetstate() {
alert('aa');
}
</script>
<style type="text/css">
.k-state-default > .k-select, .k-dropdown-wrap {
background: #f5f5f5 !important;
}
.Report_Btn {
height: 27px !important;
margin-top: 0 !important;
width: 70px !important;
}
div#divDealerList table tr td label {width:90%;}
</style>