Skip to content

Commit

Permalink
Merge pull request #8 from QbilSoftware/added-invoice-type
Browse files Browse the repository at this point in the history
+ added getter got vat code
  • Loading branch information
xersion22 authored Dec 1, 2022
2 parents 8cc5dc2 + 61b1e9c commit 59334d4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Qbil/Models/InvoiceLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,14 @@ public function getPurchaseContract()
return $this->purchaseContract;
}

/**
* @return mixed
*/
public function getVatCode()
{
return null;
}

public function setAllocatedInvoice(string $allocatedInvoice)
{
$this->allocatedInvoice = $allocatedInvoice;
Expand Down
1 change: 1 addition & 0 deletions src/Qbil/Models/InvoiceLineInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ public function getType();
public function getAllocatedInvoice();
public function setAllocatedInvoice(string $allocatedInvoice);
public function getPurchaseContract();
public function getVatCode();
}

0 comments on commit 59334d4

Please sign in to comment.