@@ -55,29 +55,29 @@ |
||
| 55 | 55 | protected static function addFromArray(array $array, StatementOfAccount $statementOfAccount) |
| 56 | 56 | { |
| 57 | 57 | foreach ($array as $statement) { |
| 58 | - $statementModel = new Statement(); |
|
| 59 | - $statementModel->setDate(new \DateTime($statement['date'])); |
|
| 60 | - $statementModel->setStartBalance((float) $statement['start_balance']['amount']); |
|
| 61 | - $statementModel->setCreditDebit($statement['start_balance']['credit_debit']); |
|
| 62 | - $statementOfAccount->addStatement($statementModel); |
|
| 58 | + $statementModel = new Statement(); |
|
| 59 | + $statementModel->setDate(new \DateTime($statement['date'])); |
|
| 60 | + $statementModel->setStartBalance((float) $statement['start_balance']['amount']); |
|
| 61 | + $statementModel->setCreditDebit($statement['start_balance']['credit_debit']); |
|
| 62 | + $statementOfAccount->addStatement($statementModel); |
|
| 63 | 63 | |
| 64 | - foreach ($statement['transactions'] as $trx) { |
|
| 65 | - $transaction = new Transaction(); |
|
| 66 | - $transaction->setBookingDate(new \DateTime($trx['booking_date'])); |
|
| 67 | - $transaction->setValutaDate(new \DateTime($trx['valuta_date'])); |
|
| 68 | - $transaction->setCreditDebit($trx['credit_debit']); |
|
| 69 | - $transaction->setAmount($trx['amount']); |
|
| 70 | - $transaction->setTransactionCode($trx['transaction_code']); |
|
| 71 | - $transaction->setBookingText($trx['description']['booking_text']); |
|
| 72 | - $transaction->setDescription1($trx['description']['description_1']); |
|
| 73 | - $transaction->setDescription2($trx['description']['description_2']); |
|
| 74 | - $transaction->setStructuredDescription($trx['description']['description']); |
|
| 75 | - $transaction->setBankCode($trx['description']['bank_code']); |
|
| 76 | - $transaction->setAccountNumber($trx['description']['account_number']); |
|
| 77 | - $transaction->setName($trx['description']['name']); |
|
| 78 | - $statementModel->addTransaction($transaction); |
|
| 79 | - } |
|
| 80 | - } |
|
| 64 | + foreach ($statement['transactions'] as $trx) { |
|
| 65 | + $transaction = new Transaction(); |
|
| 66 | + $transaction->setBookingDate(new \DateTime($trx['booking_date'])); |
|
| 67 | + $transaction->setValutaDate(new \DateTime($trx['valuta_date'])); |
|
| 68 | + $transaction->setCreditDebit($trx['credit_debit']); |
|
| 69 | + $transaction->setAmount($trx['amount']); |
|
| 70 | + $transaction->setTransactionCode($trx['transaction_code']); |
|
| 71 | + $transaction->setBookingText($trx['description']['booking_text']); |
|
| 72 | + $transaction->setDescription1($trx['description']['description_1']); |
|
| 73 | + $transaction->setDescription2($trx['description']['description_2']); |
|
| 74 | + $transaction->setStructuredDescription($trx['description']['description']); |
|
| 75 | + $transaction->setBankCode($trx['description']['bank_code']); |
|
| 76 | + $transaction->setAccountNumber($trx['description']['account_number']); |
|
| 77 | + $transaction->setName($trx['description']['name']); |
|
| 78 | + $statementModel->addTransaction($transaction); |
|
| 79 | + } |
|
| 80 | + } |
|
| 81 | 81 | |
| 82 | 82 | return $statementOfAccount; |
| 83 | 83 | } |