You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
3.7 KiB
PHTML
116 lines
3.7 KiB
PHTML
8 months ago
|
<!-- Extend area where template is defined -->
|
||
|
<?= $this->extend('templates/adminlte/generalcontent') ?>
|
||
|
<!-- .Extend -->
|
||
|
|
||
|
<!-- Title of the page -->
|
||
|
<?= $this->section('title') ?>Company Department<?= $this->endSection() ?>
|
||
|
<!-- .Title -->
|
||
|
|
||
|
<!-- CSS of the page -->
|
||
|
<?= $this->section('css') ?>
|
||
|
<?= $this->endSection() ?>
|
||
|
<!-- .CSS -->
|
||
|
|
||
|
<!-- body attribute - class definition -->
|
||
|
<?= $this->section('bodyclass') ?>sidebar-mini<?= $this->endSection() ?>
|
||
|
<!-- .body attribute -->
|
||
|
|
||
|
<!-- Container title -->
|
||
|
<?= $this->section('containertitle') ?>Comany Department<?= $this->endSection() ?>
|
||
|
<!-- .Container title -->
|
||
|
|
||
|
<!-- Active breadcrumb -->
|
||
|
<?= $this->section('activebreadcrumb') ?>Comany Department<?= $this->endSection() ?>
|
||
|
<!-- .Active breadcrumb -->
|
||
|
|
||
|
<!-- Main content -->
|
||
|
<?= $this->section('main') ?>
|
||
|
|
||
|
<!-- Modal Add Department -->
|
||
|
<div class="modal fade" id="mdlAddDepartment">
|
||
|
<div class="modal-dialog">
|
||
|
<div class="modal-content">
|
||
|
<form action="<?= url_to('hr/adddept') ?>" method="post">
|
||
|
<div class="modal-header">
|
||
|
<h4 class="modal-title" >New Department</h4>
|
||
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||
|
<span aria-hidden="true">×</span>
|
||
|
</button>
|
||
|
</div>
|
||
|
<div class="modal-body">
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<p class="lead">Department Information</p>
|
||
|
<div class="row">
|
||
|
<div class="col-4">
|
||
|
<p><strong>Company ID</strong></p>
|
||
|
<p><?= session()->get('companyInfo')->company_id ?></p>
|
||
|
<input type="hidden" name="company_id" value="<?= session()->get('companyInfo')->company_id ?>">
|
||
|
</div>
|
||
|
<div class="col-8">
|
||
|
<p><strong>Company Name</strong></p>
|
||
|
<p><?= session()->get('companyInfo')->company_name ?></p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<div class="form-group">
|
||
|
<label for="txtDeptCode">Department Code</label>
|
||
|
<input class="form-control" type="text" id="txtDeptCode" name="department_code" value="<?= old('department_code') ?>">
|
||
|
</div>
|
||
|
<div class="form-group">
|
||
|
<label for="txtDeptName">Department Name</label>
|
||
|
<input class="form-control" type="text" id="txtDeptName" name="department_name" value="<?= old('department_name') ?>">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="modal-footer">
|
||
|
<button type="submit" class="btn btn-primary">Save changes</button>
|
||
|
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<div class="card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">List of Departments</h3>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<div class="card-body table-responsive p-0">
|
||
|
<?= $tblCompanyDept ?>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="card-footer">
|
||
|
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#mdlAddDepartment">Add Department</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?= $this->endSection() ?>
|
||
|
<!-- .Main content -->
|
||
|
|
||
|
<!-- Javascript -->
|
||
|
|
||
|
<?= $this->section('js') ?>
|
||
|
|
||
|
<script>
|
||
|
$(document).ready(function() {
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<?= $this->endSection() ?>
|
||
|
|
||
|
<!-- .Javascript -->
|