From: Joey Schulze Date: Wed, 20 Jan 2010 14:09:14 +0000 (+0100) Subject: Hide one column, provide infos in details box X-Git-Tag: 2010-06-02_customer~255 X-Git-Url: https://git.infodrom.org/?p=misc%2Fkostenrechnung;a=commitdiff_plain;h=0ee16774c52e434df6d9418f377670c28cbb0f8d;hp=49583ea96c9185ee180e93439ae2b1decf1ce73c Hide one column, provide infos in details box --- diff --git a/masks/personal.php b/masks/personal.php index 33a7fc6..d01d38f 100644 --- a/masks/personal.php +++ b/masks/personal.php @@ -10,11 +10,11 @@ $mask = array( ), 'personal' => array( 'name' => 'Name', - 'width' => 100, + 'width' => 130, ), 'vorname' => array( 'name' => 'Vorname', - 'width' => 100, + 'width' => 130, ), 'persstdsatz' => array( 'name' => 'Satz', @@ -30,11 +30,36 @@ $mask = array( ), 'akkordzuschlag' => array( 'name' => 'Zuschlag', + 'visible' => false, 'type' => 'number', 'specs' => "decPlaces: 2, ClassName: 'alignright'", - 'width' => 60, + 'width' => 70, ), ), + 'details' => array( + 'title' => 'Details', + 'subtitle' => 'Informationen zur Person', + 'list' => array( + 'personal' => array( + 'name' => 'Name', + ), + 'vorname' => array( + 'name' => 'Vorname', + ), + 'persstdsatz' => array( + 'name' => 'Stundensatz', + 'format' => '%.2f', + ), + 'jahresakkord' => array( + 'name' => 'Jahresakkord', + 'format' => '%.2f', + ), + 'akkordzuschlag' => array( + 'name' => 'Akkordzuschlag', + 'format' => '%.2f', + ), + ), + ), 'rows' => 20, );