Changeset 604
- Timestamp:
- Dec 8, 2013, 1:27:41 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Application/FormClasses.php
r600 r604 101 101 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 102 102 'MonthCount' => array('Type' => 'Integer', 'Caption' => 'Počet měsíců', 'Default' => '0', 'Suffix' => 'měsíců'), 103 'Customers' => array('Type' => 'TCustomerListBillingPeriod', 'Caption' => 'Zákazníci', 'Default' => ''), 103 104 ), 104 105 ), … … 701 702 'Filter' => '1', 702 703 ), 704 'TFinanceOperationListTreasury' => array( 705 'Type' => 'ManyToOne', 706 'Table' => 'FinanceOperation', 707 'Id' => 'Id', 708 'Ref' => 'Treasury', 709 'Filter' => '1', 710 ), 703 711 'TActionListIcon' => array( 704 712 'Type' => 'ManyToOne', … … 720 728 'Id' => 'Id', 721 729 'Ref' => 'Esemble', 730 'Filter' => '1', 731 ), 732 'TCustomerListBillingPeriod' => array( 733 'Type' => 'ManyToOne', 734 'Table' => 'Member', 735 'Id' => 'Id', 736 'Ref' => 'BillingPeriod', 737 'Filter' => '1', 738 ), 739 'TTVListCategory' => array( 740 'Type' => 'ManyToOne', 741 'Table' => 'TV', 742 'Id' => 'Id', 743 'Ref' => 'Category', 722 744 'Filter' => '1', 723 745 ), -
trunk/Modules/Finance/Finance.php
r586 r604 410 410 'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => '(SELECT SUM(`FinanceOperation`.`Value`) FROM `FinanceOperation` '. 411 411 'WHERE `FinanceOperation`.`Treasury`=#Id)'), 412 'Operations' => array('Type' => 'TFinanceOperationListTreasury', 'Caption' => 'Operace', 'Default' => ''), 412 413 ), 413 414 )); -
trunk/Modules/TV/TV.php
r586 r604 151 151 'Items' => array( 152 152 'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''), 153 'Channels' => array('Type' => 'TTVListCategory', 'Caption' => 'Kanály', 'Default' => ''), 153 154 ), 154 155 ));
Note:
See TracChangeset
for help on using the changeset viewer.