Merge branch 'CI4-Application' of bitbucket.org:venbainformationtechnology/ria into CI4-Application
@ -264,6 +264,11 @@ $routes->post('inwardgateregister/edituploadfile', 'Inwardgateregister::edituplo
|
||||
$routes->match(['GET', 'POST', 'PUT', 'DELETE'],'AddOgr', 'Inwardgateregister::addoutwardgateregister');
|
||||
$routes->match(['GET', 'POST', 'PUT', 'DELETE'],'ViewOgr', 'Inwardgateregister::ViewOgr');
|
||||
$routes->match(['GET', 'POST', 'PUT', 'DELETE'],'EditOGR', 'Inwardgateregister::EditOGR');
|
||||
$routes->get('drivernameautocomplete' , 'Inwardgateregister::drivernameautocomplete');
|
||||
$routes->get('drivermobileautocomplete', 'Inwardgateregister::drivermobileautocomplete');
|
||||
|
||||
|
||||
|
||||
|
||||
// Application MRIR Routes
|
||||
$routes->match(['GET', 'POST', 'PUT', 'DELETE'],'EditMRIR', 'MRIRcontroller::editmaterialinspectionreport');
|
||||
|
||||
@ -320,6 +320,7 @@ class Inwardgateregister extends BaseController
|
||||
$Mat_Rcvd_Dt = (string)$this->request->getPost('MaterialRcvdDate');
|
||||
$MaterialRcvdDt = get_date_time_format($Mat_Rcvd_Dt);
|
||||
$VehicleNo = $this->request->getPost('VehicleNo');
|
||||
$VehicleType = $this->request->getPost('VehicleType');
|
||||
$DriverName = $this->request->getPost('DriverName');
|
||||
$DriverMobileNumber = $this->request->getPost('DriverMobileNumber');
|
||||
$CreatedBy = $this->session->get('userId');
|
||||
@ -354,11 +355,9 @@ class Inwardgateregister extends BaseController
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#Step 3 Master Details Gathering to Save In DB
|
||||
$igr = array('PONO' => $PONO, 'VehicleNo' => $VehicleNo, 'DeliveryChellanOrInvoiceNo' => $DeliveryChellanOrInvoiceNo, 'DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt, 'DriverName' => $DriverName, 'DriverMobileNumber' => $DriverMobileNumber,'IGRStatus' => $IGRStatus, 'CreatedBy' => $CreatedBy, 'CreatedDate' => $createddt, 'PaymentStatus' => $paymentstatus);
|
||||
$igr = array('PONO' => $PONO, 'VehicleNo' => $VehicleNo, 'VehicleType'=>$VehicleType,'DeliveryChellanOrInvoiceNo' => $DeliveryChellanOrInvoiceNo, 'DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt, 'DriverName' => $DriverName, 'DriverMobileNumber' => $DriverMobileNumber,'IGRStatus' => $IGRStatus, 'CreatedBy' => $CreatedBy, 'CreatedDate' => $createddt, 'PaymentStatus' => $paymentstatus);
|
||||
$igr['MasterFile'] = $requestMasterFileName;
|
||||
// print_r( $igr );die;
|
||||
#Step 4 Calling DB to Save IGR Master
|
||||
$IGRNO = $this->inwardgateregister_model->addigrM($igr);
|
||||
// echo "master - no problem";
|
||||
@ -585,8 +584,38 @@ class Inwardgateregister extends BaseController
|
||||
</script>";
|
||||
|
||||
}
|
||||
function drivernameautocomplete(){
|
||||
$dr = $this->request->getGet('query');
|
||||
$query = $this->inwardgateregister_model->checkdrivername($dr);
|
||||
echo json_encode($query);
|
||||
}
|
||||
public function drivermobileautocomplete() {
|
||||
$dr = $this->request->getGet('query');
|
||||
$drName = $this->request->getGet('driverName');
|
||||
$query = $this->inwardgateregister_model->checkdriverMobile($dr, $drName);
|
||||
echo json_encode($query);
|
||||
}
|
||||
|
||||
|
||||
public function drivermobileautocomplete2() {
|
||||
$driverName = $this->request->getGet('drivername');
|
||||
$term = $this->request->getGet('term');
|
||||
|
||||
// Debugging
|
||||
if (!$driverName || !$term) {
|
||||
return $this->response->setJSON(['error' => 'Missing parameters']);
|
||||
}
|
||||
|
||||
$query = $this->inwardgateregister_model->checkdriverMobile($driverName, $term);
|
||||
|
||||
// Check the output
|
||||
if (is_array($query)) {
|
||||
return $this->response->setJSON($query);
|
||||
} else {
|
||||
return $this->response->setJSON(['error' => 'Invalid response from model']);
|
||||
}
|
||||
}
|
||||
|
||||
function viewIGRDetails()
|
||||
{
|
||||
|
||||
@ -637,6 +666,7 @@ function viewIGRDetails()
|
||||
|
||||
|
||||
$VehicleNo = $this->request->getPost('vehicle_no');
|
||||
$VehicleType = $this->request->getPost('vehicle_type');
|
||||
$DriverName = $this->request->getPost('driver');
|
||||
$DriverMobileNumber = $this->request->getPost('driver_mobile');
|
||||
|
||||
@ -651,7 +681,7 @@ function viewIGRDetails()
|
||||
$path = ROOTPATH.'public/uploads/Igrfiles/';
|
||||
if(!is_dir($path)) { mkdir($path, 0777, true); }
|
||||
|
||||
$igrarr = array('DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt,'VehicleNo'=>$VehicleNo,'DriverMobileNumber'=>$DriverMobileNumber,'DriverName'=>$DriverName, 'IGRStatus' => $IGRStatus,'UpdateBY' => $updateby);
|
||||
$igrarr = array('DeliveryChellanDate' => $DeliveryChellanDate, 'MaterialRcvdDate' => $MaterialRcvdDt,'VehicleNo'=>$VehicleNo,'VehicleType'=>$VehicleType,'DriverMobileNumber'=>$DriverMobileNumber,'DriverName'=>$DriverName, 'IGRStatus' => $IGRStatus,'UpdateBY' => $updateby);
|
||||
|
||||
$MasterFile = $this->request->getfile('MasterFile');
|
||||
|
||||
|
||||
@ -168,7 +168,44 @@ class Inwardgateregister_model extends Model
|
||||
|
||||
return $result;
|
||||
}
|
||||
function checkdrivername($dr)
|
||||
{
|
||||
$temp[] = '';
|
||||
$builder = $this->db->table('t_igr_master')
|
||||
->distinct()
|
||||
->select('DriverName')
|
||||
->like('DriverName', $dr);
|
||||
$query = $builder->get();
|
||||
|
||||
$temparr[] = '';
|
||||
foreach ($query->getResult() as $arr) {
|
||||
$temparr[] = $arr->DriverName;
|
||||
}
|
||||
$temp['suggestions'] = $temparr;
|
||||
|
||||
return $temp;
|
||||
}
|
||||
|
||||
public function checkdriverMobile($mobile,$driverName) {
|
||||
$builder = $this->db->table('t_igr_master')
|
||||
->distinct()
|
||||
->select('DriverMobileNumber')
|
||||
->like('DriverMobileNumber', $mobile);
|
||||
if($driverName){
|
||||
$builder->where('DriverName', $driverName);
|
||||
}
|
||||
|
||||
|
||||
$query = $builder->get();
|
||||
$temparr[] = '';
|
||||
foreach ($query->getResult() as $arr) {
|
||||
$temparr[] = $arr->DriverMobileNumber;
|
||||
}
|
||||
// echo $this->db->getLastQuery()->getQuery();die;
|
||||
$temp['suggestions'] = $temparr;
|
||||
|
||||
return $temp;
|
||||
}
|
||||
|
||||
function viewpurchaseorder($PO)
|
||||
{
|
||||
|
||||
@ -1058,12 +1058,7 @@ legend {
|
||||
placeholder="Referrer Contact Number" class="form-control"
|
||||
onkeypress="return isNumberKey(event)">
|
||||
</div>
|
||||
</div>
|
||||
<!-- </div>
|
||||
|
||||
<div class="col-md-12 pad"> -->
|
||||
|
||||
<div class="col-md-3"><span>Work Location</span><span
|
||||
<div class="col-md-3"><span>Work Location</span><span
|
||||
class="badge">*</span>
|
||||
<select type="text" id="work_location" name="work_location"
|
||||
required class="form-control select2">
|
||||
@ -1084,7 +1079,7 @@ legend {
|
||||
|
||||
</select>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<div class="form-group">
|
||||
@ -1100,6 +1095,12 @@ legend {
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-12 pad">
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<legend>Bank Details</legend>
|
||||
|
||||
@ -4,11 +4,26 @@
|
||||
<!-- ============================================================== -->
|
||||
<!-- End Page content -->
|
||||
<!-- ============================================================== -->
|
||||
|
||||
|
||||
<!-- Footer Start -->
|
||||
<footer class="footer">
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-5">
|
||||
<b><a href="<?php echo base_url(); ?>">RESICO </a></b> Version 2.0 | <?php echo generateCopyrightNotice(); ?>.
|
||||
</div>
|
||||
<div class="col-md-7">
|
||||
<div class="text-md-right footer-links d-none d-sm-block">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<!-- end Footer -->
|
||||
</div>
|
||||
<!-- END wrapper -->
|
||||
|
||||
|
||||
|
||||
<!-- Right bar overlay-->
|
||||
<div class="rightbar-overlay"></div>
|
||||
|
||||
@ -2,13 +2,13 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>RI</title>
|
||||
<title><?php echo $pageTitle; ?></title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta content="A fully featured admin theme which can be used to build CRM, CMS, etc." name="description" />
|
||||
<meta content="Coderthemes" name="author" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="<?php echo base_url(); ?>public/new_assets/images/favicon.ico">
|
||||
<link rel="shortcut icon" href="<?php echo base_url(); ?>public/new_assets/images/RI_favicon.png">
|
||||
|
||||
<!-- third party css -->
|
||||
<link href="<?php echo base_url(); ?>public/new_assets/libs/datatables.net-bs4/css/dataTables.bootstrap4.min.css" rel="stylesheet" type="text/css" />
|
||||
@ -43,294 +43,29 @@
|
||||
|
||||
<ul class="list-unstyled topnav-menu float-right mb-0">
|
||||
|
||||
<li class="d-none d-lg-block">
|
||||
<form class="app-search">
|
||||
<div class="app-search-box dropdown">
|
||||
<div class="input-group">
|
||||
<input type="search" class="form-control" placeholder="Search..." id="top-search">
|
||||
<div class="input-group-append">
|
||||
<button class="btn" type="submit">
|
||||
<i class="fe-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown-menu dropdown-lg" id="search-dropdown">
|
||||
<!-- item-->
|
||||
<div class="dropdown-header noti-title">
|
||||
<h5 class="text-overflow mb-2">Found <span class="text-danger">09</span> results</h5>
|
||||
</div>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="fe-home mr-1"></i>
|
||||
<span>Analytics Report</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="fe-aperture mr-1"></i>
|
||||
<span>How can I help you?</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="fe-settings mr-1"></i>
|
||||
<span>User profile settings</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<div class="dropdown-header noti-title">
|
||||
<h6 class="text-overflow mb-2 text-uppercase">Users</h6>
|
||||
</div>
|
||||
|
||||
<div class="notification-list">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="media">
|
||||
<img class="d-flex mr-2 rounded-circle" src="<?php echo base_url(); ?>public/new_assets/images/users/avatar-2.jpg" alt="Generic placeholder image" height="32">
|
||||
<div class="media-body">
|
||||
<h5 class="m-0 font-14">Erwin E. Brown</h5>
|
||||
<span class="font-12 mb-0">UI Designer</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="media">
|
||||
<img class="d-flex mr-2 rounded-circle" src="<?php echo base_url(); ?>public/new_assets/images/users/avatar-5.jpg" alt="Generic placeholder image" height="32">
|
||||
<div class="media-body">
|
||||
<h5 class="m-0 font-14">Jacob Deo</h5>
|
||||
<span class="font-12 mb-0">Developer</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</li>
|
||||
|
||||
<li class="dropdown d-inline-block d-lg-none">
|
||||
<a class="nav-link dropdown-toggle arrow-none waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<i class="fe-search noti-icon"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-lg dropdown-menu-right p-0">
|
||||
<form class="p-3">
|
||||
<input type="text" class="form-control" placeholder="Search ..." aria-label="Recipient's username">
|
||||
</form>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown d-none d-lg-inline-block">
|
||||
<a class="nav-link dropdown-toggle arrow-none waves-effect waves-light" data-toggle="fullscreen" href="#">
|
||||
<i class="fe-maximize noti-icon"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li class="dropdown d-none d-lg-inline-block topbar-dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<i class="fe-grid noti-icon"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-lg dropdown-menu-right p-0">
|
||||
|
||||
<div class="p-2">
|
||||
<div class="row no-gutters">
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/github.png" alt="Github">
|
||||
<span>GitHub</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/dribbble.png" alt="dribbble">
|
||||
<span>Dribbble</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/slack.png" alt="slack">
|
||||
<span>Slack</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row no-gutters">
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/g-suite.png" alt="G Suite">
|
||||
<span>G Suite</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/bitbucket.png" alt="bitbucket">
|
||||
<span>Bitbucket</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="col">
|
||||
<a class="dropdown-icon-item" href="#">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/brands/dropbox.png" alt="dropbox">
|
||||
<span>Dropbox</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown d-none d-lg-inline-block topbar-dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/flags/us.jpg" alt="user-image" height="14">
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/flags/germany.jpg" alt="user-image" class="mr-1" height="12"> <span class="align-middle">German</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/flags/italy.jpg" alt="user-image" class="mr-1" height="12"> <span class="align-middle">Italian</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/flags/spain.jpg" alt="user-image" class="mr-1" height="12"> <span class="align-middle">Spanish</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/flags/russia.jpg" alt="user-image" class="mr-1" height="12"> <span class="align-middle">Russian</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list topbar-dropdown">
|
||||
<a class="nav-link dropdown-toggle waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<i class="fe-bell noti-icon"></i>
|
||||
<span class="badge badge-danger rounded-circle noti-icon-badge">5</span>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right dropdown-lg">
|
||||
|
||||
<!-- item-->
|
||||
<div class="dropdown-item noti-title">
|
||||
<h5 class="m-0">
|
||||
<span class="float-right">
|
||||
<a href="" class="text-dark">
|
||||
<small>Clear All</small>
|
||||
</a>
|
||||
</span>Notification
|
||||
</h5>
|
||||
</div>
|
||||
|
||||
<div class="noti-scroll" data-simplebar>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item active">
|
||||
<div class="notify-icon bg-soft-primary text-primary">
|
||||
<i class="mdi mdi-comment-account-outline"></i>
|
||||
</div>
|
||||
<p class="notify-details">Doug Dukes commented on Admin Dashboard
|
||||
<small class="text-muted">1 min ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/users/avatar-2.jpg" class="img-fluid rounded-circle" alt="" /> </div>
|
||||
<p class="notify-details">Mario Drummond</p>
|
||||
<p class="text-muted mb-0 user-msg">
|
||||
<small>Hi, How are you? What about our next meeting</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/users/avatar-4.jpg" class="img-fluid rounded-circle" alt="" /> </div>
|
||||
<p class="notify-details">Karen Robinson</p>
|
||||
<p class="text-muted mb-0 user-msg">
|
||||
<small>Wow ! this admin looks good and awesome design</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-soft-warning text-warning">
|
||||
<i class="mdi mdi-account-plus"></i>
|
||||
</div>
|
||||
<p class="notify-details">New user registered.
|
||||
<small class="text-muted">5 hours ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-info">
|
||||
<i class="mdi mdi-comment-account-outline"></i>
|
||||
</div>
|
||||
<p class="notify-details">Caleb Flakelar commented on Admin
|
||||
<small class="text-muted">4 days ago</small>
|
||||
</p>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<div class="notify-icon bg-secondary">
|
||||
<i class="mdi mdi-heart"></i>
|
||||
</div>
|
||||
<p class="notify-details">Carlos Crouch liked
|
||||
<b>Admin</b>
|
||||
<small class="text-muted">13 days ago</small>
|
||||
</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- All-->
|
||||
<a href="javascript:void(0);" class="dropdown-item text-center text-primary notify-item notify-all">
|
||||
View all
|
||||
<i class="fe-arrow-right"></i>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list topbar-dropdown">
|
||||
<a class="nav-link dropdown-toggle nav-user mr-0 waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/users/avatar-1.jpg" alt="user-image" class="rounded-circle">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/avatar.png" alt="user-image" class="rounded-circle">
|
||||
<span class="pro-user-name ml-1">
|
||||
Nik Patel <i class="mdi mdi-chevron-down"></i>
|
||||
<?php echo $name; ?> <i class="mdi mdi-chevron-down"></i>
|
||||
</span>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-right profile-dropdown ">
|
||||
<!-- item-->
|
||||
<div class="dropdown-header noti-title">
|
||||
<h6 class="text-overflow m-0">Welcome !</h6>
|
||||
<h6 class="text-overflow m-0"><?php echo "Welcome ".$role_text." !"; ?><?php //echo $role; ?></h6>
|
||||
</div>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<a href="<?php echo base_url(); ?>loadChangePass" class="dropdown-item notify-item">
|
||||
<i class="ri-account-circle-line"></i>
|
||||
<span>My Account</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="ri-settings-3-line"></i>
|
||||
<span>Settings</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<i class="ri-wallet-line"></i>
|
||||
<span>My Wallet <span class="badge badge-success float-right">3</span> </span>
|
||||
<span>Change Password</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
@ -342,7 +77,7 @@
|
||||
<div class="dropdown-divider"></div>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item notify-item">
|
||||
<a href="<?php echo base_url(); ?>logout" class="dropdown-item notify-item">
|
||||
<i class="ri-logout-box-line"></i>
|
||||
<span>Logout</span>
|
||||
</a>
|
||||
@ -350,11 +85,6 @@
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown notification-list">
|
||||
<a href="javascript:void(0);" class="nav-link right-bar-toggle waves-effect waves-light">
|
||||
<i class="fe-settings noti-icon"></i>
|
||||
</a>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
@ -376,7 +106,7 @@
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/logo-sm.png" alt="" height="24">
|
||||
</span>
|
||||
<span class="logo-lg">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/logo-light.png" alt="" height="20">
|
||||
<img src="<?php echo base_url(); ?>public/new_assets/images/RESICO (2).png" alt="" height="20">
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
@ -399,151 +129,6 @@
|
||||
</a>
|
||||
<!-- End mobile menu toggle-->
|
||||
</li>
|
||||
|
||||
<li class="dropdown d-none d-xl-block">
|
||||
<a class="nav-link dropdown-toggle waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
Create New
|
||||
<i class="mdi mdi-chevron-down"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu">
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<i class="fe-briefcase mr-1"></i>
|
||||
<span>New Projects</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<i class="fe-user mr-1"></i>
|
||||
<span>Create Users</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<i class="fe-bar-chart-line- mr-1"></i>
|
||||
<span>Revenue Report</span>
|
||||
</a>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<i class="fe-settings mr-1"></i>
|
||||
<span>Settings</span>
|
||||
</a>
|
||||
|
||||
<div class="dropdown-divider"></div>
|
||||
|
||||
<!-- item-->
|
||||
<a href="javascript:void(0);" class="dropdown-item">
|
||||
<i class="fe-headphones mr-1"></i>
|
||||
<span>Help & Support</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="dropdown dropdown-mega d-none d-xl-block">
|
||||
<a class="nav-link dropdown-toggle waves-effect waves-light" data-toggle="dropdown" href="#" role="button" aria-haspopup="false" aria-expanded="false">
|
||||
Mega Menu
|
||||
<i class="mdi mdi-chevron-down"></i>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-megamenu">
|
||||
<div class="row">
|
||||
<div class="col-sm-8">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h5 class="text-dark mt-0">UI Components</h5>
|
||||
<ul class="list-unstyled megamenu-list">
|
||||
<li>
|
||||
<a href="javascript:void(0);">Widgets</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Nestable List</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Range Sliders</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Masonry Items</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Sweet Alerts</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Treeview Page</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Tour Page</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<h5 class="text-dark mt-0">Applications</h5>
|
||||
<ul class="list-unstyled megamenu-list">
|
||||
<li>
|
||||
<a href="javascript:void(0);">eCommerce Pages</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">CRM Pages</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Email</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Calendar</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Team Contacts</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Task Board</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Email Templates</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<h5 class="text-dark mt-0">Extra Pages</h5>
|
||||
<ul class="list-unstyled megamenu-list">
|
||||
<li>
|
||||
<a href="javascript:void(0);">Left Sidebar with User</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Menu Collapsed</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Small Left Sidebar</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">New Header Style</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Search Result</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Gallery Pages</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="javascript:void(0);">Maintenance & Coming Soon</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="text-center mt-3">
|
||||
<h3 class="text-dark">Special Discount Sale!</h3>
|
||||
<h4>Save up to 70% off.</h4>
|
||||
<button class="btn btn-primary btn-rounded mt-3">Download Now</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
@ -562,116 +147,128 @@
|
||||
<i class="ri-dashboard-line mr-1"></i> Dashboards <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-dashboard">
|
||||
<a href="index.html" class="dropdown-item">Sales</a>
|
||||
<a href="dashboard-crm.html" class="dropdown-item">CRM</a>
|
||||
<a href="dashboard-analytics.html" class="dropdown-item">Analytics</a>
|
||||
<a href="<?php echo base_url(); ?>dashboard" class="dropdown-item">Home</a>
|
||||
<a href="https://vu.venbait.in/d/d9eb820b-60aa-4fe6-9de0-531924185b77/sales-at-a-glance?orgId=2&from=1715215911333&to=1715237511333" class="dropdown-item">Sales</a>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-apps" role="button"
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-purchase" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-apps-2-line mr-1"></i> Apps <div class="arrow-down"></div>
|
||||
<i class="ri-shopping-cart-2-line mr-1"></i> PURCHASE <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-apps">
|
||||
|
||||
<a href="apps-calendar.html" class="dropdown-item"><i class="ri-calendar-2-line align-middle mr-1"></i> Calendar</a>
|
||||
<a href="apps-chat.html" class="dropdown-item"><i class="ri-message-2-line align-middle mr-1"></i> Chat</a>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-ecommerce"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-shopping-cart-2-line align-middle mr-1"></i> Ecommerce <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-ecommerce">
|
||||
<a href="ecommerce-products.html" class="dropdown-item">Products List</a>
|
||||
<a href="ecommerce-products-grid.html" class="dropdown-item">Products Grid</a>
|
||||
<a href="ecommerce-product-detail.html" class="dropdown-item">Product Detail</a>
|
||||
<a href="ecommerce-product-create.html" class="dropdown-item">Create Product</a>
|
||||
<a href="ecommerce-customers.html" class="dropdown-item">Customers</a>
|
||||
<a href="ecommerce-orders.html" class="dropdown-item">Orders</a>
|
||||
<a href="ecommerce-orders-detail.html" class="dropdown-item">Order Detail</a>
|
||||
<a href="ecommerce-sellers.html" class="dropdown-item">Sellers</a>
|
||||
<a href="ecommerce-cart.html" class="dropdown-item">Shopping Cart</a>
|
||||
<a href="ecommerce-checkout.html" class="dropdown-item">Checkout</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-email"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-mail-line align-middle mr-1"></i> Email <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-email">
|
||||
<a href="email-inbox.html" class="dropdown-item">Inbox</a>
|
||||
<a href="email-read.html" class="dropdown-item">Read Email</a>
|
||||
<a href="email-templates.html" class="dropdown-item">Email Templates</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<a href="apps-companies.html" class="dropdown-item"><i class="ri-building-4-line align-middle mr-1"></i> Companies</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-purchase">
|
||||
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-task"
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-requisition"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-task-line align-middle mr-1"></i> Tasks <div class="arrow-down"></div>
|
||||
<i class="ri-pushpin-2-line align-middle mr-1"></i> Requisition <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-task">
|
||||
<a href="task-list.html" class="dropdown-item">List</a>
|
||||
<a href="task-details.html" class="dropdown-item">Details</a>
|
||||
<a href="task-kanban-board.html" class="dropdown-item">Kanban Board</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-requisition">
|
||||
<a href="<?php echo base_url(); ?>Requisition" class="dropdown-item">Raise Requisition </a>
|
||||
<a href="<?php echo base_url(); ?>CreatePO" class="dropdown-item">Purchase Order From Requisition</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-contact"
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-po"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-profile-line align-middle mr-1"></i> Contacts <div class="arrow-down"></div>
|
||||
<i class="ri-align-justify align-middle mr-1"></i> Purchase order <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-contact">
|
||||
<a href="contacts-list.html" class="dropdown-item">Members List</a>
|
||||
<a href="contacts-profile.html" class="dropdown-item">Profile</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-po">
|
||||
<a href="<?php echo base_url(); ?>purchaseorderListing" class="dropdown-item">Purchase Order List</a>
|
||||
<a href="<?php echo base_url(); ?>PORelease" class="dropdown-item">Approve Purchase Order</a>
|
||||
<a href="<?php echo base_url(); ?>EmergencyPO" class="dropdown-item">Emergency Purchase Order </a>
|
||||
<a href="<?php echo base_url(); ?>Report_pending_purchase" class="dropdown-item">Pending Purchase Order </a>
|
||||
<a href="<?php echo base_url(); ?>amendmentpurchaseorder" class="dropdown-item">Amendment Purchase Order</a>
|
||||
</div>
|
||||
</div>
|
||||
<a href="apps-file-manager.html" class="dropdown-item"><i class="ri-folders-line align-middle mr-1"></i> File Manager</a>
|
||||
<a href="apps-tickets.html" class="dropdown-item"><i class="ri-customer-service-2-line align-middle mr-1"></i> Tickets</a>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-inward"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-task-line align-middle mr-1"></i> Inward <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-inward">
|
||||
<a href="<?php echo base_url(); ?>AddIGR" class="dropdown-item">Inward Gate Register Entry</a>
|
||||
<a href="<?php echo base_url(); ?>ViewIGR" class="dropdown-item">View Inward Gate Register</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-hr" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-contacts-book-line mr-1"></i> HR <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-hr">
|
||||
<a href="<?php echo base_url(); ?>employeeListing" class="dropdown-item"><i class="ri-shield-user-line align-middle mr-1"></i> Employee Details</a>
|
||||
<a href="<?php echo base_url(); ?>attendance" class="dropdown-item"><i class=" ri-time-line align-middle mr-1"></i> Attendance</a>
|
||||
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-payslip"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-secure-payment-line align-middle mr-1"></i> PaySlip <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-payslip">
|
||||
<a href="<?php echo base_url(); ?>monthlypay" class="dropdown-item">Monthly Pay Information </a>
|
||||
<a href="<?php echo base_url(); ?>ViewPay" class="dropdown-item">PaySlip Generator</a>
|
||||
<a href="<?php echo base_url(); ?>PaysilpListing" class="dropdown-item">Edit Payslip</a>
|
||||
<a href="<?php echo base_url(); ?>emppayListings" class="dropdown-item">Employee Salary Details</a>
|
||||
<a href="<?php echo base_url(); ?>publicholidays" class="dropdown-item">Public Holidays</a>
|
||||
<a href="<?php echo base_url(); ?>leavereports" class="dropdown-item">Leave Reports</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-ui" role="button"
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-others" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-pencil-ruler-2-line mr-1"></i> UI Elements <div class="arrow-down"></div>
|
||||
<i class="ri-database-2-line align-middle mr-1"></i> OTHERS <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-others">
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-master"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-list-settings-line align-middle mr-1"></i> Master Details <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-master">
|
||||
<a href="<?php echo base_url(); ?>supplierlisting" class="dropdown-item">Supplier Details</a>
|
||||
<a href="<?php echo base_url(); ?>costListing" class="dropdown-item">Cost Details</a>
|
||||
<a href="<?php echo base_url(); ?>assetListing" class="dropdown-item">Asset Details</a>
|
||||
<a href="<?php echo base_url(); ?>companyview" class="dropdown-item">Company Master</a>
|
||||
<a href="<?php echo base_url(); ?>configlisting" class="dropdown-item">Config Details</a>
|
||||
<a href="<?php echo base_url(); ?>departmentListing" class="dropdown-item">Department Details</a>
|
||||
<a href="<?php echo base_url(); ?>rawmaterialListing" class="dropdown-item">Material Details</a>
|
||||
<a href="<?php echo base_url(); ?>userListing" class="dropdown-item">Users</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-reportlist" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-keyboard-line mr-1"></i> ReportList <div class="arrow-down"></div>
|
||||
</a>
|
||||
|
||||
<div class="dropdown-menu mega-dropdown-menu dropdown-mega-menu-xl" aria-labelledby="topnav-ui">
|
||||
<div class="dropdown-menu mega-dropdown-menu dropdown-mega-menu-xl" aria-labelledby="topnav-reportlist">
|
||||
<div class="row">
|
||||
<div class="col-lg-4">
|
||||
<div>
|
||||
<a href="ui-avatars.html" class="dropdown-item">Avatars</a>
|
||||
<a href="ui-buttons.html" class="dropdown-item">Buttons</a>
|
||||
<a href="ui-cards.html" class="dropdown-item">Cards</a>
|
||||
<a href="ui-carousel.html" class="dropdown-item">Carousel</a>
|
||||
<a href="ui-dropdowns.html" class="dropdown-item">Dropdowns</a>
|
||||
<a href="ui-video.html" class="dropdown-item">Embed Video</a>
|
||||
<a href="ui-general.html" class="dropdown-item">General UI</a>
|
||||
<a href="<?php echo base_url(); ?>Report_pending_purchase" class="dropdown-item">Pending Purchase Order</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div>
|
||||
<a href="ui-grid.html" class="dropdown-item">Grid</a>
|
||||
<a href="ui-images.html" class="dropdown-item">Images</a>
|
||||
<a href="ui-list-group.html" class="dropdown-item">List Group</a>
|
||||
<a href="ui-modals.html" class="dropdown-item">Modals</a>
|
||||
<a href="ui-notifications.html" class="dropdown-item">Notifications</a>
|
||||
<a href="ui-portlets.html" class="dropdown-item">Portlets</a>
|
||||
<a href="<?php echo base_url(); ?>leavereports" class="dropdown-item">Leave Reports</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-4">
|
||||
<div>
|
||||
<a href="ui-progress.html" class="dropdown-item">Progress</a>
|
||||
<a href="ui-ribbons.html" class="dropdown-item">Ribbons</a>
|
||||
<a href="ui-spinners.html" class="dropdown-item">Spinners</a>
|
||||
<a href="ui-tabs-accordions.html" class="dropdown-item">Tabs & Accordions</a>
|
||||
<a href="ui-tooltips-popovers.html" class="dropdown-item">Tooltips & Popovers</a>
|
||||
<a href="ui-typography.html" class="dropdown-item">Typography</a>
|
||||
<a href="#" class="dropdown-item"></a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -679,186 +276,6 @@
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-components" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-stack-line mr-1"></i> Components <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-components">
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-extendedui"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-stack-line align-middle mr-1"></i> Extended UI <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-extendedui">
|
||||
<a href="extended-nestable.html" class="dropdown-item">Nestable List</a>
|
||||
<a href="extended-range-slider.html" class="dropdown-item">Range Slider</a>
|
||||
<a href="extended-sweet-alert.html" class="dropdown-item">Sweet Alert</a>
|
||||
<a href="extended-tour.html" class="dropdown-item">Tour Page</a>
|
||||
<a href="extended-treeview.html" class="dropdown-item">Tree View</a>
|
||||
<a href="extended-scrollspy.html" class="dropdown-item">Scrollspy</a>
|
||||
</div>
|
||||
</div>
|
||||
<a href="widgets.html" class="dropdown-item"><i class="ri-honour-line align-middle mr-1"></i> Widgets</a>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-form"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-eraser-line align-middle mr-1"></i> Forms <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-form">
|
||||
<a href="forms-elements.html" class="dropdown-item">General Elements</a>
|
||||
<a href="forms-advanced.html" class="dropdown-item">Advanced</a>
|
||||
<a href="forms-validation.html" class="dropdown-item">Validation</a>
|
||||
<a href="forms-pickers.html" class="dropdown-item">Pickers</a>
|
||||
<a href="forms-wizard.html" class="dropdown-item">Wizard</a>
|
||||
<a href="forms-masks.html" class="dropdown-item">Masks</a>
|
||||
<a href="forms-summernote.html" class="dropdown-item">Summernote</a>
|
||||
<a href="forms-quilljs.html" class="dropdown-item">Quilljs Editor</a>
|
||||
<a href="forms-file-uploads.html" class="dropdown-item">File Uploads</a>
|
||||
<a href="forms-x-editable.html" class="dropdown-item">X Editable</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-charts"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-bar-chart-line align-middle mr-1"></i> Charts <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-charts">
|
||||
<a href="charts-flot.html" class="dropdown-item">Flot Charts</a>
|
||||
<a href="charts-apex.html" class="dropdown-item">Apex Charts</a>
|
||||
<a href="charts-morris.html" class="dropdown-item">Morris Charts</a>
|
||||
<a href="charts-chartjs.html" class="dropdown-item">Chartjs Charts</a>
|
||||
<a href="charts-peity.html" class="dropdown-item">Peity Charts</a>
|
||||
<a href="charts-chartist.html" class="dropdown-item">Chartist Charts</a>
|
||||
<a href="charts-c3.html" class="dropdown-item">C3 Charts</a>
|
||||
<a href="charts-sparklines.html" class="dropdown-item">Sparklines Charts</a>
|
||||
<a href="charts-knob.html" class="dropdown-item">Jquery Knob Charts</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-table"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-table-line align-middle mr-1"></i> Tables <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-table">
|
||||
<a href="tables-basic.html" class="dropdown-item">Basic Tables</a>
|
||||
<a href="tables-datatables.html" class="dropdown-item">Data Tables</a>
|
||||
<a href="tables-editable.html" class="dropdown-item">Editable Tables</a>
|
||||
<a href="tables-responsive.html" class="dropdown-item">Responsive Tables</a>
|
||||
<a href="tables-footables.html" class="dropdown-item">FooTable</a>
|
||||
<a href="tables-tablesaw.html" class="dropdown-item">Tablesaw Tables</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-icons"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-markup-line align-middle mr-1"></i> Icons <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-icons">
|
||||
<a href="icons-feather.html" class="dropdown-item">Feather</a>
|
||||
<a href="icons-remix.html" class="dropdown-item">Remix</a>
|
||||
<a href="icons-boxicons.html" class="dropdown-item">Boxicons</a>
|
||||
<a href="icons-mdi.html" class="dropdown-item">Material Design</a>
|
||||
<a href="icons-font-awesome.html" class="dropdown-item">Font Awesome 5</a>
|
||||
<a href="icons-weather.html" class="dropdown-item">Weather</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-map"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-map-pin-line align-middle mr-1"></i> Maps <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-map">
|
||||
<a href="maps-google.html" class="dropdown-item">Google Maps</a>
|
||||
<a href="maps-vector.html" class="dropdown-item">Vector Maps</a>
|
||||
<a href="maps-mapael.html" class="dropdown-item">Mapael Maps</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-pages" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-pages-line mr-1"></i> Pages <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-pages">
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-auth"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Auth Style 1 <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-auth">
|
||||
<a href="auth-login.html" class="dropdown-item">Log In</a>
|
||||
<a href="auth-register.html" class="dropdown-item">Register</a>
|
||||
<a href="auth-signin-signup.html" class="dropdown-item">Signin - Signup</a>
|
||||
<a href="auth-recoverpw.html" class="dropdown-item">Recover Password</a>
|
||||
<a href="auth-lock-screen.html" class="dropdown-item">Lock Screen</a>
|
||||
<a href="auth-logout.html" class="dropdown-item">Logout</a>
|
||||
<a href="auth-confirm-mail.html" class="dropdown-item">Confirm Mail</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-auth2"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Auth Style 2 <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-auth2">
|
||||
<a href="auth-login-2.html" class="dropdown-item">Log In 2</a>
|
||||
<a href="auth-register-2.html" class="dropdown-item">Register 2</a>
|
||||
<a href="auth-signin-signup-2.html" class="dropdown-item">Signin - Signup 2</a>
|
||||
<a href="auth-recoverpw-2.html" class="dropdown-item">Recover Password 2</a>
|
||||
<a href="auth-lock-screen-2.html" class="dropdown-item">Lock Screen 2</a>
|
||||
<a href="auth-logout-2.html" class="dropdown-item">Logout 2</a>
|
||||
<a href="auth-confirm-mail-2.html" class="dropdown-item">Confirm Mail 2</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-error"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Errors <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-error">
|
||||
<a href="pages-404.html" class="dropdown-item">Error 404</a>
|
||||
<a href="pages-404-alt.html" class="dropdown-item">Error 404-alt</a>
|
||||
<a href="pages-500.html" class="dropdown-item">Error 500</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="dropdown">
|
||||
<a class="dropdown-item dropdown-toggle arrow-none" href="#" id="topnav-utility"
|
||||
role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
Utility <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-utility">
|
||||
<a href="pages-starter.html" class="dropdown-item">Starter</a>
|
||||
<a href="pages-timeline.html" class="dropdown-item">Timeline</a>
|
||||
<a href="pages-sitemap.html" class="dropdown-item">Sitemap</a>
|
||||
<a href="pages-invoice.html" class="dropdown-item">Invoice</a>
|
||||
<a href="pages-faqs.html" class="dropdown-item">FAQs</a>
|
||||
<a href="pages-search-results.html" class="dropdown-item">Search Results</a>
|
||||
<a href="pages-pricing.html" class="dropdown-item">Pricing</a>
|
||||
<a href="pages-maintenance.html" class="dropdown-item">Maintenance</a>
|
||||
<a href="pages-coming-soon.html" class="dropdown-item">Coming Soon</a>
|
||||
<a href="pages-gallery.html" class="dropdown-item">Gallery</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</li>
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle arrow-none" href="#" id="topnav-layout" role="button"
|
||||
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||
<i class="ri-layout-line mr-1"></i> Layouts <div class="arrow-down"></div>
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="topnav-layout">
|
||||
<a href="layouts-vertical.html" class="dropdown-item">Vertical</a>
|
||||
<a href="layouts-detached.html" class="dropdown-item">Detached</a>
|
||||
<a href="layouts-two-column.html" class="dropdown-item">Two Column Menu</a>
|
||||
<a href="layouts-preloader.html" class="dropdown-item">Preloader</a>
|
||||
</div>
|
||||
</li>
|
||||
</ul> <!-- end navbar-->
|
||||
</div> <!-- end .collapsed-->
|
||||
</nav>
|
||||
|
||||
@ -10,10 +10,49 @@
|
||||
text-align: left;
|
||||
}
|
||||
</style>
|
||||
<style>
|
||||
.autocomplete-suggestion {
|
||||
cursor: pointer;
|
||||
background-color: skyblue;
|
||||
/* background-color: darkgrey; */
|
||||
outline: 1px solid slategrey;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript" src="<?php echo base_url(); ?>public/assets/Autocomplete/jquery.autocomplete.js"></script>
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
$("#PONO").select2();
|
||||
$("#VehicleType").select2();
|
||||
$('#DriverName').autocomplete({
|
||||
|
||||
onSearchStart: function(query) {
|
||||
//alert(query);
|
||||
$('#DriverName').autocomplete("option", "minLength", 0);
|
||||
},
|
||||
|
||||
serviceUrl: "<?php echo base_url(); ?>drivernameautocomplete",
|
||||
onSelect: function(suggestion) {
|
||||
var data = suggestion.DriverName;
|
||||
|
||||
}
|
||||
});
|
||||
$('#DriverMobileNumber').autocomplete({
|
||||
serviceUrl: "<?php echo base_url(); ?>drivermobileautocomplete",
|
||||
params: {
|
||||
driverName: function() {
|
||||
return $('#DriverName').val(); // Pass the value of the DriverName input field
|
||||
}
|
||||
},
|
||||
onSearchStart: function(query) {
|
||||
$('#DriverMobileNumber').autocomplete("option", "minLength", 0);
|
||||
},
|
||||
onSelect: function(suggestion) {
|
||||
var data = suggestion.DriverMobileNumber;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
$("#InvoiceDate").datepicker({
|
||||
@ -146,7 +185,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="margin: 10px 0;">
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Vechicle Number</label>
|
||||
<?php
|
||||
$data = array('name' => 'VehicleNo', 'value' => set_value('VehicleNo'), 'id' => 'VehicleNo', 'class' => 'form-control', 'maxlength' => '20', 'autocomplete'=>'off');
|
||||
@ -154,14 +193,21 @@
|
||||
?>
|
||||
<!-- <span pattern="" required="true"></span> -->
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Vechicle Type</label>
|
||||
<?php
|
||||
$opt = array(""=>'Vechicle Type',"Rented"=>'Rented',"Owned"=>'Owned');
|
||||
echo form_dropdown('VehicleType', $opt,set_value('VehicleType'),'id="VehicleType"' ,'class="form-control select2');
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Driver Name</label>
|
||||
<?php
|
||||
$data = array('name' => 'DriverName', 'value' => set_value('DriverName'), 'id' => 'DriverName', 'class' => 'form-control', 'maxlength' => '50', 'autocomplete'=>'off');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Driver Mobile Number</label>
|
||||
<?php
|
||||
$data = array('name' => 'DriverMobileNumber', 'value' => set_value('DriverMobileNumber'), 'id' => 'DriverMobileNumber', 'class' => 'form-control', 'maxlength' => '50', 'autocomplete'=>'off');
|
||||
@ -241,8 +287,8 @@
|
||||
<div id="filesContainer"></div>
|
||||
</div><br>
|
||||
<div class="col-md-4 col-md-offset-8">
|
||||
<button class="btn btn-success" id='IGRDraftLink' type="submit" name='IGRDraftLink' onclick="filecheck(0);">Save as Draft IGR</button>
|
||||
<button class="btn btn-success" id='IGRLink' type="submit" name='IGRLink' onclick="filecheck(1);">Generate IGR</button>
|
||||
<button class="btn btn-success" id='IGRDraftLink' type="submit" name='IGRDraftLink' onclick="filecheck(0);">Save as Draft IGR</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -492,8 +492,15 @@ if (empty($Status)) {
|
||||
});
|
||||
</script>
|
||||
|
||||
<script src="https://cdn.datatables.net/plug-ins/1.10.16/sorting/datetime-moment.js"></script>
|
||||
<script>
|
||||
<script src="https://cdn.datatables.net/plug-ins/1.10.11/sorting/date-eu.js"></script>
|
||||
<script src="https://cdn.datatables.net/buttons/2.3.4/js/dataTables.buttons.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/buttons/2.3.4/js/buttons.html5.min.js"></script>
|
||||
<script src="https://cdn.datatables.net/buttons/2.3.4/js/buttons.print.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/pdfmake.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.2.7/vfs_fonts.js"></script>
|
||||
<script src="https://cdn.datatables.net/plug-ins/1.13.6/sorting/datetime-moment.js"></script>
|
||||
<script>
|
||||
$.fn.dataTable.ext.type.order['date-eu-pre'] = function(date) {
|
||||
var dateSplit = date.split('/');
|
||||
return (dateSplit[2] + dateSplit[1] + dateSplit[0]) * 1;
|
||||
@ -516,6 +523,26 @@ if (empty($Status)) {
|
||||
"autoWidth": true,
|
||||
"pageLength": 10,
|
||||
"lengthMenu": [10, 25, 50, 100],
|
||||
"dom": "<'row'<'col-md-6'l><'col-md-6'Bf>>" +
|
||||
"<'row'<'col-md-6'><'col-md-6'>>" +
|
||||
"<'row'<'col-md-12't>><'row'<'col-md-4'i><'col-md-8'p>>",
|
||||
"buttons": [
|
||||
{
|
||||
extend: 'excelHtml5',
|
||||
text: 'Export to Excel',
|
||||
title: 'Approve Purchase Order List',
|
||||
exportOptions: {
|
||||
columns: ':visible:not(:last-child)' // Exclude first and last columns
|
||||
}
|
||||
},
|
||||
{
|
||||
extend: 'pdfHtml5',
|
||||
text: 'Export to PDF',
|
||||
title: 'Approve Purchase Order List',
|
||||
exportOptions: {
|
||||
columns: ':visible:not(:last-child)' // Exclude first and last columns
|
||||
}
|
||||
}]
|
||||
|
||||
});
|
||||
|
||||
|
||||
@ -87,9 +87,47 @@
|
||||
maxDate :'now',
|
||||
dateFormat: 'dd-mm-yy',changeMonth: true, changeYear: true,yearRange: '-100:+0'
|
||||
});
|
||||
$('#Driver_Name').autocomplete({
|
||||
|
||||
onSearchStart: function(query) {
|
||||
//alert(query);
|
||||
$('#Driver_Name').autocomplete("option", "minLength", 0);
|
||||
},
|
||||
|
||||
serviceUrl: "<?php echo base_url(); ?>drivernameautocomplete",
|
||||
onSelect: function(suggestion) {
|
||||
var data = suggestion.DriverName;
|
||||
|
||||
}
|
||||
});
|
||||
$('#DriverMobileNumber').autocomplete({
|
||||
serviceUrl: "<?php echo base_url(); ?>drivermobileautocomplete",
|
||||
params: {
|
||||
driverName: function() {
|
||||
return $('#Driver_Name').val(); // Pass the value of the DriverName input field
|
||||
}
|
||||
},
|
||||
onSearchStart: function(query) {
|
||||
$('#DriverMobileNumber').autocomplete("option", "minLength", 0);
|
||||
},
|
||||
onSelect: function(suggestion) {
|
||||
var data = suggestion.DriverMobileNumber;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.autocomplete-suggestion {
|
||||
cursor: pointer;
|
||||
background-color: skyblue;
|
||||
/* background-color: darkgrey; */
|
||||
outline: 1px solid slategrey;
|
||||
}
|
||||
</style>
|
||||
<script type="text/javascript" src="<?php echo base_url(); ?>public/assets/Autocomplete/jquery.autocomplete.js"></script>
|
||||
|
||||
<div class="content-wrapper">
|
||||
<section class="content"><br/>
|
||||
<div class="box">
|
||||
@ -219,8 +257,8 @@
|
||||
</div>
|
||||
<div class="col-md-12" style="margin: 10px 0;">
|
||||
<div class="col-md-4">
|
||||
<label>Invoice Number </label>
|
||||
<?php $data = array('name' => 'InvoiceNO','value' => set_value('InvoiceNO'),'id'=>'Invoice_No', 'class' => 'form-control', 'required=>"true"' , 'readonly'=>'true' );
|
||||
<label>Invoice Number <span class="requiredsymbol" style="color:red; font-size: 15px;">*</span></label>
|
||||
<?php $data = array('name' => 'InvoiceNO','value' => set_value('InvoiceNO'),'id'=>'Invoice_No', 'class' => 'form-control', 'required=>"true"' );
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
@ -240,19 +278,26 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="margin: 10px 0;">
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Vehicle Number </label>
|
||||
<?php $data = array('name' => 'VehicleNo','value' => set_value('VehicleNo'),'id'=>'Vehicle_No', 'class' => 'form-control');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Vehicle Type</label>
|
||||
<?php
|
||||
$opt = array(""=>'Vehicle Type',"Rented"=>'Rented',"Owned"=>'Owned');
|
||||
echo form_dropdown('VehicleType', $opt,set_value('VehicleType'),'id="Vehicle_Type"' ,'class="form-control select2');
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Driver Name </label>
|
||||
<?php $data = array('name' => 'DriverName','value' => set_value('DriverName'),'id'=>'Driver_Name', 'class' => 'form-control');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Driver Mobile Number </label>
|
||||
<?php $data = array('name' => 'DriverMobileNumber','value' => set_value('DriverMobileNumber'),'id'=>'DriverMobileNumber', 'class' => 'form-control');
|
||||
echo form_input($data);
|
||||
@ -314,8 +359,8 @@
|
||||
<div class="modal-footer">
|
||||
<div class="buttonContainer">
|
||||
<a class="btn btn-cancel" data-dismiss="modal" value="Close">Close</a>
|
||||
<a class="btn btn-primary" id="draftIGR" value="draftIGR">Save as Draft IGR</a>
|
||||
<a class="btn btn-primary" id="generateIGR" value="generateIGR">Generate IGR</a>
|
||||
<a class="btn btn-primary" id="draftIGR" value="draftIGR">Save as Draft IGR</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -544,6 +589,7 @@
|
||||
var invoiceDateInput = modal.find('#Invoice_Date');
|
||||
var MaterialRcvdDateInput = modal.find('#MaterialRcvdDate');
|
||||
var VehicleNoInput = modal.find('#Vehicle_No');
|
||||
var VehicleTypeInput = modal.find('#Vehicle_Type');
|
||||
var DriverInput = modal.find('#Driver_Name');
|
||||
var DriverMobileNumberInput = modal.find('#DriverMobileNumber');
|
||||
var MasterFileInput = modal.find('#MasterFile');
|
||||
@ -601,6 +647,7 @@ console.log(parsedData);
|
||||
$('#printLink').attr('href', '#');
|
||||
$('.help-block').text('');
|
||||
$("#Vehicle_No").val('');
|
||||
$("#Vehicle_Type").val('');
|
||||
$("#Driver_Name").val('');
|
||||
$("#DriverMobileNumber").val('');
|
||||
$("#IGRStatus").val('');
|
||||
@ -639,6 +686,7 @@ console.log(parsedData);
|
||||
$('#draftIGR').text(button_text_for_IGRDraft);
|
||||
$("#hiddenIsOpenOrder").val(isOpenOrder);
|
||||
$("#Vehicle_No").val(item.VehicleNo);
|
||||
$("#Vehicle_Type").val(item.VehicleType);
|
||||
$("#Driver_Name").val(item.DriverName);
|
||||
$("#DriverMobileNumber").val(item.DriverMobileNumber);
|
||||
$("#IGRStatus").val(item.IGRStatus);
|
||||
@ -794,6 +842,7 @@ console.log(parsedData);
|
||||
formData.append('mrc', $("#MaterialRcvdDate").val());
|
||||
formData.append('invdate', $("#Invoice_Date").val());
|
||||
formData.append('vehicle_no', $('#Vehicle_No').val());
|
||||
formData.append('vehicle_type', $('#Vehicle_Type').val());
|
||||
formData.append('driver', $('#Driver_Name').val());
|
||||
formData.append('driver_mobile', $('#DriverMobileNumber').val());
|
||||
formData.append('status', status);
|
||||
@ -852,6 +901,7 @@ console.log(parsedData);
|
||||
formData.append('mrc', $("#MaterialRcvdDate").val());
|
||||
formData.append('invdate', $("#Invoice_Date").val());
|
||||
formData.append('vehicle_no', $('#Vehicle_No').val());
|
||||
formData.append('vehicle_type', $('#Vehicle_Type').val());
|
||||
formData.append('driver', $('#Driver_Name').val());
|
||||
formData.append('driver_mobile', $('#DriverMobileNumber').val());
|
||||
formData.append('status', status);
|
||||
|
||||
BIN
public/new_assets/images/RESICO (1).png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
public/new_assets/images/RESICO (2).png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
public/new_assets/images/RI.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
public/new_assets/images/RI_favicon.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
public/new_assets/images/RI_logo.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/new_assets/images/RI_logo_dark.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
public/new_assets/images/RI_logo_light.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
public/new_assets/images/avatar.png
Normal file
|
After Width: | Height: | Size: 52 KiB |