1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Allow expenses to be part of products table

This commit is contained in:
Benjamin Beganović 2021-04-05 14:21:49 +02:00
parent 126095bb1d
commit 2cd3ceed2e
2 changed files with 2 additions and 2 deletions

View File

@ -251,7 +251,7 @@ class Design extends BaseDesign
public function productTable(): array
{
$product_items = collect($this->entity->line_items)->filter(function ($item) {
return $item->type_id == 1;
return $item->type_id == 1 || $item->type_id == 6;
});
if (count($product_items) == 0) {

View File

@ -273,7 +273,7 @@ trait MakesInvoiceValues
foreach ($items as $key => $item) {
if ($table_type == '$product' && $item->type_id != 1) {
if ($item->type_id != 4) {
if ($item->type_id != 4 && $item->type_id != 6) {
continue;
}
}