-
Notifications
You must be signed in to change notification settings - Fork 200
/
BatchNumber.php
57 lines (53 loc) · 1.94 KB
/
BatchNumber.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class BatchNumber.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=InventoryBatchNumbers
*
* @property string $ID A guid that is the unique identifier of the batch number
* @property float $AvailableQuantity Available quantity of this batch number. If available quantity is empty, the batch number is available quantity is 0
* @property string $BatchNumber Human readable batch number
* @property string $Created Creation date
* @property string $Creator User ID of creator
* @property string $CreatorFullName Name of creator
* @property string $CustomField Custom field endpoint. Provided only for the Exact Online Premium users.
* @property int $Division Division code
* @property string $ExpiryDate Expiry date of effective period for batch number
* @property int $IsBlocked Boolean value indicating whether or not the batch number is blocked
* @property string $Item Item
* @property string $ItemCode Item code
* @property string $ItemDescription Description of item
* @property string $Modified Last modified date
* @property string $Modifier User ID of modifier
* @property string $ModifierFullName Name of modifier
* @property string $Remarks Remarks
* @property StorageLocation[] $StorageLocations Total quantity available per location
* @property Warehouse[] $Warehouses Total quantity available per warehouse
*/
class BatchNumber extends Model
{
use Query\Findable;
protected $fillable = [
'ID',
'AvailableQuantity',
'BatchNumber',
'Created',
'Creator',
'CreatorFullName',
'CustomField',
'Division',
'ExpiryDate',
'IsBlocked',
'Item',
'ItemCode',
'ItemDescription',
'Modified',
'Modifier',
'ModifierFullName',
'Remarks',
'StorageLocations',
'Warehouses',
];
protected $url = 'inventory/BatchNumbers';
}