Skip to content

Commit

Permalink
Merge pull request #7 from QbilSoftware/added-invoice-type
Browse files Browse the repository at this point in the history
+ added setter for allocated invoice
  • Loading branch information
xersion22 committed Sep 16, 2022
2 parents 1d92be5 + 4ecb0dc commit 8cc5dc2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Qbil/Models/InvoiceLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,9 @@ public function getPurchaseContract()
{
return $this->purchaseContract;
}

public function setAllocatedInvoice(string $allocatedInvoice)
{
$this->allocatedInvoice = $allocatedInvoice;
}
}
3 changes: 2 additions & 1 deletion src/Qbil/Models/InvoiceLineInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@ public function getEstimatedAmount();
public function getPrice();
public function getType();
public function getAllocatedInvoice();
public function setAllocatedInvoice(string $allocatedInvoice);
public function getPurchaseContract();
}
}

0 comments on commit 8cc5dc2

Please sign in to comment.