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/Modules/FinanceBankAPI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 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>';
Note: See TracChangeset for help on using the changeset viewer.