X-Git-Url: https://git.harvie.cz/?a=blobdiff_plain;f=index.php;h=475c0beebf2743235c7f8eba155442b679cf53a1;hb=8f451ba7e88be8c166664dd2159a1bb726c1c851;hp=a131b22c886159f6f73e5d543a649793dcb6c4d5;hpb=8b9a8edbddb77aae7af7988ad79e2e65d47f0242;p=mirrors%2FSokoMan.git diff --git a/index.php b/index.php index a131b22..475c0be 100755 --- a/index.php +++ b/index.php @@ -877,7 +877,7 @@ class Sklad_UI { return $this->html->render_insert_form($class, $columns, $selectbox, $current, false, false, $multi_insert); } - function render_single_record_details($class, $id) { + function render_single_record_details($class, $id, $barcode=true) { $id_next = $id + 1; $id_prev = $id - 1 > 0 ? $id - 1 : 0; $get = $_SERVER['QUERY_STRING'] != '' ? '?'.$_SERVER['QUERY_STRING'] : ''; @@ -885,8 +885,8 @@ class Sklad_UI { $html.= $this->html->link('<<', "$class/$id_prev/"); $html.= '-'; $html.= $this->html->link('>>', "$class/$id_next/"); - $html.= '
'; - $html.=''.$this->html->render_barcode(BARCODE_PREFIX.strtoupper("$class/$id")).''; + $html.= '   '; + $barcode && $html.=''.$this->html->render_barcode(BARCODE_PREFIX.strtoupper("$class/$id")).''; $html.= $this->html->link('edit', "$class/$id/edit/"); if($this->db->contains_history($class)) $html.= ' ][ '.$this->html->link('history', "$class/$id/history/"); return $html; @@ -900,15 +900,15 @@ class Sklad_UI { $html.= $this->html->link('<<', "$class/$id/$limit/$offset_prev/$get"); $html.= '-'; $html.= $this->html->link('>>', "$class/$id/$limit/$offset_next/$get"); - $html.= '
'; + $html.= '   '; $html.= $this->html->link('new', "$class/new/$get"); return $html; } - function render_listing_extensions($class, $id, $limit, $offset, $edit=false) { + function render_listing_extensions($class, $id, $limit, $offset, $edit=false, $barcode=true) { $html=''; if(is_numeric($id)) { - $html.=$this->render_single_record_details($class, $id); + $html.=$this->render_single_record_details($class, $id, $barcode); } else { $html.=$this->render_listing_navigation($class, '*', $limit, $offset); } @@ -1088,6 +1088,7 @@ class Sklad_UI { $limit = is_numeric($PATH_CHUNKS[3]) ? (int) $PATH_CHUNKS[3] : FRONTEND_LISTING_LIMIT; $offset = isset($PATH_CHUNKS[4]) ? (int) $PATH_CHUNKS[4] : 0; $where = @is_array($_GET['where']) ? $_GET['where'] : false; + echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit, false); echo $this->render_items($class, $id, $limit, $offset, $where, $search, $history); echo $this->render_listing_extensions($class, $id, $limit, $offset, $edit); //print_r(array("
",$_SERVER));