Changeset 508 for trunk/form_classes.php


Ignore:
Timestamp:
Apr 1, 2013, 8:36:27 PM (12 years ago)
Author:
chronos
Message:
  • Opraveno: Negenerovat faktury pokud fakturovaná částka je nula.
  • Přidáno: Zobrazení akcí při prohlížení položek správy dat.
  • Přidáno: V tabulce Subjektů se nyní zobrazují související platby.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/form_classes.php

    r507 r508  
    537537      'Note' => array('Type' => 'String', 'Caption' => 'Poznámka', 'Default' => ''),
    538538      'Customer' => array('Type' => 'TMemberListSubject', 'Caption' => 'Členové', 'Default' => ''),
     539      'Operations' => array('Type' => 'TFinanceOperationListSubject', 'Caption' => 'Platby', 'Default' => ''),
     540      'Invoices' => array('Type' => 'TFinanceInvoiceListSubject', 'Caption' => 'Faktury', 'Default' => ''),
    539541    ),
    540542  ),
     
    12981300    'Filter' => '1',
    12991301  ),
     1302  'TFinanceOperationListSubject' => array(
     1303    'Type' => 'ManyToOne',
     1304    'Table' => 'FinanceOperation',
     1305    'Id' => 'Id',
     1306    'Ref' => 'Subject',
     1307    'Filter' => '1',
     1308  ),
     1309  'TFinanceInvoiceListSubject' => array(
     1310    'Type' => 'ManyToOne',
     1311    'Table' => 'FinanceInvoice',
     1312    'Id' => 'Id',
     1313    'Ref' => 'Subject',
     1314    'Filter' => '1',
     1315  ),
    13001316);
    13011317}
Note: See TracChangeset for help on using the changeset viewer.