From 01e31c677c9dd2326f5e8e6fa862d2fe4a39ce2d Mon Sep 17 00:00:00 2001 From: Agnes Hoving Date: Fri, 25 Oct 2024 09:28:29 +0200 Subject: [PATCH] fix: set messageId to true --- src/Services/DeclarationService.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Services/DeclarationService.php b/src/Services/DeclarationService.php index 883b32cb..06f7f1c9 100644 --- a/src/Services/DeclarationService.php +++ b/src/Services/DeclarationService.php @@ -69,7 +69,7 @@ public function vatReturnXbrl($documentId) return $this->GetVatReturnAsXbrl([ 'documentId' => $documentId, - 'isMessageIdRequired' => false // If set to True the MessageReferenceSupplierICT element will be filled in. + 'isMessageIdRequired' => true // If set to True the MessageReferenceSupplierVAT element will be filled in. Which is required for sending the item to logius ]); } @@ -79,7 +79,7 @@ public function icpReturnXbrl($documentId) return $this->GetIctReturnAsXbrl([ // is this a typo? should it be icpReturnXbrl? 'documentId' => $documentId, - 'isMessageIdRequired' => false // If set to True the MessageReferenceSupplierICT element will be filled in. + 'isMessageIdRequired' => true // If set to True the MessageReferenceSupplierVAT element will be filled in. Which is required for sending the item to logius ]); } @@ -110,4 +110,4 @@ public function setSent($documentId) 'documentId' => $documentId ]); } -} \ No newline at end of file +}