Changeset 500 for trunk/form_classes.php
- Timestamp:
- Mar 10, 2013, 10:08:23 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r499 r500 16 16 */ 17 17 18 $FormClasses = array( 18 $FormClasses = array( 19 'ImportBankFile' => array( 20 'Title' => 'Import souborů s platbami', 21 'Table' => 'FinanceBank', 22 'SubmitText' => 'Načíst', 23 'Items' => array( 24 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Bankovní účet', 'Default' => ''), 25 'File' => array('Type' => 'File', 'Caption' => 'Soubor', 'Default' => ''), 26 ) 27 ), 28 'FinanceBank' => array( 29 'Title' => 'Banky', 30 'Table' => 'FinanceBank', 31 'Items' => array( 32 'Name' => array('Type' => 'String', 'Caption' => 'Název', 'Default' => ''), 33 'Code' => array('Type' => 'String', 'Caption' => 'Český kód', 'Default' => ''), 34 'BIC' => array('Type' => 'String', 'Caption' => 'Kód BIC', 'Default' => ''), 35 'Country' => array('Type' => 'TCountry', 'Caption' => 'Země', 'Default' => ''), 36 ), 37 ), 19 38 'FinanceBankImport' => array( 20 39 'Title' => 'Import plateb z účtu', 21 40 'Table' => 'FinanceBankImport', 22 41 'Items' => array( 23 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet' ),42 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet', 'Default' => ''), 24 43 'Time' => array('Type' => 'Date', 'Caption' => 'Čas', 'Default' => ''), 25 44 'Identification' => array('Type' => 'String', 'Caption' => 'Kód operace', 'Default' => ''), … … 469 488 'Comment' => array('Type' => 'String', 'Caption' => 'Komentář', 'Default' => ''), 470 489 'Number' => array('Type' => 'String', 'Caption' => 'Číslo', 'Default' => ''), 490 'Bank' => array('Type' => 'TFinanceBank', 'Caption' => 'Banka', 'Default' => ''), 471 491 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Čas vytvoření', 'Default' => ''), 472 492 'TimeEnd' => array('Type' => 'Date', 'Caption' => 'Čas zrušení', 'Default' => ''), … … 909 929 'Table' => 'FinanceBankAccount', 910 930 'Id' => 'Id', 911 'Name' => 'C omment',931 'Name' => 'CONCAT(Comment, " (", Number, ")")', 912 932 'Filter' => '1', 913 933 ), … … 1038 1058 'Id' => 'Id', 1039 1059 'Name' => 'Name', 1060 'Filter' => '1', 1061 ), 1062 'TFinanceBank' => array( 1063 'Type' => 'Reference', 1064 'Table' => 'FinanceBank', 1065 'Id' => 'Id', 1066 'Name' => 'CONCAT(Name, " (", Code, ")")', 1040 1067 'Filter' => '1', 1041 1068 ),
Note:
See TracChangeset
for help on using the changeset viewer.