Hezčí zámky
authorThomas Mudrunka <tomas@mudrunka.cz>
Fri, 31 May 2013 07:06:19 +0000 (09:06 +0200)
committerThomas Mudrunka <tomas@mudrunka.cz>
Fri, 31 May 2013 07:06:19 +0000 (09:06 +0200)
assistants/lock.inc.php
index.php
locale/cs/messages.inc.php

index ccb9302214020fa406e777da7790f115544dcc39..7f101a27d9da9f3745014500e25e56e5c0793680 100644 (file)
@@ -9,7 +9,7 @@ switch($SUBPATH[0]) {
                                array('lock','lock','submit')
                        ));
                } else {
-                       echo $this->html->render_item_table($result);
+                       echo $this->html->render_item_table($result, 'lock');
                        echo $this->html->form("$URL/2", 'POST', array(
                                array('unlock','unlock','submit')
                        ));
index d6469e5149f088b7f26fc6a2a3970a8d85ca65a7..36c59f153fab4ef6b3c69b13768817ba5109417b 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -471,6 +471,7 @@ EOF;
                        'model' => array('barcode_name'),
                        'barcode' => array('model_price_in','model_price_out','model_reserve','producer_name','producer_note','model_eshop_hide','category_name','model_countable','model_descript'),
                        'item' => array('model_descript','model_price_in','model_price_out','barcode_name','model_barcode','model_countable','model_reserve','model_eshop_hide','room_descript','room_author','producer_name','producer_note','vendor_note','location_author','location_gps','location_description'),
+                       'lock' => array('lock_author'),
                        'transaction' => array('transaction_author')
                );
                //print_r($table); die();
@@ -1053,7 +1054,7 @@ class Sklad_UI {
        function check_locks() {
                $result = $this->db->safe_query_fetch("SELECT * FROM `lock`;");
                if(!empty($result)) {
-                       echo T('There are locks:').' '.$this->html->render_item_table($result);
+                       echo T('There are locks:').' '.$this->html->render_item_table($result, 'lock');
                        $this->post_redirect_get('', 'There are locks!', true);
                }
        }
@@ -1141,7 +1142,7 @@ class Sklad_UI {
                if(!isset($PATH_CHUNKS[1])) $PATH_CHUNKS[1]='';
                if($_SERVER['REQUEST_METHOD'] != 'POST' && $PATH_CHUNKS[1]!='barcodeimg' && $PATH_CHUNKS[1]!='api') { //TODO: tyhle podminky naznacujou, ze je v navrhu nejaka drobna nedomyslenost...
                        $result = $this->db->safe_query_fetch("SELECT * FROM `lock`;");
-                       $headerhtml = !empty($result) ? T('There are locks:').' '.$this->html->render_item_table($result) : '';
+                       $headerhtml = !empty($result) ? T('There are locks:').' '.$this->html->render_item_table($result, 'lock') : '';
                        echo $this->html->header($PATH_INFO,$this->db->auth->get_user(),$headerhtml);
                }
                switch($PATH_CHUNKS[1]) { //TODO: Move some branches to plugins if possible
index 8fa292e1047bcf5cf7d93cc09a5fdbb89fcbebac..de1d4b250b63c3325c86720ca5f5b7b9816dcb48 100644 (file)
@@ -10,6 +10,7 @@ $LOCALE_MESSAGES = array(
                'SAFE INCLUDE: Fuckfound.' => '[Inkluze] Kryptohovno nenalezeno!',
                'Record not found!' => 'Položka nenalezena!',
                'holy primordial emptiness is all you can find here...' => 'věz, že zde nenajdeš více než nekonečnou laskavost prapůvodní prázdnoty...',
+               'There are locks' => 'Sklad je zamčen',
 
                'item_id' => '#',
                'item_serial' => 'Sériové č.',
@@ -57,6 +58,9 @@ $LOCALE_MESSAGES = array(
                'status_name' => 'Stav',
                'category_name' => 'Kategorie',
 
+               'lock_name' => 'Zámek',
+               'lock_author_backend' => 'Odpovědný',
+
                'transaction_id' => 'Transakce',
                'transaction_time' => 'Čas',
                'transaction_from' => 'Zdrojový účet',
This page took 0.238423 seconds and 4 git commands to generate.