forked from picqer/exact-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoodsReceiptLine.php
83 lines (77 loc) · 2.97 KB
/
GoodsReceiptLine.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
namespace Picqer\Financials\Exact;
/**
* Class GoodsReceiptLine
*
* @package Picqer\Financials\Exact
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=PurchaseOrderGoodsReceiptLines
*
* @property string $ID Primary key
* @property StockBatchNumbers $BatchNumbers Collection of batch numbers
* @property DateTime $Created Creation date
* @property string $Creator User ID of the creator
* @property String $CreatorFullName Name of the creator
* @property String $Description Goods receipt line description
* @property Int32 $Division Division code
* @property string $GoodsReceiptID All the lines of a goods receipt have the same GoodsReceiptID
* @property string $Item ID of the received item
* @property String $ItemCode Code of the received item
* @property String $ItemDescription Item description
* @property String $ItemUnitCode Unit code of the purchase
* @property Int32 $LineNumber Line number
* @property string $Location ID of the storage location in the warehouse where the item is received
* @property String $LocationCode Code of the storage location in the warehouse where the item is received
* @property String $LocationDescription Description of the storage location in the warehouse where the item is received
* @property DateTime $Modified Last modified date
* @property string $Modifier User ID of the last modifier
* @property String $ModifierFullName Name of the last modifier
* @property String $Notes Notes
* @property string $Project Reference to project
* @property String $ProjectCode Project code
* @property String $ProjectDescription Project description
* @property string $PurchaseOrderID Reference to purchase order
* @property string $PurchaseOrderLineID ID of the purchase order line that is received
* @property Int32 $PurchaseOrderNumber Order number of the purchase order that is received
* @property Double $QuantityOrdered Quantity ordered
* @property Double $QuantityReceived Quantity received
* @property StockSerialNumbers $SerialNumbers Collection of serial numbers
* @property String $SupplierItemCode Supplier item code
*/
class GoodsReceiptLine extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'BatchNumbers',
'Created',
'Creator',
'CreatorFullName',
'Description',
'Division',
'GoodsReceiptID',
'Item',
'ItemCode',
'ItemDescription',
'ItemUnitCode',
'LineNumber',
'Location',
'LocationCode',
'LocationDescription',
'Modified',
'Modifier',
'ModifierFullName',
'Notes',
'Project',
'ProjectCode',
'ProjectDescription',
'PurchaseOrderID',
'PurchaseOrderLineID',
'PurchaseOrderNumber',
'QuantityOrdered',
'QuantityReceived',
'SerialNumbers',
'SupplierItemCode',
];
protected $url = 'purchaseorder/GoodsReceiptLines';
}