X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=index.php;h=9900ba75c42afc1decab347071fc8cb96bc7c945;hb=5895162b21c18b47ffff966184e8f2917095e6dd;hp=f1a3751405fbdc35ec3b476820f0bb56ac30b123;hpb=b4dcae05cf03872a232a9c36dafbb69d3dcf9b6f;p=mirrors%2FSokoMan.git diff --git a/index.php b/index.php index f1a3751..9900ba7 100755 --- a/index.php +++ b/index.php @@ -243,7 +243,7 @@ EOF; return $this->table($table); } - function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $multi_insert=true) { + function render_insert_form($class, $columns, $selectbox=array(), $current=false, $hidecols=false, $action=false, $multi_insert=true) { //echo('
'); print_r($selectbox);
 		//echo('
'); print_r($current);
 		$update = false;
@@ -254,13 +254,14 @@ EOF;
 
 		if(!is_array($hidecols)) $hidecols = array('item_author', 'item_valid_from', 'item_valid_till'); //TODO Autodetect
 
-		$html='
'; + $action = $action ? " action='$action'" : false; + $html=""; if($multi_insert) $html.='
'; //$html.=$this->input('table', $class, 'hidden'); foreach($columns as $column) { $html.=$class.':'.$column['Field'].': '; $name="values[$class][".$column['Field'].'][]'; - $val = $update ? $current[$column['Field']] : false; + $val = $update && isset($current[$column['Field']]) ? $current[$column['Field']] : false; switch(true) { case (preg_match('/auto_increment/', $column['Extra']) || in_array($column['Field'], $hidecols)): if(!$val) $val = ''; @@ -341,13 +342,13 @@ class Sklad_DB extends PDO { if($search) { $search = $this->quote($search); if(!isset($search_fields[$class])) $this->post_redirect_get($class, "Ve tride $class zatim vyhledavat nemozno :-("); - $search = ''; - foreach($search_fields[$class] as $column) $search .= "OR $column REGEXP $search "; - $where[] = "FALSE $search"; + $sql_search = ''; + foreach($search_fields[$class] as $column) $sql_search .= "OR $column REGEXP $search "; + $where[] = "FALSE $sql_search"; } elseif($id) $where[] = "$class$suffix_id = $id"; if(!$history && $this->contains_history($class)) $where[] = $class.'_valid_till=0'; - if($where) $sql .= 'WHERE '.implode(' AND ', $where)."\n"; + if($where) $sql .= 'WHERE ('.implode(') AND (', $where).")\n"; //ORDER if(!$order) $order = $class.$suffix_id; if($this->contains_history($class)) $order .= ",${class}_valid_from DESC"; @@ -406,6 +407,14 @@ class Sklad_DB extends PDO { return array_filter($selectbox, 'ksort'); } + function map_unique($key, $value, $select, $table) { //TODO: Guess $select and $table if not passed + $history = $this->contains_history($table) ? " AND ${table}_valid_till=0" : ''; + $value=$this->quote($value); + $sql = "SELECT $select FROM $table WHERE $key=$value$history LIMIT 1;"; //TODO use build_query_select()!!! + $result = $this->safe_query($sql)->fetchAll(PDO::FETCH_ASSOC); + if(isset($result[0][$select])) return $result[0][$select]; else die(trigger_error('Položka nenalezena!')); //TODO post_redirect_get... + } + function contains_history($table) { $history_tables = array('item'); //TODO Autodetect return in_array($table, $history_tables);