Changeset 877


Ignore:
Timestamp:
Apr 25, 2020, 10:58:07 PM (4 years ago)
Author:
chronos
Message:
  • Added: Show number of paired invoices in finance operations.
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/Version.php

    r876 r877  
    11<?php
    22
    3 $Revision = 875; // Subversion revision
     3$Revision = 877; // Subversion revision
    44$DatabaseRevision = 870; // SQL structure revision
    5 $ReleaseTime = strtotime('2020-04-09');
     5$ReleaseTime = strtotime('2020-04-25');
  • trunk/Install/deb/debian/conf/Config.php

    r853 r877  
    1515$Config['Web']['RootFolder'] = '/isp-central';
    1616$Config['Web']['Host'] = 'localhost';
    17 $Config['Web']['Title'] = 'Síť';
    18 $Config['Web']['Description'] = 'Community computer network';
     17$Config['Web']['Title'] = 'Internet network';
     18$Config['Web']['Description'] = 'ISP network management interface';
    1919$Config['Web']['Admin'] = 'Admin';
    2020$Config['Web']['AdminEmail'] = 'admin@localhost';
  • trunk/Modules/Finance/Finance.php

    r874 r877  
    269269        'Generate' => array('Type' => 'Boolean', 'Caption' => 'Generovat', 'Default' => ''),
    270270        'InvoiceRel' => array('Type' => 'TFinanceInvoiceOperationRelListOperation', 'Caption' => 'Zaplacené faktury', 'Default' => ''),
     271        'InvoiceRelCount' => array('Type' => 'Integer', 'Caption' => 'Faktur',
     272          'ReadOnly' => true, 'SQL' => '(SELECT COUNT(`FinanceInvoiceOperationRel`.`Id`) FROM `FinanceInvoiceOperationRel` '.
     273          'WHERE `FinanceInvoiceOperationRel`.`Operation`=#Id)'),
    271274      ),
    272275      'BeforeInsert' => array($this, 'BeforeInsertFinanceOperation'),
Note: See TracChangeset for help on using the changeset viewer.