Netsutie PHP Toolkit
WorkOrderItem.php
Go to the documentation of this file.
1 <?php
8 class WorkOrderItem {
9 
18  public $line;
19 
28  public $item;
29 
39 
49 
58  public $bomQuantity;
59 
69 
79 
89 
98  public $averageCost;
99 
109 
119 
128  public $quantity;
129 
138  public $units;
139 
149 
159 
169 
178  public $options;
179 
188  public $department;
189 
198  public $class;
199 
208  public $location;
209 
218  public $poVendor;
219 
228  public $poRate;
229 
239 
249 
258  public $description;
259 
268  public $commit;
269 
278  public $createPo;
279 
288  public $createWo;
289 
299 
309 
310 
311 
312  static $paramtypesmap = array(
313 
314  "line" => "integer",
315 
316  "item" => "RecordRef",
317 
318  "operationSequenceNumber" => "integer",
319 
320  "componentYield" => "float",
321 
322  "bomQuantity" => "float",
323 
324  "quantityCommitted" => "float",
325 
326  "quantityBackOrdered" => "float",
327 
328  "quantityAvailable" => "float",
329 
330  "averageCost" => "float",
331 
332  "lastPurchasePrice" => "float",
333 
334  "quantityOnHand" => "float",
335 
336  "quantity" => "float",
337 
338  "units" => "RecordRef",
339 
340  "inventoryDetail" => "InventoryDetail",
341 
342  "serialNumbers" => "string",
343 
344  "orderPriority" => "float",
345 
346  "options" => "CustomFieldList",
347 
348  "department" => "RecordRef",
349 
350  "class" => "RecordRef",
351 
352  "location" => "RecordRef",
353 
354  "poVendor" => "RecordRef",
355 
356  "poRate" => "float",
357 
358  "percentComplete" => "float",
359 
360  "contribution" => "float",
361 
362  "description" => "string",
363 
364  "commit" => "WorkOrderItemItemCommitInventory",
365 
366  "createPo" => "WorkOrderItemItemCreatePo",
367 
368  "createWo" => "boolean",
369 
370  "plannedIssueDate" => "dateTime",
371 
372  "customFieldList" => "CustomFieldList",
373 
374  );
375 
376 }
static $paramtypesmap