247 lines
9.8 KiB
PHP
247 lines
9.8 KiB
PHP
<style>
|
|
.bootstrap-select>.dropdown-toggle.bs-placeholder,
|
|
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover,
|
|
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
|
|
.bootstrap-select>.dropdown-toggle.bs-placeholder:active {
|
|
height: 38px;
|
|
}
|
|
|
|
.bootstrap-select .dropdown-toggle .filter-option-inner {
|
|
margin-top: 4px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.form-group .bootstrap-select>.dropdown-toggle {
|
|
height: 38px;
|
|
}
|
|
</style>
|
|
<div class="wraper responsive-width">
|
|
<main>
|
|
<div class="admin_tempblock">
|
|
<div class="admin_tempsec">
|
|
<div class="admin_sec">
|
|
<div class="subsec_sec">
|
|
<div class="subject_r subject_r_lng">
|
|
<div class="subject_lsec">
|
|
|
|
<div class="mb-4">
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item"><a href="<?= base_url() . 'admin/inventory/dashboard' ?>">Dashboard</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page"><?= $title ?></li>
|
|
</ol>
|
|
</nav>
|
|
</div>
|
|
|
|
<?php if ($this->session->flashdata('success')) { ?>
|
|
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
|
<p><b> Success !</b> <?php echo $this->session->flashdata('success') ?></p>
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<?php if ($this->session->flashdata('danger')) { ?>
|
|
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
|
<p><b> Error !</b> <?php echo $this->session->flashdata('danger') ?></p>
|
|
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<div class="d-flex justify-content-end mb-3 small">
|
|
<b style="font-weight: 500">Quick Links:</b>
|
|
<a href="<?= base_url() ?>admin/inventory/book-publication" class="text-primary px-1"> Publications </a> |
|
|
<a href="<?= base_url() ?>admin/inventory/item-categories" class="text-primary px-1"> Item Categories </a> |
|
|
<a href="<?= base_url() ?>admin/inventory/items" class="text-primary px-1"> Items </a> |
|
|
<a href="<?= base_url() ?>admin/inventory/item-stocks" class="text-primary px-1"> Stocks </a> |
|
|
<a href="<?= base_url() ?>admin/inventory/add-edit-new-entry/0" class="text-primary px-1"> New Purchase Entry </a> |
|
|
<a href="<?= base_url() ?>admin/inventory/add-new-sales-record/0" class="text-primary px-1"> New Sales Entry </a>
|
|
</div>
|
|
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-4">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h5 class="card-title">Add New Item Variant</h5>
|
|
<form method="post" action="<?php echo base_url(); ?>admin/inventory/item-variants">
|
|
<div class="form-group mb-0">
|
|
<label class="has-float-label">
|
|
<input type="text" id="title" name="title" class=" form-control" placeholder='Enter variant title' required>
|
|
<span>Variant Title</span>
|
|
</label>
|
|
</div>
|
|
<div class="form-group mt-3">
|
|
<label class="has-float-label">
|
|
<select class="form-control selectpicker" name="item_category" data-live-search="true" required>
|
|
<option value="">
|
|
Select Category
|
|
</option>
|
|
<?php
|
|
foreach ($inventory_categories as $ic_key => $ic_value) {
|
|
?>
|
|
<option value="<?= $ic_value['id'] ?>">
|
|
<?= $ic_value['title'] ?>
|
|
</option>
|
|
<?php
|
|
}
|
|
?>
|
|
</select>
|
|
<span>Category <b class="text-danger">*</b></span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="mt-4 w-100">
|
|
<input type="submit" name="addVariant" id="addVariant" class="btn btn-sm btn-success w-100" value="Add">
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-8 pl-0">
|
|
<div class="col-md-12 border rounded py-3">
|
|
|
|
<!-- -->
|
|
<table id="tbl" class="display table-responsive">
|
|
<thead>
|
|
<tr>
|
|
<th class="textCenter">S.No</th>
|
|
<th class="textCenter">Title</th>
|
|
<th class="textCenter">Category</th>
|
|
<th class="textCenter">Is Active</th>
|
|
|
|
<th class="textCenter">Action</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($inventory_variants as $iv_key => $iv_value) {
|
|
?>
|
|
<tr>
|
|
<td><?= $iv_key + 1 ?></td>
|
|
<td class="text-left"><?= $iv_value['title'] ?></td>
|
|
<td><?= ucfirst($iv_value['category_title']) ?></td>
|
|
<td><?= ucfirst($iv_value['is_active']) ?></td>
|
|
<td>
|
|
<button type="button" class="btn btn-sm btn-outline-primary" data-toggle="modal" data-target="#updateModal<?= $iv_value['id'] ?>">
|
|
<i class="fa fa-edit"></i>
|
|
</button>
|
|
|
|
<div class="modal fade" id="updateModal<?= $iv_value['id'] ?>" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLabel">Update</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<form action="<?= base_url(); ?>admin/inventory/item-variants" method="POST" onkeydown=" return event.key != 'Enter'">
|
|
<div class="modal-body">
|
|
<input type="hidden" name="recId" value="<?= $iv_value['id'] ?>">
|
|
|
|
<div class="form-group mb-0">
|
|
<label class="has-float-label">
|
|
<input type="text" id="title" name="title" class=" form-control" value="<?= $iv_value['title'] ?>" placeholder='Enter category title' required>
|
|
<span>Category Title</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-group mt-4">
|
|
<label class="has-float-label">
|
|
<select id="item_category" class="form-control selectpicker" name="item_category" data-live-search="true" required>
|
|
<option value="">
|
|
Select Category
|
|
</option>
|
|
<?php
|
|
foreach ($inventory_categories as $ic_key => $ic_value) {
|
|
?>
|
|
<option value="<?= $ic_value['id'] ?>" <?= $ic_value['id'] == $iv_value['category'] ? 'selected' : '' ?>>
|
|
<?= $ic_value['title'] ?>
|
|
</option>
|
|
<?php
|
|
}
|
|
?>
|
|
</select>
|
|
<span>Category <b class="text-danger">*</b></span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-group mt-4">
|
|
<label class="has-float-label">
|
|
<select id="is_active" class="form-control custom-select" placeholder="Is Active" name="is_active">
|
|
<option value="yes" <?= $iv_value['is_active'] == 'yes' ? 'selected' : '' ?>>
|
|
Yes
|
|
</option>
|
|
<option value="no" <?= $iv_value['is_active'] == 'no' ? 'selected' : '' ?>>
|
|
No
|
|
</option>
|
|
</select>
|
|
<span>Is Active</span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-sm btn-danger" data-dismiss="modal">Close</button>
|
|
<input type="submit" name="updateVariant" class="btn btn-sm btn-success" value="Update">
|
|
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<script defer src="<?php echo base_url(); ?>assets_admin/js/bootstrap-select.min.js"></script>
|
|
|
|
<!--End right-top side-->
|
|
|
|
<!-- <script src="<?php echo base_url(); ?>assets-bustracking/js/jquery-3.2.1.slim.min.js"></script> -->
|
|
<script src="<?php echo base_url(); ?>assets-bustracking/js/jquery-3.4.1.min.js"></script>
|
|
<script src="<?php echo base_url(); ?>assets-bustracking/js/popper.min.js"></script>
|
|
<script src="<?php echo base_url(); ?>assets-bustracking/js/bootstrap.min.js"></script>
|
|
<script src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.min.js"></script>
|
|
<script defer src="<?php echo base_url(); ?>assets-bustracking/js/all.js"></script>
|
|
<script defer src="<?php echo base_url(); ?>assets-bustracking/js/main.js"></script>
|
|
<script src="<?php echo base_url(); ?>assets-bustracking/owl-carousel/js/owl.carousel.min.js"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
//table js
|
|
$('#tbl').DataTable({
|
|
"lengthMenu": [
|
|
[25, 50, 100, 150, -1],
|
|
[25, 50, 100, 150, "All"]
|
|
]
|
|
});
|
|
//table js end
|
|
|
|
});
|
|
</script>
|