Netsutie PHP Toolkit
ManufacturingRouting.php
Go to the documentation of this file.
1 <?php
8 class ManufacturingRouting extends Record {
9 
18  public $customForm;
19 
28  public $subsidiary;
29 
38  public $item;
39 
48  public $locationList;
49 
58  public $name;
59 
68  public $memo;
69 
78  public $isDefault;
79 
88  public $isInactive;
89 
99 
109 
119 
129 
138  public $internalId;
139 
148  public $externalId;
149 
150 
151 
152  static $paramtypesmap = array(
153 
154  "customForm" => "RecordRef",
155 
156  "subsidiary" => "RecordRef",
157 
158  "item" => "RecordRef",
159 
160  "locationList" => "RecordRefList",
161 
162  "name" => "string",
163 
164  "memo" => "string",
165 
166  "isDefault" => "boolean",
167 
168  "isInactive" => "boolean",
169 
170  "autoCalculateLag" => "boolean",
171 
172  "routingStepList" => "ManufacturingRoutingRoutingStepList",
173 
174  "routingComponentList" => "ManufacturingRoutingRoutingComponentList",
175 
176  "customFieldList" => "CustomFieldList",
177 
178  "internalId" => "string",
179 
180  "externalId" => "string",
181 
182  );
183 
184 }
Definition: Record.php:8