Skip to content

Commit

Permalink
Merge pull request #60 from arendvw/fix-doc-attachment
Browse files Browse the repository at this point in the history
Added missing fields for DocummentAttachment and SalesEntry
  • Loading branch information
stephangroen committed May 31, 2016
2 parents 79fb494 + 9e9e724 commit de275a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/Picqer/Financials/Exact/DocumentAttachment.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ class DocumentAttachment extends Model
'ID',
'Attachment',
'Document',
'FileName',
'FileName',
'Url'
];

protected $url = 'documents/DocumentAttachments';
Expand Down
5 changes: 3 additions & 2 deletions src/Picqer/Financials/Exact/SalesEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ class SalesEntry extends Model
'ExternalLinkDescription',
'Description',
'Status',
'PaymentCondition'
'PaymentCondition',
'PaymentReference'
];


Expand All @@ -67,4 +68,4 @@ public function addItem(array $array)

protected $url = 'salesentry/SalesEntries';

}
}

0 comments on commit de275a9

Please sign in to comment.