Ignore:
Timestamp:
Jul 7, 2013, 9:26:44 PM (11 years ago)
Author:
chronos
Message:
  • Přidáno: Automatické generování kódu dokladu při vytváření nové položky v IS a při importu z Fio banky.
  • Odstraněno: Staré akce na stránce "Správa financí".
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/IS/IS.php

    r548 r551  
    6565    $DbRow = $DbResult->fetch_row();
    6666    $Output .= 'Stav placení: '.$DbRow['0'].'<br/>';
     67    $DbResult = $this->Database->select('FinanceBankImport', 'COUNT(*)', 'FinanceOperation IS NULL');
     68    $DbRow = $DbResult->fetch_row();
     69    $Output .= 'Nezpárovaných plateb: '.$DbRow['0'].'<br/>';
    6770    return($Output);
    6871  }
     
    136139        $Form->LoadValuesFromForm();
    137140        try {
     141          if(array_key_exists('BeforeInsert', $Form->Definition))
     142          {
     143            $Class = $Form->Definition['BeforeInsert'][0];
     144            $Method = $Form->Definition['BeforeInsert'][1];
     145            $this->Values = $Class->$Method($Form);
     146          }
    138147          $Form->SaveValuesToDatabase(0);       
    139148          $Output .= $this->SystemMessage('Přidání položky', 'Nová položka vytvořena');
Note: See TracChangeset for help on using the changeset viewer.