'.__('You don\'t have enough privileges to access this area!').''); } ?>
query("SELECT stock_take_name AS '".__('Stock Take Name')."', start_date AS '".__('Start Date')."', end_date AS '".__('End Date')."', init_user AS '".__('Initializer')."', total_item_stock_taked AS '".__('Total Item Stock Taked')."', total_item_lost AS '".__('Total Item Lost')."', total_item_exists AS '".__('Total Item Exists')."', total_item_loan AS '".__('Total Item On Loan')."', stock_take_users AS '".__('Stock Take Participants')."', is_active AS '".__('Status')."', report_file AS '".__('Report')."' FROM stock_take WHERE stock_take_id=".$itemID); $rec_d = $rec_q->fetch_assoc(); // create table object $table = new simbio_table(); $table->table_attr = 'align="center" class="border" cellpadding="5" cellspacing="0"'; // table header $table->setHeader(array($rec_d[__('Stock Take Name')])); $table->table_header_attr = 'class="dataListHeader" colspan="3"'; // initial row count $row = 1; foreach ($rec_d as $headings => $stk_data) { if ($headings == 'stock_take_id') { continue; } else if ($headings == __('Status')) { if ($stk_data == '1') { $stk_data = ''.__('Currently Active').''; } else { $stk_data = 'Finished'; } } $table->appendTableRow(array($headings, ':', $stk_data)); // set cell attribute $table->setCellAttr($row, 0, 'class="alterCell" valign="top" style="width: 170px;"'); $table->setCellAttr($row, 1, 'class="alterCell" valign="top" style="width: 1%;"'); $table->setCellAttr($row, 2, 'class="alterCell2" valign="top" style="width: auto;"'); // add row count $row++; } // print out table echo $table->printTable(); } else { /* STOCK TAKE HISTORY LIST */ // table spec $table_spec = 'stock_take AS st'; // create datagrid $datagrid = new simbio_datagrid(); $datagrid->setSQLColumn('st.stock_take_id', 'st.stock_take_name AS \''.__('Stock Take Name').'\'', 'st.start_date AS \''.__('Start Date').'\'', 'st.end_date AS \''.__('End Date').'\'', 'CONCAT(\'\', st.report_file, \'\') AS \''.__('Report').'\''); $datagrid->setSQLorder('st.start_date DESC'); $datagrid->disableSort('Report'); // is there any search if (isset($_GET['keywords']) AND $_GET['keywords']) { $keyword = $dbs->escape_string(trim($_GET['keywords'])); $words = explode(' ', $keyword); if (count($words) > 1) { $concat_sql = ' ('; foreach ($words as $word) { $concat_sql .= " (stock_take_name LIKE '%$word%' OR init_user LIKE '%$word%') AND"; } // remove the last AND $concat_sql = substr_replace($concat_sql, '', -3); $concat_sql .= ') '; $datagrid->setSQLCriteria($concat_sql); } else { $datagrid->setSQLCriteria("stock_take_name LIKE '%$keyword%' OR init_user LIKE '%$keyword%'"); } } // set table and table header attributes $datagrid->icon_edit = $sysconf['admin_template']['dir'].'/'.$sysconf['admin_template']['theme'].'/edit.gif'; $datagrid->table_attr = 'align="center" id="dataList" cellpadding="5" cellspacing="0"'; $datagrid->table_header_attr = 'class="dataListHeader" style="font-weight: bold;"'; $datagrid->chbox_property = false; // set delete proccess URL $datagrid->delete_URL = $_SERVER['PHP_SELF']; // put the result into variables $datagrid_result = $datagrid->createDataGrid($dbs, $table_spec, 20, true); if (isset($_GET['keywords']) AND $_GET['keywords']) { $msg = str_replace('{result->num_rows}', $datagrid->num_rows, __('Found {result->num_rows} from your keywords')); //mfc echo '