Changeset 480 for trunk/form_classes.php


Ignore:
Timestamp:
Feb 5, 2013, 10:25:54 PM (12 years ago)
Author:
chronos
Message:
  • Přidáno: Zobrazení měsíčních plateb v tabulce pro kontrolu před jejich generováním.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        99.buildpath
        1010.settings
         11nbproject
  • trunk/form_classes.php

    r479 r480  
    6262    ),
    6363  ),
     64  'ServiceCustomerRel' => array(
     65    'Title' => 'Vztahy služba - zákazník',
     66    'Table' => 'ServiceCustomerRel',
     67    'Items' => array(
     68      'Service' => array('Type' => 'TService', 'Caption' => 'Služba', 'Default' => ''),       
     69      'Customer' => array('Type' => 'TMember', 'Caption' => 'Zákazník', 'Default' => ''),       
     70      'Period' => array('Type' => 'Integer', 'Caption' => 'Období', 'Default' => ''),       
     71    ),
     72  ),
    6473  'Work' => array(
    6574    'Title' => 'Práce',
     
    266275      'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0', 'Suffix' => 'Kč'),
    267276      'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => ''),
    268       'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Nahradit', 'Default' => '', 'Null' => true),
    269277      'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => ''),
    270278      'InternetSpeedMin' => array('Type' => 'Integer', 'Caption' => 'Min. rychlost internetu', 'Default' => '0', 'Suffix' => 'kbit/s'),
     
    275283      'Storage' => array('Type' => 'Integer', 'Caption' => 'Úložiště', 'Default' => '0', 'Suffix' => 'GB'),
    276284      'CPUCount' => array('Type' => 'Integer', 'Caption' => 'Počet jader', 'Default' => '0', 'Suffix' => ''),
     285      'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Nahradit', 'Default' => '', 'Null' => true),
    277286    ),
    278287  ),
     
    296305      'Devices' => array('Type' => 'TDeviceList', 'Caption' => 'Registrovaná zařízení', 'Default' => ''),
    297306      'UserRel' => array('Type' => 'TUserCustomerRelListCustomer', 'Caption' => 'Přiřazení uživatelé', 'Default' => ''),
     307      'ServiceRel' => array('Type' => 'TServiceCustomerRelListCustomer', 'Caption' => 'Placené služby', 'Default' => ''),
    298308    ),
    299309  ),
     
    637647    ),
    638648  ),
     649  'ServiceCategory' => array(
     650    'Title' => 'Kategorie služeb',
     651    'Table' => 'ServiceCategory',
     652    'Items' => array(
     653      'Name' => array('Type' => 'String', 'Caption' => 'Jméno', 'Default' => ''),
     654      'Items' => array('Type' => 'TServiceListServiceCategory', 'Caption' => 'Služby', 'Default' => ''),
     655    ),
     656  ),
    639657);
    640658
     
    946964    'Filter' => '1',
    947965  ),
     966  'TServiceCustomerRelListCustomer' => array(
     967    'Type' => 'ManyToOne',
     968    'Table' => 'ServiceCustomerRel',
     969    'Id' => 'Id',
     970    'Ref' => 'Customer',
     971    'Filter' => '1',
     972  ),
    948973  'TPermissionUserAssignmentListUser' => array(
    949974    'Type' => 'ManyToOne',
     
    972997    'Id' => 'Id',
    973998    'Ref' => 'AssignedGroup',
     999    'Filter' => '1',
     1000  ),
     1001  'TServiceListServiceCategory' => array(
     1002    'Type' => 'ManyToOne',
     1003    'Table' => 'Service',
     1004    'Id' => 'Id',
     1005    'Ref' => 'Category',
    9741006    'Filter' => '1',
    9751007  ),
Note: See TracChangeset for help on using the changeset viewer.