Changeset 628


Ignore:
Timestamp:
Jan 2, 2014, 1:20:35 PM (11 years ago)
Author:
chronos
Message:
  • Odstraněno: Ladící výpisy z Fio importu.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/FormClasses.php

    r627 r628  
    6262      'DocumentLine' => array('Type' => 'TDocumentLine', 'Caption' => 'Dokladová řada', 'Default' => ''),       
    6363      'FinanceYear' => array('Type' => 'TFinanceYear', 'Caption' => 'Účetní rok', 'Default' => ''),       
    64       'NextNumber' => array('Type' => 'Integer', 'Caption' => 'Další číslo', 'Default' => ''),       
    65       'YearPrefix' => array('Type' => 'Boolean', 'Caption' => 'Rok jako předpona', 'Default' => ''),       
     64      'NextNumber' => array('Type' => 'Integer', 'Caption' => 'Další číslo', 'Default' => '1'),       
     65      'YearPrefix' => array('Type' => 'Boolean', 'Caption' => 'Rok jako přípona', 'Default' => '1'),       
    6666      'Operations' => array('Type' => 'TFinanceOperationListDocumentLine', 'Caption' => 'Finanční operace', 'Default' => ''),
    6767      'Invoices' => array('Type' => 'TFinanceInvoiceListDocumentLine', 'Caption' => 'Faktury', 'Default' => ''),
     
    7979      'Sequence' => array('Type' => 'TDocumentLineSequenceListYear', 'Caption' => 'Čísleníky', 'Default' => ''),       
    8080    ),
     81    //'AfterInsert' => array($this, 'AfterInsertFinanceYear'),
    8182  ),
    8283  'Language' => array(
  • trunk/Application/Version.php

    r627 r628  
    11<?php
    22
    3 $Revision = 627; // Subversion revision
     3$Revision = 628; // Subversion revision
    44$DatabaseRevision = 627; // SQL structure revision
    55$ReleaseTime = mktime(0, 0, 0, 1, 2, 2014);
  • trunk/Modules/Finance/Finance.php

    r627 r628  
    165165      $DbResult = $this->Database->select('FinanceYear', '*', '1 ORDER BY `Year` DESC LIMIT 1');
    166166    } else $DbResult = $this->Database->select('FinanceYear', '*', '`Year`='.$FinanceYear);
    167         echo('rok:'.$FinanceYear.' '.$DbResult->num_rows);
    168167    if($DbResult->num_rows == 0) throw new Exception('Rok '.$FinanceYear.' nenalezen');
    169168    $FinanceYear = $DbResult->fetch_assoc();
  • trunk/Modules/FinanceBankAPI/FileImport.php

    r553 r628  
    2828    while($DbRow = $DbResult->fetch_assoc())
    2929    {
    30       echo($DbRow['Id'].',');
    3130      if(is_numeric($DbRow['VariableSymbol']))
    3231      {
  • trunk/Modules/FinanceBankAPI/FioAPI.php

    r550 r628  
    3131    $RequestURL = '/ib_api/rest/periods/'.$this->Token.'/'.
    3232      date('Y-m-d', $TimeFrom).'/'.date('Y-m-d', $TimeTo).'/transactions.'.$this->Format;
    33     echo($RequestURL);
    3433    $Response = file_get_contents('https://www.fio.cz'.$RequestURL);
    3534    if($Response == FALSE)
     
    3837    } else
    3938    {
    40       echo($Response);
    4139      if($this->Format == 'gpc') $Response = iconv('windows-1250', $this->Encoding, $Response);
    4240      $Response = explode("\n", $Response);
  • trunk/Modules/FinanceBankAPI/ImportFio.php

    r551 r628  
    1313    $PeriodEnd = time();
    1414    $Records = $Fio->Import($PeriodStart, $PeriodEnd);
    15     print_r($Records);
    16     //die();
    1715    $Output = '<table>';
    1816      //$Output .= '<tr>';
  • trunk/Modules/IS/IS.php

    r627 r628  
    167167            $this->Values = $Class->$Method($Form);
    168168          }
     169          $Form->Validate();
    169170          $Form->SaveValuesToDatabase(0);
    170171          $Id = $this->Database->insert_id;
     
    173174          $Output .= $this->SystemMessage('Přidání položky', 'Nová položka vytvořena');
    174175          $Output .= $this->ShowView($Table, $Id);   
     176          if(array_key_exists('AfterInsert', $Form->Definition))
     177          {
     178            $Class = $Form->Definition['AfterInsert'][0];
     179            $Method = $Form->Definition['AfterInsert'][1];
     180            $this->Values = $Class->$Method($Form);
     181          }
    175182        //$this->Database->update($Table, 'Id='.$Id,
    176183        //  array('UserCreate' => $this->System->User->User['Id'],
Note: See TracChangeset for help on using the changeset viewer.