Changeset 499 for trunk/form_classes.php
- Timestamp:
- Mar 3, 2013, 11:27:30 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r498 r499 17 17 18 18 $FormClasses = array( 19 'FinanceBankImport' => array( 20 'Title' => 'Import plateb z účtu', 21 'Table' => 'FinanceBankImport', 22 'Items' => array( 23 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet'), 24 'Time' => array('Type' => 'Date', 'Caption' => 'Čas', 'Default' => ''), 25 'Identification' => array('Type' => 'String', 'Caption' => 'Kód operace', 'Default' => ''), 26 'AccountNumber' => array('Type' => 'String', 'Caption' => 'Číslo účtu', 'Default' => ''), 27 'VariableSymbol' => array('Type' => 'String', 'Caption' => 'Variabilní symbol', 'Default' => ''), 28 'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''), 29 'SpecificSymbol' => array('Type' => 'String', 'Caption' => 'Specifický symbol', 'Default' => ''), 30 'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => ''), 31 'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''), 32 'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''), 33 'OffsetAccountName' => array('Type' => 'String', 'Caption' => 'Jméno protiúčtu', 'Default' => ''), 34 'FinanceOperation' => array('Type' => 'TFinanceOperation', 'Caption' => 'Přiřazená operace', 'Default' => '', 'Null' => true), 35 ), 36 ), 37 'Currency' => array( 38 'Title' => 'Měny', 39 'Table' => 'Currency', 40 'Items' => array( 41 'Code' => array('Type' => 'String', 'Caption' => 'Kód'), 42 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 43 'Symbol' => array('Type' => 'String', 'Caption' => 'Symbol', 'Default' => ''), 44 ), 45 ), 19 46 'EmailQueue' => array( 20 47 'Title' => 'Fronta e-mailů', … … 1076 1103 'Filter' => '1', 1077 1104 ), 1105 'TCurrency' => array( 1106 'Type' => 'Reference', 1107 'Table' => 'Currency', 1108 'Id' => 'Id', 1109 'Name' => 'Code', 1110 'Filter' => '1', 1111 ), 1078 1112 'TFinanceInvoice' => array( 1079 1113 'Type' => 'Reference', 1080 1114 'Table' => 'FinanceInvoice', 1115 'Id' => 'Id', 1116 'Name' => 'BillCode', 1117 'Filter' => '1', 1118 ), 1119 'TFinanceOperation' => array( 1120 'Type' => 'Reference', 1121 'Table' => 'FinanceOperation', 1081 1122 'Id' => 'Id', 1082 1123 'Name' => 'BillCode',
Note:
See TracChangeset
for help on using the changeset viewer.