Changeset 632 for trunk/Application


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.
Location:
trunk/Application
Files:
2 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',
  • trunk/Application/Version.php

    r630 r632  
    11<?php
    22
    3 $Revision = 630; // Subversion revision
    4 $DatabaseRevision = 627; // SQL structure revision
     3$Revision = 632; // Subversion revision
     4$DatabaseRevision = 632; // SQL structure revision
    55$ReleaseTime = mktime(0, 0, 0, 2, 2, 2014);
Note: See TracChangeset for help on using the changeset viewer.