mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
Add private notes to expense import
This commit is contained in:
parent
fa7ff2061d
commit
6ccdc5802d
@ -61,6 +61,7 @@ class Expense extends EntityModel
|
|||||||
'vendor',
|
'vendor',
|
||||||
'amount',
|
'amount',
|
||||||
'public_notes',
|
'public_notes',
|
||||||
|
'private_notes',
|
||||||
'expense_category',
|
'expense_category',
|
||||||
'expense_date',
|
'expense_date',
|
||||||
];
|
];
|
||||||
@ -73,7 +74,8 @@ class Expense extends EntityModel
|
|||||||
'category' => 'expense_category',
|
'category' => 'expense_category',
|
||||||
'client' => 'client',
|
'client' => 'client',
|
||||||
'vendor' => 'vendor',
|
'vendor' => 'vendor',
|
||||||
'notes|details' => 'public_notes',
|
'notes|details^private' => 'public_notes',
|
||||||
|
'notes|details^public' => 'private_notes',
|
||||||
'date' => 'expense_date',
|
'date' => 'expense_date',
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -24,6 +24,7 @@ class ExpenseTransformer extends BaseTransformer
|
|||||||
'client_id' => isset($data->client) ? $this->getClientId($data->client) : null,
|
'client_id' => isset($data->client) ? $this->getClientId($data->client) : null,
|
||||||
'expense_date' => isset($data->expense_date) ? date('Y-m-d', strtotime($data->expense_date)) : null,
|
'expense_date' => isset($data->expense_date) ? date('Y-m-d', strtotime($data->expense_date)) : null,
|
||||||
'public_notes' => $this->getString($data, 'public_notes'),
|
'public_notes' => $this->getString($data, 'public_notes'),
|
||||||
|
'private_notes' => $this->getString($data, 'private_notes'),
|
||||||
'expense_category_id' => isset($data->expense_category) ? $this->getExpenseCategoryId($data->expense_category) : null,
|
'expense_category_id' => isset($data->expense_category) ? $this->getExpenseCategoryId($data->expense_category) : null,
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user