Example #1
0
search_form(array("" => "By", "asset_name" => "Name"));
?>
        </div>
        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="25%"><?php 
echo HeaderLink("Staff", "izin_staff_id", $col, $dir);
?>
</th>
                    <th width="15%"><?php 
echo HeaderLink("Date", "izin_date", $col, $dir);
?>
</th>
                    <th width="10%"><?php 
echo HeaderLink("Jumlah hari", "izin_jumlah_hari", $col, $dir);
?>
                    <th width="40%">Note</th>
                    <th width="10">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($izin->result() as $row) {
    $staff = get_staff_detail($row->izin_staff_id);
    ?>
                <tr>
                    <td><?php 
    echo $staff->staff_name;
    ?>
</td>
                    <td><?php 
Example #2
0
search_form(array("" => "By", "salary_period" => "Period"));
?>
    </div>
    <table class="table fpTable table-hover">
      <thead>
        <tr>
          <th width="8%"><?php 
echo HeaderLink("Salary ID", "salary_id", $col, $dir);
?>
</th>
          <th width="42%"><?php 
echo HeaderLink("Salary Periode", "salary_periode", $col, $dir);
?>
</th>
          <th width="40%"><?php 
echo HeaderLink("Salary Staff", "salary_staffid", $col, $dir);
?>
</th>
          <th width="10">Action</th>
        </tr>
      </thead>
      <?php 
foreach ($salaries as $row) {
    ?>
        <tr>
          <td><?php 
    echo $row->salary_id;
    ?>
</td>
          <td><?php 
    echo $row->salary_periode;
Example #3
0
?>
    </div>
    <div id="search_bar" class="widget-header">
      <?php 
search_form(array("" => "By", "dept_name" => "Name"));
?>
    </div>
    <table class="table fpTable table-hover">
      <thead>
        <tr>
          <th width="5%"><?php 
echo HeaderLink("Departement ID", "dept_id", $col, $dir);
?>
</th>
          <th width="55%"><?php 
echo HeaderLink("Departement Name", "dept_name", $col, $dir);
?>
</th>
          <th width="10%" class="action_cell">Action</th>
        </tr>
      </thead>
      <?php 
foreach ($dept_list as $row) {
    ?>
          <tr>
            <td><?php 
    echo $row->dept_id;
    ?>
</td>
            <td><?php 
    echo $row->dept_name;
Example #4
0
echo header_btn_group("maritals_status/to_excel", "maritals_status/add");
?>
    </div>
    <div id="search_bar" class="widget-header">
      <?php 
search_form(array("" => "By", "sn_name" => "Status"));
?>
    <table class="table fpTable table-hover">
      <thead>
        <tr>
          <th width="5%"><?php 
echo HeaderLink("SN ID", "sn_id", $col, $dir);
?>
</th>
          <th width="85%"><?php 
echo HeaderLink("Status Name", "sn_name", $col, $dir);
?>
</th>
          <th width="10%" class="action_cell" colspan="2">Action</th>
        </tr>
      </thead>
      <?php 
foreach ($marital_list as $row) {
    ?>
          <tr>
              <td><?php 
    echo $row->sn_id;
    ?>
</td>
              <td><?php 
    echo $row->sn_name;
Example #5
0
?>
        </div>
        <div id="search_bar" class="widget-header">
            <?php 
search_form(array("" => "By", "title_name" => "Name"));
?>
        </div>
        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="10%"><?php 
echo HeaderLink("Title ID", "title_id", $col, $dir);
?>
</th>
                    <th width="80%"><?php 
echo HeaderLink("Title Name", "title_name", $col, $dir);
?>
</th>
                    <th width="10%" colspan="2" class="action_cell">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($title_list as $row) {
    ?>
                <tr>
                    <td><?php 
    echo $row->title_id;
    ?>
</td>
                    <td><?php 
    echo $row->title_name;
Example #6
0
?>
        </div>
        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="10%">Kode Absen</th>
                    <th width="40%"><?php 
echo HeaderLink("Staff", "staff_id", $col, $dir);
?>
</th>
                    <th width="20%"><?php 
echo HeaderLink("Date", "date", $col, $dir);
?>
</th>
                    <th width="20%"><?php 
echo HeaderLink("Jumlah masuk", "hari_masuk", $col, $dir);
?>
                    <th width="10">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($absensi->result() as $row) {
    $staff = get_staff_detail($row->staff_id);
    ?>
                <tr>
                    <td><?php 
    echo $staff->staff_kode_absen;
    ?>
</td>
                    <td><?php 
    echo $staff->staff_name;
Example #7
0
search_form(array("" => "By", "name" => "Setting name"));
?>
        </div>
        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="5%"><?php 
echo HeaderLink("ID", "id", $col, $dir);
?>
</th>
                    <th width="50%"><?php 
echo HeaderLink("Name", "name", $col, $dir);
?>
</th>
                    <th width="50%"><?php 
echo HeaderLink("Value", "value", $col, $dir);
?>
</th>
                    <th width="10%" class="action_cell">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($settings as $row) {
    ?>
                <tr>
                    <td><?php 
    echo $row->id;
    ?>
</td>
                    <td><?php 
    echo $row->name;
Example #8
0
search_form(array("" => "By", "sp_status" => "Status", "sp_ptkp" => "PTKP"));
?>
        </div>
        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="10%"><?php 
echo HeaderLink("SP ID", "sp_id", $col, $dir);
?>
</th>
                    <th width="10%"><?php 
echo HeaderLink("SP Status", "sp_status", $col, $dir);
?>
</th>
                    <th width="30%"><?php 
echo HeaderLink("Nilai Penghasilan Tidak Kena Pajak", "sp_ptkp", $col, $dir);
?>
</th>
                    <th width="45%">Keterangan</th>
                    <th width="5%" class="action_cell">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($tax_list as $row) {
    ?>
                <tr>
                    <td><?php 
    echo $row->sp_id;
    ?>
</td>
                    <td><?php 
Example #9
0
        </div>
        <div id="search_bar" class="widget-header">
            <?php 
search_form(array("" => "By", "role_name" => "Name"));
?>
        </div>

        <table class="table fpTable table-hover">
            <thead>
                <tr>
                    <th width="15%"><?php 
echo HeaderLink("Role ID", "role_id", $col, $dir);
?>
</th>
                    <th width="80%"><?php 
echo HeaderLink("Role Name", "role_name", $col, $dir);
?>
</th>
                    <th width="5%">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($role_list as $row) {
    ?>
                <tr>
                    <td><?php 
    echo $row->role_id;
    ?>
</td>
                    <td><?php 
    echo $row->role_name;
Example #10
0
?>
</th>
                    <th><?php 
echo HeaderLink("Asset Name", "asset_name", $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Asset Status", "asset_status", $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Staff ID", "staff_id", $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Date", "date", $col, $dir);
?>
</th>
                    <th width="10">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($asset_list as $row) {
    $row_staff = $staff->where('staff_id', $row->staff_id)->get();
    ?>
                <tr>
                    <td><?php 
    echo $row->asset_id;
    ?>
</td>
                    <td><?php 
Example #11
0
</th>
                    <th width="10%"><?php 
echo HeaderLink("Requested date", "date_request", $col, $dir);
?>
</th>
                    <th width="10%"><?php 
echo HeaderLink("Start from", "date_start", $col, $dir);
?>
                    <th width="10%"><?php 
echo HeaderLink("To", "date_end", $col, $dir);
?>
                    <th width="10%"><?php 
echo HeaderLink("Status", "status", $col, $dir);
?>
                    <th width="25%"><?php 
echo HeaderLink("Approve by", "approveby_staff_id", $col, $dir);
?>
                    <th width="5%">Action</th>
                </tr>
            </thead>
            <?php 
foreach ($cuti->result() as $row) {
    $staff = get_staff_detail($row->staff_id);
    ?>
                <tr>
                    <td><?php 
    echo $staff->staff_name;
    ?>
</td>
                    <td><?php 
    echo $row->date_request;
Example #12
0
        <thead>
            <tr>
                <th><?php 
echo HeaderLink("Sub Salary ID", "sub_id", $salary_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Salary Periode", "salary_periode", $salary_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Salary Daily Value", "salary_daily_value", $salary_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Salary Amount Value", "salary_amount_value", $salary_id, $col, $dir);
?>
</th>
                <th class="action_cell" colspan="2">Action</th>
            </tr>
        </thead>
        <?php 
foreach ($sub_salaries as $row) {
    ?>
            <tr>
                <td><?php 
    echo $row->sub_id;
    ?>
</td>
                <td><?php 
    echo $row->salary_periode;
Example #13
0
?>
</th>
                <th><?php 
echo HeaderLink("Family Birthdate", "staff_fam_birthdate", $staff_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Family Birthplace", "staff_fam_birthplace", $staff_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Family Gender", "staff_fam_sex", $staff_id, $col, $dir);
?>
</th>
                <th><?php 
echo HeaderLink("Family Relation", "staff_fam_relation", $staff_id, $col, $dir);
?>
</th>
                <th class="action_cell" colspan="2">Action</th>
            </tr>
        </thead>
        <?php 
foreach ($families as $row) {
    ?>
            <tr>
                <td><?php 
    echo $row->staff_fam_id;
    ?>
</td>
                <td><?php 
    echo $row->staff_fam_order;
Example #14
0
?>
    </div>
    <div id="search_bar" class="widget-header">
      <?php 
search_form(array("" => "By", "branch_name" => "Branch name"));
?>
    </div>
    <table class="table fpTable table-hover">
        <thead>
            <tr>
                <th width="5%"><?php 
echo HeaderLink("Branch ID", "branch_id", $col, $dir);
?>
</th>
                <th width="50%"><?php 
echo HeaderLink("Branch Name", "branch_name", $col, $dir);
?>
</th>
                <th width="10%" class="action_cell">Action</th>
            </tr>
        </thead>
        <?php 
foreach ($branch_list as $row) {
    ?>
            <tr>
                <td><?php 
    echo $row->branch_id;
    ?>
</td>
                <td><?php 
    echo $row->branch_name;
Example #15
0
            <thead>
                <tr>
                    <th><?php 
echo HeaderLink("Date", "date", $asset_id, $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Staff", "staff_id", $asset_id, $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Descriptions", "descriptions", $asset_id, $col, $dir);
?>
</th>
                    <th><?php 
echo HeaderLink("Status", "assetd_status", $asset_id, $col, $dir);
?>
</th>
                    <th>Action</th>
                </tr>
            </thead>
            <?php 
foreach ($assets_details as $row) {
    $row_staff = $staff->where('staff_id', $row->staff_id)->get();
    ?>
                <tr>
                    <td><?php 
    echo $row->date;
    ?>
</td>
                    <td><?php 
Example #16
0
?>
    </div>
    <div id="search_bar" class="widget-header">
      <?php 
search_form(array("" => "By", "sk_name" => "Status"));
?>
    </div>
    <table class="table fpTable table-hover">
      <thead>
        <tr>
          <th width="5%"><?php 
echo HeaderLink("SK ID", "sk_id", $col, $dir);
?>
</th>
          <th><?php 
echo HeaderLink("Status", "sk_name", $col, $dir);
?>
</th>
          <th width="10%" class="action_cell">Action</th>
        </tr>
      </thead>
      <?php 
foreach ($es_list as $row) {
    ?>
          <tr>
            <td><?php 
    echo $row->sk_id;
    ?>
</td>
            <td><?php 
    echo $row->sk_name;