forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BulkGoodsDeliveryLine.php
42 lines (40 loc) · 2.08 KB
/
BulkGoodsDeliveryLine.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace Picqer\Financials\Exact;
/**
* Class BulkGoodsDeliveryLine.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=BulkSalesOrderGoodsDeliveryLines
*
* @property string $ID The unique identifier of a stock transaction for a goods delivery line. A goods delivery line can be split into multiple storage locations. In this case, multiple storage locations will have the same stock transaction ID.
* @property stockbatchnumbers $BatchNumbers Collection of batch numbers
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $DeliveryDate Date of goods delivery
* @property string $Description Description of sales order delivery
* @property int $Division Division code
* @property string $EntryID The EntryID identifies the goods delivery. All the lines of a goods delivery have the same EntryID
* @property string $Item Reference to item
* @property string $ItemCode Item code
* @property string $ItemDescription Description of item
* @property int $LineNumber Line number
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Notes Notes
* @property float $QuantityDelivered Quantity delivered
* @property float $QuantityOrdered Quantity ordered
* @property string $SalesOrderLineID Reference to sales order
* @property int $SalesOrderLineNumber Sales order line number
* @property int $SalesOrderNumber Sales order number
* @property stockserialnumbers $SerialNumbers Collection of serial numbers
* @property string $StorageLocation Reference to storage location
* @property string $StorageLocationCode Storage location code
* @property string $StorageLocationDescription Storage location description
* @property string $TrackingNumber Reference to tracking number
* @property string $Unitcode Code of item unit
*/
class BulkGoodsDeliveryLine extends GoodsDeliveryLine
{
protected $url = 'bulk/SalesOrder/GoodsDeliveryLines';
}