Changeset 604


Ignore:
Timestamp:
Dec 8, 2013, 1:27:41 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Přidružené TV kanály u kategorie kanálů.
  • Přidáno: Přidružené finanční operace u pokladen.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r600 r604  
    101101      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
    102102      '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' => ''),
    103104    ),
    104105  ),
     
    701702    'Filter' => '1',
    702703  ),
     704  'TFinanceOperationListTreasury' => array(
     705    'Type' => 'ManyToOne',
     706    'Table' => 'FinanceOperation',
     707    'Id' => 'Id',
     708    'Ref' => 'Treasury',
     709    'Filter' => '1',
     710  ),
    703711  'TActionListIcon' => array(
    704712    'Type' => 'ManyToOne',
     
    720728    'Id' => 'Id',
    721729    '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',
    722744    'Filter' => '1',
    723745  ),
  • trunk/Modules/Finance/Finance.php

    r586 r604  
    410410          'ReadOnly' => true, 'Suffix' => 'Kč', 'SQL' => '(SELECT SUM(`FinanceOperation`.`Value`) FROM `FinanceOperation` '.
    411411          'WHERE `FinanceOperation`.`Treasury`=#Id)'),
     412        'Operations' => array('Type' => 'TFinanceOperationListTreasury', 'Caption' => 'Operace', 'Default' => ''),
    412413      ),
    413414    ));
  • trunk/Modules/TV/TV.php

    r586 r604  
    151151      'Items' => array(
    152152        'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     153        'Channels' => array('Type' => 'TTVListCategory', 'Caption' => 'Kanály', 'Default' => ''),
    153154      ),
    154155    ));
Note: See TracChangeset for help on using the changeset viewer.