Netsutie PHP Toolkit
WorkOrderCompletion.php
Go to the documentation of this file.
1 <?php
8 class WorkOrderCompletion extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $tranId;
49 
58  public $item;
59 
68  public $quantity;
69 
79 
88  public $units;
89 
98  public $isBackflush;
99 
109 
118  public $total;
119 
128  public $createdFrom;
129 
139 
148  public $tranDate;
149 
159 
168  public $memo;
169 
178  public $subsidiary;
179 
188  public $department;
189 
198  public $class;
199 
208  public $location;
209 
218  public $revision;
219 
229 
239 
249 
259 
269 
279 
289 
298  public $internalId;
299 
308  public $externalId;
309 
310 
311 
312  static $paramtypesmap = array(
313 
314  "createdDate" => "dateTime",
315 
316  "lastModifiedDate" => "dateTime",
317 
318  "customForm" => "RecordRef",
319 
320  "tranId" => "string",
321 
322  "item" => "RecordRef",
323 
324  "quantity" => "float",
325 
326  "scrapQuantity" => "float",
327 
328  "units" => "RecordRef",
329 
330  "isBackflush" => "boolean",
331 
332  "orderQuantity" => "float",
333 
334  "total" => "float",
335 
336  "createdFrom" => "RecordRef",
337 
338  "inventoryDetail" => "InventoryDetail",
339 
340  "tranDate" => "dateTime",
341 
342  "postingPeriod" => "RecordRef",
343 
344  "memo" => "string",
345 
346  "subsidiary" => "RecordRef",
347 
348  "department" => "RecordRef",
349 
350  "class" => "RecordRef",
351 
352  "location" => "RecordRef",
353 
354  "revision" => "RecordRef",
355 
356  "startOperation" => "RecordRef",
357 
358  "endOperation" => "RecordRef",
359 
360  "completedQuantity" => "float",
361 
362  "manufacturingRouting" => "RecordRef",
363 
364  "componentList" => "WorkOrderCompletionComponentList",
365 
366  "operationList" => "WorkOrderCompletionOperationList",
367 
368  "customFieldList" => "CustomFieldList",
369 
370  "internalId" => "string",
371 
372  "externalId" => "string",
373 
374  );
375 
376 }
Definition: Record.php:8