diff --git a/app/Services/Pdf/PdfBuilder.php b/app/Services/Pdf/PdfBuilder.php index 6cdfa06a7bf6..601bf2229d35 100644 --- a/app/Services/Pdf/PdfBuilder.php +++ b/app/Services/Pdf/PdfBuilder.php @@ -1239,7 +1239,7 @@ class PdfBuilder public function productTable(): array { $product_items = collect($this->service->config->entity->line_items)->filter(function ($item) { - return $item->type_id == 1 || $item->type_id == 6 || $item->type_id == 5; + return $item->type_id == 1 || $item->type_id == 6 || $item->type_id == 5 || $item->type_id == 4; }); if (count($product_items) == 0) { diff --git a/app/Services/PdfMaker/Design.php b/app/Services/PdfMaker/Design.php index 69ba99d5ff48..01314aa5618f 100644 --- a/app/Services/PdfMaker/Design.php +++ b/app/Services/PdfMaker/Design.php @@ -441,7 +441,7 @@ class Design extends BaseDesign public function productTable(): array { $product_items = collect($this->entity->line_items)->filter(function ($item) { - return $item->type_id == 1 || $item->type_id == 6 || $item->type_id == 5; + return $item->type_id == 1 || $item->type_id == 6 || $item->type_id == 5 || $item->type_id == 4; }); if (count($product_items) == 0) {