Changeset 727 for trunk/Modules/Subject/Subject.php
- Timestamp:
- Jan 6, 2015, 12:02:36 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Subject/Subject.php
r720 r727 28 28 'AddressCountry' => array('Type' => 'TCountry', 'Caption' => 'Země', 'Default' => ''), 29 29 'IC' => array('Type' => 'String', 'Caption' => 'IČ', 'Default' => ''), 30 'DIC' => array('Type' => 'String', 'Caption' => 'DIČ', 'Default' => ''), 30 'DIC' => array('Type' => 'String', 'Caption' => 'DIČ', 'Default' => ''), 31 31 'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '', 'Null' => true), 32 32 'WWW' => array('Type' => 'Hyperlink', 'Caption' => 'WWW', 'Default' => ''), … … 39 39 'WHERE `FinanceOperation`.`Subject`=#Id), 0) - IFNULL((SELECT SUM(`FinanceInvoice`.`Value` * `FinanceInvoice`.`Direction`) FROM `FinanceInvoice` '. 40 40 'WHERE `FinanceInvoice`.`Subject`=#Id), 0)'), 41 'BankAccounts' => array('Type' => 'TFinanceBankAccountListSubject', 'Caption' => 'Bankovní účety', 'Default' => ''), 41 42 ), 43 )); 44 $this->System->FormManager->RegisterFormType('TFinanceBankAccountListSubject', array( 45 'Type' => 'ManyToOne', 46 'Table' => 'FinanceBankAccount', 47 'Id' => 'Id', 48 'Ref' => 'Subject', 49 'Filter' => '1', 42 50 )); 43 51 $this->System->FormManager->RegisterClass('SubjectReport', array(
Note:
See TracChangeset
for help on using the changeset viewer.