Changeset 183 for trunk/form_classes.php
- Timestamp:
- Mar 26, 2009, 8:51:40 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r181 r183 54 54 'Name' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => ''), 55 55 'Password' => array('Type' => 'Password', 'Caption' => 'Heslo', 'Default' => ''), 56 'Nick' => array('Type' => 'String', 'Caption' => 'Zobrazované jméno', 'Default' => ''), 56 57 'FirstName' => array('Type' => 'String', 'Caption' => 'Křestní jméno', 'Default' => ''), 57 58 'SecondName' => array('Type' => 'String', 'Caption' => 'Přijmení jméno', 'Default' => ''), … … 71 72 'FirstName' => array('Type' => 'String', 'Caption' => 'Křestní jméno', 'Default' => ''), 72 73 'SecondName' => array('Type' => 'String', 'Caption' => 'Přijmení jméno', 'Default' => ''), 74 ), 75 ), 76 'MemberOptions' => array( 77 'Title' => 'Nastavení domácnosti', 78 'Table' => '(SELECT Member.Id, Member.InternetTariffNextMonth, Member.FamilyMemberCount, Subject.Name, Subject.AddressStreet, Subject.AddressTown, Subject.AddressPSC, Subject.IC, Subject.DIC FROM Member JOIN Subject ON Subject.Id = Member.Subject)', 79 'Items' => array( 80 'Name' => array('Type' => 'String', 'Caption' => 'Fakturační jméno', 'Default' => ''), 81 'AddressStreet' => array('Type' => 'String', 'Caption' => 'Ulice', 'Default' => 'Zděchov'), 82 'AddressTown' => array('Type' => 'String', 'Caption' => 'Město', 'Default' => 'Zděchov'), 83 'AddressPSC' => array('Type' => 'String', 'Caption' => 'PSČ', 'Default' => '75607'), 84 'IC' => array('Type' => 'String', 'Caption' => 'IČ', 'Default' => ''), 85 'DIC' => array('Type' => 'String', 'Caption' => 'DIČ', 'Default' => ''), 86 'FamilyMemberCount' => array('Type' => 'Integer', 'Caption' => 'Počet osob v domácnosti', 'Default' => ''), 87 'BillingPeriodNext' => array('Type' => 'TFinanceBillingPeriod', 'Caption' => 'Požadované fakturované období', 'Default' => ''), 88 'InternetTariffNextMonth' => array('Type' => 'TFinanceTariff', 'Caption' => 'Tarif internetu od dalšího období', 'Default' => 2), 73 89 ), 74 90 ), … … 120 136 'States' => array('Zakoupeno', 'Prodáno', 'Zařazeno do použití', 'Vyřazeno z použití', 'Zasláno do reklamace', 'Přijato z reklamace'), 121 137 ), 138 'TFinanceTariff' => array( 139 'Type' => 'Enumeration', 140 'States' => array(6 => 'Zdarma', 0 => 'Pomalejší', 1 => 'Pomalý', 2 => 'Střední', 3 => 'Rychlý', 4 => 'Rychlejší'), 141 ), 142 'TFinanceBillingPeriod' => array( 143 'Type' => 'Enumeration', 144 'States' => array(2 => 'Měsíčně', 3 => 'Čtvrtletně', 4 => 'Pololetně', 5 => 'Ročně'), 145 ), 122 146 'TFinanceSubject' => array( 123 147 'Type' => 'Reference',
Note:
See TracChangeset
for help on using the changeset viewer.