Ignore:
Timestamp:
Jan 11, 2016, 12:06:08 AM (9 years ago)
Author:
chronos
Message:
  • Modified: Now billing period for invoice generation is calculated as aligned to year boundary and if period is not complete then only valid months are used.
  • Removed: ToDo list and list of task and bugs is available in Trac web system.
  • Modified: BillingPeriodNext was replaced by more general ChangeAction in Member table.
  • Added: Log new monthly finance recalculation report to log table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r765 r786  
    3030      'Shortcut' => array('Type' => 'String', 'Caption' => 'Kód', 'Default' => ''),
    3131      'Sequence' => array('Type' => 'TDocumentLineSequenceListLine', 'Caption' => 'Čísleníky', 'Default' => ''),
    32         'Codes' => array('Type' => 'TDocumentLineCodeList', 'Caption' => 'Kódy', 'Default' => ''),
     32      'Codes' => array('Type' => 'TDocumentLineCodeList', 'Caption' => 'Kódy', 'Default' => ''),
     33      'Operations' => array('Type' => 'TFinanceOperationGroupListDocumentLine', 'Caption' => 'Skupiny finančních operací', 'Default' => ''),
     34      'Invoices' => array('Type' => 'TFinanceInvoiceGroupListDocumentLine', 'Caption' => 'Skupiny faktur', 'Default' => ''),
    3335    ),
    3436  ),
     
    4244      'NextNumber' => array('Type' => 'Integer', 'Caption' => 'Další číslo', 'Default' => '1'),
    4345      'YearPrefix' => array('Type' => 'Boolean', 'Caption' => 'Rok jako přípona', 'Default' => '1'),
    44       'Operations' => array('Type' => 'TFinanceOperationListDocumentLine', 'Caption' => 'Finanční operace', 'Default' => ''),
    45       'Invoices' => array('Type' => 'TFinanceInvoiceListDocumentLine', 'Caption' => 'Faktury', 'Default' => ''),
    4646    ),
    4747  ),
     
    461461    'Filter' => '1',
    462462  ),
    463   'TFinanceOperationListDocumentLine' => array(
    464     'Type' => 'ManyToOne',
    465     'Table' => 'FinanceOperation',
     463  'TFinanceOperationGroupListDocumentLine' => array(
     464    'Type' => 'ManyToOne',
     465    'Table' => 'FinanceOperationGroup',
    466466    'Id' => 'Id',
    467467    'Ref' => 'DocumentLine',
    468468    'Filter' => '1',
    469469  ),
    470   'TFinanceInvoiceListDocumentLine' => array(
    471     'Type' => 'ManyToOne',
    472     'Table' => 'FinanceInvoice',
     470  'TFinanceInvoiceGroupListDocumentLine' => array(
     471    'Type' => 'ManyToOne',
     472    'Table' => 'FinanceInvoiceGroup',
    473473    'Id' => 'Id',
    474474    'Ref' => 'DocumentLine',
Note: See TracChangeset for help on using the changeset viewer.