mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Bank Transactions CSV import
This commit is contained in:
parent
b7cb81a4dd
commit
806d64563b
@ -79,6 +79,17 @@ class Csv extends BaseImport implements ImportInterface
|
|||||||
|
|
||||||
if (is_array($data)) {
|
if (is_array($data)) {
|
||||||
$data = $this->preTransformCsv($data, $entity_type);
|
$data = $this->preTransformCsv($data, $entity_type);
|
||||||
|
|
||||||
|
|
||||||
|
if(array_key_exists('bank_integration_id', $this->request)){
|
||||||
|
|
||||||
|
foreach($data as $key => $value)
|
||||||
|
{
|
||||||
|
$data['bank_integration_id'][$key] = $this->request['bank_integration_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($data)) {
|
if (empty($data)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user