diff --git a/app/Exports/Purchases/Bills/Sheets/BillItems.php b/app/Exports/Purchases/Bills/Sheets/BillItems.php index 027383544..28dcf4cd1 100644 --- a/app/Exports/Purchases/Bills/Sheets/BillItems.php +++ b/app/Exports/Purchases/Bills/Sheets/BillItems.php @@ -37,6 +37,8 @@ class BillItems extends Export implements WithParentSheet 'item_description', 'item_type', 'quantity', + 'discount_type', + 'discount_rate', 'price', 'total', 'tax', diff --git a/app/Exports/Purchases/RecurringBills/Sheets/RecurringBillItems.php b/app/Exports/Purchases/RecurringBills/Sheets/RecurringBillItems.php index 7f10bcee5..33678e79b 100644 --- a/app/Exports/Purchases/RecurringBills/Sheets/RecurringBillItems.php +++ b/app/Exports/Purchases/RecurringBills/Sheets/RecurringBillItems.php @@ -37,6 +37,8 @@ class RecurringBillItems extends Export implements WithParentSheet 'item_description', 'item_type', 'quantity', + 'discount_type', + 'discount_rate', 'price', 'total', 'tax', diff --git a/app/Exports/Sales/Invoices/Sheets/InvoiceItems.php b/app/Exports/Sales/Invoices/Sheets/InvoiceItems.php index c16ce713b..66160532d 100644 --- a/app/Exports/Sales/Invoices/Sheets/InvoiceItems.php +++ b/app/Exports/Sales/Invoices/Sheets/InvoiceItems.php @@ -37,6 +37,8 @@ class InvoiceItems extends Export implements WithParentSheet 'item_description', 'item_type', 'quantity', + 'discount_type', + 'discount_rate', 'price', 'total', 'tax', diff --git a/app/Exports/Sales/RecurringInvoices/Sheets/RecurringInvoiceItems.php b/app/Exports/Sales/RecurringInvoices/Sheets/RecurringInvoiceItems.php index b7cb0d5ae..32d0f004a 100644 --- a/app/Exports/Sales/RecurringInvoices/Sheets/RecurringInvoiceItems.php +++ b/app/Exports/Sales/RecurringInvoices/Sheets/RecurringInvoiceItems.php @@ -37,6 +37,8 @@ class RecurringInvoiceItems extends Export implements WithParentSheet 'item_description', 'item_type', 'quantity', + 'discount_type', + 'discount_rate', 'price', 'total', 'tax',