Skip to content

Commit

Permalink
Merge pull request #73 from han8909227/18-5
Browse files Browse the repository at this point in the history
Ability to add exemption number to CreateTransactionModel
  • Loading branch information
ted-spence-avalara authored Jun 6, 2018
2 parents 7238e92 + 1a96c00 commit 5b0f6b7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/TransactionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,18 @@ public function withExemptLine($amount, $itemCode, $exemptionCode, $lineNumber =
return $this;
}

/**
* Add a exemption number for this document
*
* @param string $exemptionNo Exemption Number for this document.
* @return TransactionBuilder
*/
public function withExemptionNo($exemptionNo)
{
$this->_model['exemptionNo'] = $exemptionNo;
return $this;
}

/**
* Specific a currency code for this transaction
*
Expand Down

0 comments on commit 5b0f6b7

Please sign in to comment.