From: Thomas Mudrunka Date: Tue, 9 Aug 2011 02:38:04 +0000 (+0200) Subject: Pridan assistant s jedinym okynkem pro naskladneni dle caroveho kodu X-Git-Url: http://git.harvie.cz/?a=commitdiff_plain;h=16261142aaa2e3477b476d84c662a14bb3d1fa82;p=mirrors%2FSokoMan.git Pridan assistant s jedinym okynkem pro naskladneni dle caroveho kodu --- diff --git a/assistants/store.inc.php b/assistants/store.inc.php new file mode 100644 index 0000000..8af2da6 --- /dev/null +++ b/assistants/store.inc.php @@ -0,0 +1,28 @@ + +
+ model_barcode: + +
+db->map_unique('model_barcode', $_GET['barcode'], 'model_id', 'model'); + $columns = $this->db->get_columns('item'); + $selectbox = $this->db->columns_get_selectbox($columns, 'item'); + + //print_r(array('
', $selectbox));
+		//foreach($selectbox['model_id'] as $id => $name) if($id != $model_id) unset($selectbox['model_id'][$id]);
+		$current = array(array(
+			'model_id' => $model_id,
+			'item_quantity' => 1,
+			'status_id' => 1
+		));
+
+		$action = $_SERVER['SCRIPT_NAME'].'/item/new';
+    echo $this->html->render_insert_form('item', $columns, $selectbox, $current, false, $action);
+		break;
+}
diff --git a/index.php b/index.php
index f1a3751..ce099b1 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 = ''; @@ -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);