Changeset 644


Ignore:
Timestamp:
Mar 24, 2014, 7:40:03 PM (11 years ago)
Author:
chronos
Message:
  • Opraveno: Sloupec Sazba DPH u Služeb.
  • Přidáno: Zobrazení zákazníků používajících službu.
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r641 r644  
    142142      'Category' => array('Type' => 'TServiceCategory', 'Caption' => 'Skupina', 'Default' => '', 'Null' => true),
    143143      'Price' => array('Type' => 'Integer', 'Caption' => 'Cena', 'Default' => '0', 'Suffix' => 'Kč'),
    144       'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => ''),
     144      'VAT' => array('Type' => 'TFinanceVAT', 'Caption' => 'Sazba DPH', 'Default' => '0', 'Suffix' => ''),
     145      'CustomerCount' => array('Type' => 'Integer', 'Caption' => 'Počet zákazníků', 'Default' => '', 'ReadOnly' => true),
    145146      'Public' => array('Type' => 'Boolean', 'Caption' => 'Veřejné', 'Default' => ''),
    146147      'InternetSpeedMin' => array('Type' => 'Integer', 'Caption' => 'Min. rychlost internetu', 'Default' => '0', 'Suffix' => 'kbit/s'),
     
    153154      'Action' => array('Type' => 'TActionEnum', 'Caption' => 'Změna období', 'Default' => '', 'Null' => true),
    154155      'ReplaceId' => array('Type' => 'TService', 'Caption' => 'Cílová položka', 'Default' => '', 'Null' => true),
     156      'CustomerRel' => array('Type' => 'TServiceCustomerRelListService', 'Caption' => 'Placení zákazníky', 'Default' => ''),
    155157    ),
    156158  ),
     
    163165    ),
    164166  ),
    165   'NewNetworkDeviceHistory' => array(
    166     'Title' => 'Vložit záznam historie zařízení',
    167     'Table' => 'NetworkDeviceHistory',
    168     'Items' => array(
    169       'Device' => array('Type' => 'TNetworkDevice', 'Caption' => 'Zařízení', 'Default' => 0),
    170       'Time' => array('Type' => 'Time', 'Caption' => 'Čas', 'Default' => 'Now'),
    171       'Action' => array('Type' => 'TNetworkDeviceAction', 'Caption' => 'Akce', 'Default' => 0),
    172       'Notice' => array('Type' => 'String', 'Caption' => 'Poznámka', 'Default' => ''),
    173     ),
    174   ),
    175167  'ServiceCategory' => array(
    176168    'Title' => 'Kategorie služeb',
     
    183175);
    184176
    185 $FormManager->FormTypes = array(
     177$FormManager->FormTypes = array
     178(
    186179  'TServiceCategory' => array(
    187180    'Type' => 'Reference',
     
    247240    'Filter' => '1',
    248241  ),
     242  'TFinanceVAT' => array(
     243    'Type' => 'Reference',
     244    'Table' => 'FinanceVAT',
     245    'Id' => 'Id',
     246    'Name' => 'Name',
     247    'Filter' => '1',
     248  ),
    249249  'TModule' => array(
    250250    'Type' => 'Reference',
     
    649649    'Filter' => '1',
    650650  ),
     651  'TServiceCustomerRelListService' => array(
     652    'Type' => 'ManyToOne',
     653    'Table' => 'ServiceCustomerRel',
     654    'Id' => 'Id',
     655    'Ref' => 'Service',
     656    'Filter' => '1',
     657  ),
    651658  'TCustomerStockItem' => array(
    652659    'Type' => 'ManyToOne',
  • trunk/Application/Version.php

    r639 r644  
    11<?php
    22
    3 $Revision = 640; // Subversion revision
     3$Revision = 644; // Subversion revision
    44$DatabaseRevision = 633; // SQL structure revision
    5 $ReleaseTime = strtotime('2014-03-16');
     5$ReleaseTime = strtotime('2014-03-24');
  • trunk/Common/Setup/Updates.php

    r633 r644  
    5555{
    5656  $Manager->Execute("INSERT INTO `ISMenuItem` (`Id` ,`Name` ,`Parent` ,`Table` ,`IconName`) ".
    57     "VALUES (NULL , 'Sítové služby', '1', 'NetworkConfiguration', '');");
     57    "VALUES (NULL , 'Síťové služby', '1', 'NetworkConfiguration', '');");
    5858  $Manager->Execute("INSERT INTO `ISMenuItem` (`Id` ,`Name` ,`Parent` ,`Table` ,`IconName`) ".
    5959    "VALUES (NULL , 'Fronta e-mailů', '23', 'EmailQueue', '');");
  • trunk/Modules/NetworkConfig/NetworkConfig.php

    r586 r644  
    2525  {
    2626    $this->System->FormManager->RegisterClass('NetworkConfiguration', array(
    27       'Title' => 'Restart sítových služeb',
     27      'Title' => 'Restart síťových služeb',
    2828      'Table' => 'NetworkConfiguration',
    2929      'Items' => array(
     
    4141    ));
    4242    $this->System->FormManager->RegisterClass('NetworkConfigurationLog', array(
    43       'Title' => 'Záznam restartu sítových služeb',
     43      'Title' => 'Záznam restartu síťových služeb',
    4444      'Table' => 'NetworkConfiguration',
    4545      'Items' => array(
Note: See TracChangeset for help on using the changeset viewer.