-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathBillOfMaterialMaterial.php
82 lines (78 loc) · 2.96 KB
/
BillOfMaterialMaterial.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
<?php
namespace Picqer\Financials\Exact;
/**
* Class BillOfMaterialMaterial.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ManufacturingBillOfMaterialMaterials
*
* @property string $ID Primary key
* @property float $AverageCost Item average cost available when average cost method is used
* @property int $Backflush Indicates if this is a backflush item
* @property int $CalculatorType Calculator type
* @property float $CostBatch Cost batch
* @property string $CostCenter Cost center
* @property string $CostCenterDescription Cost center description
* @property string $CostUnit Cost unit
* @property string $CostUnitDescription Cost unit description
* @property string $CreatorFullName Name of creator
* @property string $Description Description of the material
* @property string $DetailDrawing Detail drawing reference
* @property int $Division Division code
* @property string $ItemVersion Bill of material version
* @property int $LineNumber Line number
* @property float $NetWeight Net weight
* @property string $NetWeightUnit Net weight unit of measure
* @property string $Notes Notes
* @property string $PartItem Key of part item
* @property string $PartItemCode Part item code
* @property float $PartItemCostPriceStandard Item standard cost available when standard cost method is used
* @property string $PartItemDescription Part item description
* @property float $Quantity Quantity of the material that ends up in the produced item
* @property float $QuantityBatch Quantity of the material needed to produce the batch including the waste
* @property string $RoutingStepID ID of the routing step
* @property string $syscreated Creation date
* @property string $syscreator User ID of creator
* @property string $sysmodified Modified date
* @property string $sysmodifier User ID of modifier
* @property int $Type Material type 1 indicates material, 2 indicates byproduct
* @property float $WastePercentage Waste percentage must be null or integer from 1 to 9999 (only available in Manufacturing Professional and Premium)
*/
class BillOfMaterialMaterial extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'AverageCost',
'Backflush',
'CalculatorType',
'CostBatch',
'CostCenter',
'CostCenterDescription',
'CostUnit',
'CostUnitDescription',
'CreatorFullName',
'Description',
'DetailDrawing',
'Division',
'ItemVersion',
'LineNumber',
'NetWeight',
'NetWeightUnit',
'Notes',
'PartItem',
'PartItemCode',
'PartItemCostPriceStandard',
'PartItemDescription',
'Quantity',
'QuantityBatch',
'RoutingStepID',
'syscreated',
'syscreator',
'sysmodified',
'sysmodifier',
'Type',
'WastePercentage',
];
protected $url = 'manufacturing/BillOfMaterialMaterials';
}