Changeset 538 for trunk/Modules/FinanceBankAPI/FinanceBankAPI.php
- Timestamp:
- May 18, 2013, 8:21:50 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/FinanceBankAPI/FinanceBankAPI.php
r521 r538 29 29 { 30 30 parent::Start(); 31 $ FormClass =array(31 $this->System->FormManager->RegisterClass('ImportBankFile', array( 32 32 'Title' => 'Import souborů s platbami', 33 33 'Table' => 'FinanceBank', … … 37 37 'File' => array('Type' => 'File', 'Caption' => 'Soubor', 'Default' => ''), 38 38 ), 39 ); 40 $this->System->FormManager->RegisterClass('ImportBankFile', $FormClass); 39 )); 40 $this->System->FormManager->RegisterClass('FinanceBankImport', array( 41 'Title' => 'Import plateb z účtu', 42 'Table' => 'FinanceBankImport', 43 'Items' => array( 44 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Účet', 'Default' => ''), 45 'Time' => array('Type' => 'Date', 'Caption' => 'Čas', 'Default' => ''), 46 'Identification' => array('Type' => 'String', 'Caption' => 'Kód operace', 'Default' => ''), 47 'AccountNumber' => array('Type' => 'String', 'Caption' => 'Číslo účtu', 'Default' => ''), 48 'VariableSymbol' => array('Type' => 'String', 'Caption' => 'Variabilní symbol', 'Default' => ''), 49 'ConstantSymbol' => array('Type' => 'String', 'Caption' => 'Konstantní symbol', 'Default' => ''), 50 'SpecificSymbol' => array('Type' => 'String', 'Caption' => 'Specifický symbol', 'Default' => ''), 51 'Value' => array('Type' => 'Float', 'Caption' => 'Částka', 'Default' => ''), 52 'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''), 53 'Description' => array('Type' => 'String', 'Caption' => 'Popis operace', 'Default' => ''), 54 'OffsetAccountName' => array('Type' => 'String', 'Caption' => 'Jméno protiúčtu', 'Default' => ''), 55 'FinanceOperation' => array('Type' => 'TFinanceOperation', 'Caption' => 'Přiřazená operace', 'Default' => '', 'Null' => true), 56 ), 57 )); 58 41 59 $this->System->RegisterPage(array('finance', 'import-api'), 'PageImportAPI'); 42 60 $this->System->RegisterPage(array('finance', 'import-soubor'), 'PageImportFile');
Note:
See TracChangeset
for help on using the changeset viewer.