-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathBillOfMaterialRouting.php
104 lines (100 loc) · 3.97 KB
/
BillOfMaterialRouting.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?php
namespace Picqer\Financials\Exact;
/**
* Class BillOfMaterialRouting.
*
* @see https://start.exactonline.nl/docs/HlpRestAPIResourcesDetails.aspx?name=ManufacturingBillOfMaterialRoutings
*
* @property string $ID Primary key
* @property string $Account Reference to Account providing the Outsourced item
* @property float $AttendedPercentage Attended Percentage
* @property int $Backflush Indicates if this is a backflush step
* @property float $CostPerItem Total cost / Batch quantity
* @property string $CreatedBy User ID of creator
* @property string $CreatedDate Creation date
* @property string $CreatorFullName Name of creator
* @property string $Currency Currency
* @property int $Division Division code
* @property float $EfficiencyPercentage Efficiency Percentage
* @property int $FactorType Conversion factor type between produced item and Subcontract purchase Unit
* @property float $GeneralBurden General Burden
* @property string $Item Reference to Items
* @property string $ItemVersion Reference to Item versions
* @property int $LineNumber Sequential order of the operation
* @property float $MachineBurden Machine Burden
* @property string $ModifiedBy User ID of modifier
* @property string $ModifiedDate Modification date
* @property string $ModifierFullName Name of modifier
* @property string $Notes Notes
* @property string $Operation Reference to Operations
* @property string $OperationDescription Description of the operation step
* @property string $OperationResource Reference to OperationResources
* @property string $PurchaseUnit Reference to Units
* @property float $PurchaseUnitFactor Purchase Unit Factor
* @property float $PurchaseUnitPriceFC Purchase Unit Price in the currency of the transaction
* @property float $PurchaseUnitQuantity Purchase unit quantity of the plan
* @property float $RateFC Rate FC
* @property string $ResourceDescription Resource Description
* @property int $RoutingStepType Reference to RoutingStepTypes (10-Work center, 20-Supplier)
* @property float $Run Used in conjunction with RunMethod, and EfficiencyPercentage to determine PlannedRunHours
* @property float $RunLabor Run Labor
* @property float $RunLaborBurden Run Labor Burden
* @property int $RunMethod Reference to OperationMethod (10-Fixed Hours, 20-Fixed Minutes, 25-Fixed Days, 30-Hours/Item, 40-Minutes/Item, 50-Seconds/Item, 60-Items/Hour, 70-Items/Minute)
* @property float $Setup Used in conjunction with SetupCount and Setup Unit to determine PlannedSetupHours
* @property float $SetupLabor Setup Labor
* @property float $SetupLaborBurden Setup Labor Burden
* @property string $SetupUnit Reference to TimeUnits
* @property int $SubcontractedLeadDays Subcontracted lead days
* @property float $TotalCostDC Total cost of the routing line
* @property string $Workcenter Reference to Workcenters
*/
class BillOfMaterialRouting extends Model
{
use Query\Findable;
use Persistance\Storable;
protected $fillable = [
'ID',
'Account',
'AttendedPercentage',
'Backflush',
'CostPerItem',
'CreatedBy',
'CreatedDate',
'CreatorFullName',
'Currency',
'Division',
'EfficiencyPercentage',
'FactorType',
'GeneralBurden',
'Item',
'ItemVersion',
'LineNumber',
'MachineBurden',
'ModifiedBy',
'ModifiedDate',
'ModifierFullName',
'Notes',
'Operation',
'OperationDescription',
'OperationResource',
'PurchaseUnit',
'PurchaseUnitFactor',
'PurchaseUnitPriceFC',
'PurchaseUnitQuantity',
'RateFC',
'ResourceDescription',
'RoutingStepType',
'Run',
'RunLabor',
'RunLaborBurden',
'RunMethod',
'Setup',
'SetupLabor',
'SetupLaborBurden',
'SetupUnit',
'SubcontractedLeadDays',
'TotalCostDC',
'Workcenter',
];
protected $url = 'manufacturing/BillOfMaterialRoutings';
}