Skip to content

Commit

Permalink
Added AmountFC to SalesEntryLine
Browse files Browse the repository at this point in the history
  • Loading branch information
stephangroen committed Jun 7, 2016
1 parent 796d13d commit 8ac7cd3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Picqer/Financials/Exact/SalesEntryLine.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=salesentrySalesEntryLines
*
* @property Double $AmountDC Amount in the default currency of the company. For almost all lines this can be calculated like: AmountDC = AmountFC * RateFC.
* @property Double $AmountFC For normal lines it's the amount excluding VAT
* @property String $Description Description of Asset
* @property Int32 $Division Division code
* @property Guid $ID Primary key
Expand All @@ -27,6 +28,7 @@ class SalesEntryLine extends Model

protected $fillable = [
'AmountDC',
'AmountFC',
'Description',
'Division',
'ID',
Expand All @@ -38,7 +40,6 @@ class SalesEntryLine extends Model
'VATCode',
'VATPercentage',
'Notes',

];

protected $url = 'salesentry/SalesEntryLines';
Expand Down

0 comments on commit 8ac7cd3

Please sign in to comment.