Ignore:
Timestamp:
Jan 1, 2015, 2:18:20 PM (10 years ago)
Author:
chronos
Message:
  • Removed: Unused table NetworkSegment which was previously used to compute exact member participation on device and consumption payment. Now consumption is handled with customer Service table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/FinanceBankAPI/ImportFio.php

    r628 r715  
    2727      if($DbResult->num_rows == 0)
    2828      {     
    29       $Output .= '<tr>';
     29        $Output .= '<tr>';
    3030        $this->Database->insert('FinanceBankImport', array('Time' => TimeToMysqlDate($Record['Date']),
    3131          'BankAccount' => $this->BankAccount['Id'], 'Value' => $Record['Value'],
     
    3434          'Identification' => $Record['ID'], 'AccountNumber' => $Record['OffsetAccount'],
    3535          'BankCode' => $Record['BankCode'], 'Description' => $Record['Type'], 'OffsetAccountName' => $Record['UserIdent']));
    36       $Output .= '<td>'.$Record['OffsetAccount'].'</td>';
    37       $Output .= '<td>'.$Record['BankCode'].'</td>';
    38       $Output .= '<td>'.$Record['UserIdent'].'</td>';
    39       $Output .= '</tr>';
     36        $Output .= '<td>'.$Record['OffsetAccount'].'</td>';
     37        $Output .= '<td>'.$Record['BankCode'].'</td>';
     38        $Output .= '<td>'.$Record['UserIdent'].'</td>';
     39        $Output .= '<td>'.$Record['Value'].'</td>';
     40        $Output .= '</tr>';
    4041      }
    4142    }
    4243    $Output .= '</table>';   
    43     $this->Database->update('FinanceBankAccount', 'Id='.$this->BankAccount['Id'], array('LastImportDate' => TimeToMysqlDate($PeriodEnd)));
     44    $this->Database->update('FinanceBankAccount', 'Id='.$this->BankAccount['Id'],
     45        array('LastImportDate' => TimeToMysqlDate($PeriodEnd)));
    4446    return($Output);
    4547  }
Note: See TracChangeset for help on using the changeset viewer.