Ignore:
Timestamp:
Jan 3, 2014, 5:55:20 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Vztahy faktura - platba lze definovat jako vztah N:M. Jedna platba může být přiřazena k více fakturám. K jedné fakturě může být přiřazeno více plateb.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r628 r632  
    3535    ),
    3636  ),
     37  'FinanceInvoiceOperationRel' => array(
     38    'Title' => 'Zaplacení faktůr',
     39    'Table' => 'FinanceInvoiceOperationRel',
     40    'Items' => array(
     41      'Invoice' => array('Type' => 'TFinanceInvoice', 'Caption' => 'Faktura', 'Default' => ''),       
     42      'Operation' => array('Type' => 'TFinanceOperation', 'Caption' => 'Platba', 'Default' => ''),       
     43    ),
     44  ),
    3745  'ServiceCustomerRel' => array(
    3846    'Title' => 'Vztahy služba - zákazník',
     
    602610    'Filter' => '1',
    603611  ),
     612  'TFinanceInvoiceOperationRelListInvoice' => array(
     613    'Type' => 'ManyToOne',
     614    'Table' => 'FinanceInvoiceOperationRel',
     615    'Id' => 'Id',
     616    'Ref' => 'Invoice',
     617    'Filter' => '1',
     618  ),
     619  'TFinanceInvoiceOperationRelListOperation' => array(
     620    'Type' => 'ManyToOne',
     621    'Table' => 'FinanceInvoiceOperationRel',
     622    'Id' => 'Id',
     623    'Ref' => 'Operation',
     624    'Filter' => '1',
     625  ),
    604626  'TServiceCustomerRelListCustomer' => array(
    605627    'Type' => 'ManyToOne',
Note: See TracChangeset for help on using the changeset viewer.