From: Joey Schulze Date: Sun, 28 Feb 2010 15:50:36 +0000 (+0100) Subject: Add Telefon, permit NULL values X-Git-Tag: 2010-06-02_customer~171 X-Git-Url: https://git.infodrom.org/?p=misc%2Fkostenrechnung;a=commitdiff_plain;h=d1f218a652be4f22beecfc7d7228f445210a62da Add Telefon, permit NULL values --- diff --git a/masks/personal.php b/masks/personal.php index 9ef3cbd..2b343a3 100644 --- a/masks/personal.php +++ b/masks/personal.php @@ -31,6 +31,11 @@ $mask = array( 'name' => 'Wohnort', 'width' => 100, ), + 'telefon' => array( + 'name' => 'Telefon', + 'width' => 100, + 'visible' => false, + ), 'persstdsatz' => array( 'name' => 'Satz', 'type' => 'number', @@ -99,16 +104,25 @@ $mask = array( 'name' => 'PLZ', 'type' => 'number', 'size' => 6, + 'null' => true, ), 'ort' => array( 'name' => 'Wohnort', 'type' => 'text', 'size' => 24, + 'null' => true, + ), + 'telefon' => array( + 'name' => 'Telefon', + 'type' => 'text', + 'size' => 24, + 'null' => true, ), 'persstdsatz' => array( 'name' => 'Stundensatz', 'type' => 'number', 'size' => 10, + 'null' => true, ), 'jahresakkord' => array( 'name' => 'Jahresakkord',