Ignore:
Timestamp:
May 31, 2014, 12:08:52 AM (10 years ago)
Author:
chronos
Message:
  • Přidáno: Nyní lze v definici formulářových struktůr vybrat výchozí směr řazení.
  • Opraveno: V typu TimeDiff nezobrazovat nulový údaj pokud je hodnota null.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Finance/Finance.php

    r652 r660  
    293293    return($Output);
    294294  }
    295  
     295
    296296  function GetVATByType($TypeId)
    297297  {
     
    345345      'Table' => 'FinanceOperation',
    346346      'DefaultSortColumn' => 'Time',
     347      'DefaultSortOrder' => 1,
    347348      'Items' => array(
    348349        'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''),
     
    367368      'Table' => 'FinanceInvoice',
    368369      'DefaultSortColumn' => 'Time',
     370      'DefaultSortOrder' => 1,
    369371      'Items' => array(
    370372        'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''),
     
    378380        'Generate' => array('Type' => 'Boolean', 'Caption' => 'Generovat', 'Default' => ''),
    379381        'PeriodFrom' => array('Type' => 'Date', 'Caption' => 'Období od', 'Default' => '', 'Null' => true),
    380         'PeriodTo' => array('Type' => 'Date', 'Caption' => 'Období do', 'Default' => '', 'Null' => true),       
     382        'PeriodTo' => array('Type' => 'Date', 'Caption' => 'Období do', 'Default' => '', 'Null' => true),
    381383        'Items' => array('Type' => 'TFinanceInvoiceItemListInvoice', 'Caption' => 'Položky', 'Default' => ''),
    382384        'OperationRel' => array('Type' => 'TFinanceInvoiceOperationRelListInvoice', 'Caption' => 'Platba', 'Default' => ''),
    383         'OperationRelCount' => array('Type' => 'Integer', 'Caption' => 'Plateb', 
     385        'OperationRelCount' => array('Type' => 'Integer', 'Caption' => 'Plateb',
    384386          'ReadOnly' => true, 'SQL' => '(SELECT COUNT(`FinanceInvoiceOperationRel`.`Id`) FROM `FinanceInvoiceOperationRel` '.
    385387          'WHERE `FinanceInvoiceOperationRel`.`Invoice`=#Id)'),
     
    396398        'Quantity' => array('Type' => 'Integer', 'Caption' => 'Množství', 'Default' => '1'),
    397399        'VAT' => array('Type' => 'Integer', 'Caption' => 'Daň', 'Default' => '21', 'Suffix' => '%'),
    398         'Total' => array('Type' => 'Integer', 'Caption' => 'Celkem', 'Default' => '', 'Suffix' => 'Kč', 
     400        'Total' => array('Type' => 'Integer', 'Caption' => 'Celkem', 'Default' => '', 'Suffix' => 'Kč',
    399401          'ReadOnly' => true, 'SQL' => '`Price` * `Quantity`'),
    400402      ),
Note: See TracChangeset for help on using the changeset viewer.