mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-29 19:51:05 -05:00
fix tables in item_kit/form items/inventory details and sales/suspended (#116)
This commit is contained in:
@@ -39,12 +39,12 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table id="item_kit_items" class="table table-striped table-hover" role="grid">
|
||||
<table id="item_kit_items" class="table table-striped table-hover">
|
||||
<thead>
|
||||
<tr role="row">
|
||||
<th role="columnheader"><?php echo $this->lang->line('common_delete'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('item_kits_item'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('item_kits_quantity'); ?></th>
|
||||
<tr bgcolor="#CCC">
|
||||
<th><?php echo $this->lang->line('common_delete'); ?></th>
|
||||
<th><?php echo $this->lang->line('item_kits_item'); ?></th>
|
||||
<th><?php echo $this->lang->line('item_kits_quantity'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
@@ -67,22 +67,22 @@
|
||||
</fieldset>
|
||||
<?php echo form_close(); ?>
|
||||
|
||||
<table class="table" role="grid" style="font-size: 80%">
|
||||
<table class="table" style="font-size: 80%">
|
||||
<thead>
|
||||
<tr role="row" bgcolor="#CCC">
|
||||
<tr bgcolor="#999">
|
||||
<th style="text-align: center" colspan="4">Inventory Data Tracking</th>
|
||||
</tr>
|
||||
<tr role="row">
|
||||
<th style="text-align: center" rolerole="columnheader">Date</th>
|
||||
<th style="text-align: center" rolerole="columnheader">Employee</th>
|
||||
<th style="text-align: center" role="columnheader">In/Out Qty</th>
|
||||
<th style="text-align: center" rolerole="columnheader">Remarks</th>
|
||||
<tr bgcolor="#CCC">
|
||||
<th style="text-align: center">Date</th>
|
||||
<th style="text-align: center">Employee</th>
|
||||
<th style="text-align: center">In/Out Qty</th>
|
||||
<th style="text-align: center">Remarks</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="inventory_result">
|
||||
<?php
|
||||
/*
|
||||
* the tbody content of the table will be filled in by the javascript below
|
||||
* the tbody content of the table will be filled in by the javascript (see bottom of page)
|
||||
*/
|
||||
|
||||
$inventory_array = $this->Inventory->get_inventory_data_for_item($item_info->item_id)->result_array();
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
<table id="suspended_sales_table" class="table table-striped table-hover" role="grid">
|
||||
<table id="suspended_sales_table" class="table table-striped table-hover">
|
||||
<thead>
|
||||
<tr role="row">
|
||||
<th role="columnheader"><?php echo $this->lang->line('sales_suspended_sale_id'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('sales_date'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('sales_customer'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('sales_comments'); ?></th>
|
||||
<th role="columnheader"><?php echo $this->lang->line('sales_unsuspend_and_delete'); ?></th>
|
||||
<tr bgcolor="#CCC">
|
||||
<th><?php echo $this->lang->line('sales_suspended_sale_id'); ?></th>
|
||||
<th><?php echo $this->lang->line('sales_date'); ?></th>
|
||||
<th><?php echo $this->lang->line('sales_customer'); ?></th>
|
||||
<th><?php echo $this->lang->line('sales_comments'); ?></th>
|
||||
<th><?php echo $this->lang->line('sales_unsuspend_and_delete'); ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
||||
Reference in New Issue
Block a user