Skip to content

Commit

Permalink
Update uid in biblio and adding uid support in item table.
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrowicaksono committed Jun 15, 2016
1 parent 401a35f commit d4d32e9
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions admin/modules/bibliography/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@
/* UPDATE RECORD MODE */
// remove input date
unset($data['input_date']);
unset($data['uid']);
// filter update record ID
$updateRecordID = (integer)$_POST['updateRecordID'];
// update data
Expand Down
2 changes: 2 additions & 0 deletions admin/modules/bibliography/item.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,15 @@
$data['price'] = preg_replace('@[.,\-a-z ]@i', '', strip_tags($_POST['price']));
$data['input_date'] = date('Y-m-d H:i:s');
$data['last_update'] = date('Y-m-d H:i:s');
$data['uid'] = $_SESSION['uid'];

// create sql op object
$sql_op = new simbio_dbop($dbs);
if (isset($_POST['updateRecordID'])) {
/* UPDATE RECORD MODE */
// remove input date
unset($data['input_date']);
unset($data['uid']);
// filter update record ID
$updateRecordID = (integer)$_POST['updateRecordID'];
// update the data
Expand Down
2 changes: 2 additions & 0 deletions install/senayan.sql
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,11 @@ CREATE TABLE IF NOT EXISTS `item` (
`invoice_date` date default NULL,
`input_date` datetime NOT NULL,
`last_update` datetime default NULL,
`uid` int(11) default NULL,
PRIMARY KEY (`item_id`),
UNIQUE KEY `item_code` (`item_code`),
KEY `item_references_idx` (`coll_type_id`,`location_id`,`item_status_id`),
KEY `uid` (`uid`),
KEY `biblio_id_idx` (`biblio_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

Expand Down
2 changes: 2 additions & 0 deletions install/senayan.sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,11 @@
`invoice_date` date default NULL,
`input_date` datetime NOT NULL,
`last_update` datetime default NULL,
`uid` int(11) default NULL,
PRIMARY KEY (`item_id`),
UNIQUE KEY `item_code` (`item_code`),
KEY `item_references_idx` (`coll_type_id`,`location_id`,`item_status_id`),
KEY `uid` (`uid`),
KEY `biblio_id_idx` (`biblio_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;";

Expand Down
2 changes: 2 additions & 0 deletions upgrade/upgrade_slims7_cendana_x.sql
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
ALTER TABLE `biblio` ADD `uid` INT( 11 ) NULL DEFAULT NULL ,
ADD INDEX ( `uid` ) ;
ALTER TABLE `item` ADD `uid` INT( 11 ) NULL DEFAULT NULL ,
ADD INDEX ( `uid` ) ;

0 comments on commit d4d32e9

Please sign in to comment.