<?php
/*
VERSION : 3.0
CODENAME : SENAYAN
AUTHOR :
Code and Programming : ARIE NUGRAHA (hide@address.com)
Database Design : HENDRO WICAKSONO (hide@address.com) & WARDIYONO (hide@address.com)
SENAYAN Library Automation System
Copyright (C) 2007
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program (GPL License.txt); if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// start the session
session_start();
require '../../../sysconfig.inc.php';
require SENAYAN_BASE_DIR.'admin/default/session_check.inc.php';
require SIMBIO_BASE_DIR.'simbio_GUI/form_maker/simbio_form_table_AJAX.inc.php';
require SIMBIO_BASE_DIR.'simbio_GUI/template_parser/simbio_template_parser.inc.php';
require SIMBIO_BASE_DIR.'simbio_GUI/table/simbio_table.inc.php';
require SIMBIO_BASE_DIR.'simbio_GUI/paging/simbio_paging.inc.php';
require SIMBIO_BASE_DIR.'simbio_DB/datagrid/simbio_dbgrid.inc.php';
require SIMBIO_BASE_DIR.'simbio_DB/simbio_dbop.inc.php';
// privileges checking
$can_read = utility::havePrivilege('circulation', 'r');
$can_write = utility::havePrivilege('circulation', 'w');
if (!$can_read) {
die('<div class="errorBox">'.lang_sys_common_no_privilege.'</div>');
}
/* RECORD OPERATION */
if (isset($_POST['saveData']) AND $can_read AND $can_write) {
$data['member_type_id'] = $_POST['memberTypeID'];
$data['coll_type_id'] = $_POST['collTypeID'];
$data['gmd_id'] = $_POST['gmdID'];
$data['loan_limit'] = trim($_POST['loanLimit']);
$data['loan_periode'] = trim($_POST['loanPeriode']);
$data['reborrow_limit'] = trim($_POST['reborrowLimit']);
$data['fine_each_day'] = trim($_POST['fineEachDay']);
$data['grace_periode'] = trim($_POST['gracePeriode']);
$data['input_date'] = date('Y-m-d');
$data['last_update'] = date('Y-m-d');
// create sql op object
$sql_op = new simbio_dbop($dbs);
if (isset($_POST['updateRecordID'])) {
/* UPDATE RECORD MODE */
// remove input date
unset($data['input_date']);
// filter update record ID
$updateRecordID = (integer)$_POST['updateRecordID'];
// update the data
$update = $sql_op->update('mst_loan_rules', $data, 'loan_rules_id='.$updateRecordID);
if ($update) {
utility::jsAlert(lang_mod_circ_loan_rules_alert_updated_ok);
echo '<script language="Javascript">parent.setContent(\'mainContent\', parent.getPreviousAJAXurl(), \'post\');</script>';
} else { utility::jsAlert(lang_mod_circ_loan_rules_alert_updated_fail."\nDEBUG : ".$sql_op->error); }
exit();
} else {
/* INSERT RECORD MODE */
$insert = $sql_op->insert('mst_loan_rules', $data);
if ($insert) {
utility::jsAlert(lang_mod_circ_loan_rules_alert_add_ok);
echo '<script language="Javascript">parent.setContent(\'mainContent\', \''.$_SERVER['PHP_SELF'].'\', \'post\');</script>';
} else { utility::jsAlert(lang_mod_circ_loan_rules_alert_add_fail."\n".$sql_op->error); }
exit();
}
exit();
} else if (isset($_POST['itemID']) AND !empty($_POST['itemID']) AND isset($_POST['itemAction'])) {
if (!($can_read AND $can_write)) {
die();
}
/* DATA DELETION PROCESS */
// create sql op object
$sql_op = new simbio_dbop($dbs);
$failed_array = array();
$error_num = 0;
if (!is_array($_POST['itemID'])) {
// make an array
$_POST['itemID'] = array((integer)$_POST['itemID']);
}
// loop array
foreach ($_POST['itemID'] as $itemID) {
$itemID = (integer)$itemID;
if (!$sql_op->delete('mst_loan_rules', 'loan_rules_id='.$itemID)) {
$error_num++;
}
}
// error alerting
if ($error_num == 0) {
utility::jsAlert(lang_mod_circ_loan_rules_alert_all_deleted);
echo '<script language="Javascript">parent.setContent(\'mainContent\', \''.$_SERVER['PHP_SELF'].'?'.$_POST['lastQueryStr'].'\', \'post\');</script>';
} else {
utility::jsAlert(lang_mod_circ_loan_rules_alert_not_all_deleted);
echo '<script language="Javascript">parent.setContent(\'mainContent\', \''.$_SERVER['PHP_SELF'].'?'.$_POST['lastQueryStr'].'\', \'post\');</script>';
}
exit();
}
/* RECORD OPERATION END */
/* search form */
?>
<table id="searchForm" cellpadding="5" cellspacing="0">
<tr>
<td class="imageLeft" valign="top" style="background-image: url(<?php echo $sysconf['admin_template']['dir'].'/'.$sysconf['admin_template']['theme'].'/loan_rules.png'; ?>)">
<?php echo strtoupper(lang_mod_circ_loan_rules); ?> - <a href="#" onclick="setContent('mainContent', '<?php echo MODULES_WEB_ROOT_DIR; ?>circulation/loan_rules.php?action=detail', 'get');" class="headerText2"><?php echo lang_mod_circ_loan_rules_add; ?></a>
<a href="#" onclick="setContent('mainContent', '<?php echo MODULES_WEB_ROOT_DIR; ?>circulation/loan_rules.php', 'get');" class="headerText2"><?php echo lang_mod_circ_loan_rules_list; ?></a>
<hr />
<form name="search" action="blank.html" target="blindSubmit" onsubmit="$('doSearch').click();" id="search" method="GET" style="display: inline;"><?php echo lang_sys_common_form_search_field; ?> :
<input type="text" name="keywords" size="30">
<input type="button" id="doSearch" onclick="setContent('mainContent', '<?php echo MODULES_WEB_ROOT_DIR; ?>circulation/loan_rules.php?' + $('search').serialize(), 'post')" value="<?php echo lang_sys_common_form_search; ?>" class="button">
</form>
</td>
</tr>
</table>
<?php
/* search form end */
/* main content */
if (isset($_POST['detail']) OR (isset($_GET['action']) AND $_GET['action'] == 'detail')) {
if (!($can_read AND $can_write)) {
die('<div class="errorBox">'.lang_sys_common_no_privilege.'</div>');
}
/* RECORD FORM */
// try query
$itemID = (integer)isset($_POST['itemID'])?$_POST['itemID']:0;
$rec_q = $dbs->query('SELECT * FROM mst_loan_rules WHERE loan_rules_id='.$itemID);
$rec_d = $rec_q->fetch_assoc();
// create new instance
$form = new simbio_form_table_AJAX('mainForm', $_SERVER['PHP_SELF'].'?'.$_SERVER['QUERY_STRING'], 'post');
$form->submit_button_attr = 'name="saveData" value="'.lang_sys_common_form_save_change.'" class="button"';
// form table attributes
$form->table_attr = 'align="center" id="dataList" style="width: 100%;" cellpadding="5" cellspacing="0"';
$form->table_header_attr = 'class="alterCell" style="font-weight: bold;"';
$form->table_content_attr = 'class="alterCell2"';
// edit mode flag set
if ($rec_q->num_rows > 0) {
$form->edit_mode = true;
// record ID for delete process
// form record id
$form->record_id = $itemID;
// form record title
$form->record_title = 'Loan Rules';
// detail icon
$form->record_detail_icon = SENAYAN_WEB_ROOT_DIR.'admin/'.$sysconf['admin_template']['dir'].'/'.$sysconf['admin_template']['theme'].'/edit_record.png';
// submit button attribute
$form->submit_button_attr = 'name="saveData" value="'.lang_sys_common_form_update.'" class="button"';
}
/* Form Element(s) */
// member type
// get mtype data related to this record from database
$mtype_query = $dbs->query('SELECT member_type_id, member_type_name FROM mst_member_type');
$mtype_options = array();
while ($mtype_data = $mtype_query->fetch_row()) {
$mtype_options[] = array($mtype_data[0], $mtype_data[1]);
}
$form->addSelectList('memberTypeID', lang_mod_circ_loan_rules_field_member_type, $mtype_options, $rec_d['member_type_id'], 'style="width: 50%;"');
// collection type
// get collection type data related to this record from database
$ctype_query = $dbs->query('SELECT coll_type_id, coll_type_name FROM mst_coll_type');
$ctype_options = array();
while ($ctype_data = $ctype_query->fetch_row()) {
$ctype_options[] = array($ctype_data[0], $ctype_data[1]);
}
$ctype_options[] = array('0', 'ALL TYPES');
$form->addSelectList('collTypeID', lang_mod_circ_loan_rules_field_collection_type, $ctype_options, $rec_d['coll_type_id'], 'style="width: 50%;"');
// gmd
// get gmd data related to this record from database
$gmd_query = $dbs->query('SELECT gmd_id, gmd_name FROM mst_gmd');
$gmd_options[] = array(0, 'ALL GMD');
while ($gmd_data = $gmd_query->fetch_row()) {
$gmd_options[] = array($gmd_data[0], $gmd_data[1]);
}
$form->addSelectList('gmdID', lang_mod_circ_loan_rules_field_gmd, $gmd_options, $rec_d['gmd_id'], 'style="width: 50%;"');
// loan limit
$form->addTextField('text', 'loanLimit', lang_mod_circ_loan_rules_field_loan_limit, $rec_d['loan_limit'], 'size="5"');
// loan periode
$form->addTextField('text', 'loanPeriode', lang_mod_circ_loan_rules_field_loan_period, $rec_d['loan_periode'], 'size="5"');
// reborrow limit
$form->addTextField('text', 'reborrowLimit', lang_mod_circ_loan_rules_field_reborrow_limit, $rec_d['reborrow_limit'], 'size="5"');
// fine each day
$form->addTextField('text', 'fineEachDay', lang_mod_circ_loan_rules_field_fines, $rec_d['fine_each_day']);
// overdue grace periode
$form->addTextField('text', 'gracePeriode', lang_mod_circ_field_grace_periode, $rec_d['grace_periode']);
// edit mode messagge
if ($form->edit_mode) {
echo '<div class="infoBox">'.lang_mod_circ_loan_rules_common_edit_info.'<br />'.lang_mod_circ_loan_rules_common_last_update.$rec_d['last_update'].'</div>'."\n";
}
// print out the form object
echo $form->printOut();
} else {
/* LOAN RULES LIST */
// table spec
$table_spec = 'mst_loan_rules AS lr
LEFT JOIN mst_member_type AS mt ON lr.member_type_id=mt.member_type_id
LEFT JOIN mst_coll_type AS ct ON lr.coll_type_id=ct.coll_type_id
LEFT JOIN mst_gmd AS g ON lr.gmd_id=g.gmd_id';
// create datagrid
$datagrid = new simbio_datagrid();
if ($can_read AND $can_write) {
$datagrid->setSQLColumn('lr.loan_rules_id',
'mt.member_type_name AS \''.lang_mod_circ_loan_rules_field_member_type.'\'',
'ct.coll_type_name AS \''.lang_mod_circ_loan_rules_field_collection_type.'\'',
'g.gmd_name AS \''.lang_mod_circ_loan_rules_field_gmd.'\'',
'lr.loan_limit AS \''.lang_mod_circ_loan_rules_field_loan_limit.'\'',
'lr.loan_periode AS \''.lang_mod_circ_loan_rules_field_loan_period.'\'',
'lr.last_update AS \''.lang_mod_circ_loan_rules_common_last_update.'\'');
} else {
$datagrid->setSQLColumn('mt.member_type_name AS \''.lang_mod_circ_loan_rules_field_member_type.'\'',
'ct.coll_type_name AS \''.lang_mod_circ_loan_rules_field_collection_type.'\'',
'g.gmd_name AS \''.lang_mod_circ_loan_rules_field_gmd.'\'',
'lr.loan_limit AS \''.lang_mod_circ_loan_rules_field_loan_limit.'\'',
'lr.loan_periode AS \''.lang_mod_circ_loan_rules_field_loan_period.'\'',
'lr.last_update AS \''.lang_mod_circ_loan_rules_common_last_update.'\'');
}
$datagrid->setSQLorder('mt.member_type_name ASC');
// is there any search
if (isset($_GET['keywords']) AND $_GET['keywords']) {
$keywords = $dbs->escape_string($_GET['keywords']);
$datagrid->setSQLCriteria("mt.member_type_name LIKE '%$keywords%'");
}
// 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" style="width: 100%;" cellpadding="5" cellspacing="0"';
$datagrid->table_header_attr = 'class="dataListHeader" style="font-weight: bold;"';
// set delete proccess URL
$datagrid->chbox_form_URL = $_SERVER['PHP_SELF'];
// put the result into variables
$datagrid_result = $datagrid->createDataGrid($dbs, $table_spec, 20, ($can_read AND $can_write));
if (isset($_GET['keywords']) AND $_GET['keywords']) {
$msg = str_replace('{result->num_rows}', $datagrid->num_rows, lang_sys_common_search_result_info);
echo '<div class="infoBox">'.$msg.' : "'.$_GET['keywords'].'"</div>';
}
echo $datagrid_result;
}
/* main content end */
?>