mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Fixes for export resolution
This commit is contained in:
parent
b4c45e0a47
commit
e3ec40cefe
@ -120,7 +120,10 @@ class RecurringInvoiceExport extends BaseExport
|
||||
|
||||
if (is_array($parts) && $parts[0] == 'recurring_invoice' && array_key_exists($parts[1], $transformed_invoice)) {
|
||||
$entity[$key] = $transformed_invoice[$parts[1]];
|
||||
} else {
|
||||
} elseif($parts[0] == 'item'){
|
||||
$entity[$key] = '';
|
||||
}
|
||||
else {
|
||||
// nlog($key);
|
||||
$entity[$key] = $this->decorator->transform($key, $invoice);
|
||||
// $entity[$key] = '';
|
||||
|
Loading…
x
Reference in New Issue
Block a user