Changeset 502 for trunk/form_classes.php
- Timestamp:
- Mar 12, 2013, 10:58:10 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/form_classes.php
r501 r502 19 19 { 20 20 $FormManager->Classes = array( 21 'ImportBankFile' => array(22 'Title' => 'Import souborů s platbami',23 'Table' => 'FinanceBank',24 'SubmitText' => 'Načíst',25 'Items' => array(26 'BankAccount' => array('Type' => 'TBankAccount', 'Caption' => 'Bankovní účet', 'Default' => ''),27 'File' => array('Type' => 'File', 'Caption' => 'Soubor', 'Default' => ''),28 )29 ),30 21 'FinanceBank' => array( 31 22 'Title' => 'Banky', … … 493 484 'TimeCreate' => array('Type' => 'Date', 'Caption' => 'Čas vytvoření', 'Default' => ''), 494 485 'TimeEnd' => array('Type' => 'Date', 'Caption' => 'Čas zrušení', 'Default' => ''), 486 'Currency' => array('Type' => 'TCurrency', 'Caption' => 'Měna', 'Default' => ''), 487 'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno / token', 'Default' => ''), 488 'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => ''), 495 489 'Operations' => array('Type' => 'TFinanceOperationListAccount', 'Caption' => 'Operace', 'Default' => ''), 490 ), 491 'ItemActions' => array( 492 array('Caption' => 'Import plateb z banky', 'URL' => '/finance/import-api/?'), 493 array('Caption' => 'Import plateb ze souboru', 'URL' => '/finance/import-soubor/?'), 496 494 ), 497 495 ), … … 931 929 'Table' => 'FinanceBankAccount', 932 930 'Id' => 'Id', 933 'Name' => 'CONCAT(Comment, " (", Number, ")")', 931 'Name' => 'CONCAT(`Comment`, " (", `Number`, "/", '. 932 '(SELECT `FinanceBank`.`Code` FROM `FinanceBank` WHERE `FinanceBank`.`Id`=`FinanceBankAccount`.`Bank`), ")")', 934 933 'Filter' => '1', 935 934 ),
Note:
See TracChangeset
for help on using the changeset viewer.