Netsutie PHP Toolkit
InventoryItemLocations.php
Go to the documentation of this file.
1 <?php
9 
18  public $location;
19 
29 
39 
49 
59 
68  public $reorderPoint;
69 
79 
88  public $leadTime;
89 
99 
109 
118  public $cost;
119 
129 
138  public $buildTime;
139 
149 
159 
168  public $isWip;
169 
179 
189 
199 
209 
219 
229 
239 
248  public $locationId;
249 
259 
269 
279 
289 
299 
308  public $supplyType;
309 
319 
329 
339 
349 
359 
369 
379 
389 
390 
391 
392  static $paramtypesmap = array(
393 
394  "location" => "string",
395 
396  "quantityOnHand" => "float",
397 
398  "onHandValueMli" => "float",
399 
400  "averageCostMli" => "float",
401 
402  "lastPurchasePriceMli" => "float",
403 
404  "reorderPoint" => "float",
405 
406  "preferredStockLevel" => "float",
407 
408  "leadTime" => "integer",
409 
410  "defaultReturnCost" => "float",
411 
412  "safetyStockLevel" => "float",
413 
414  "cost" => "float",
415 
416  "inventoryCostTemplate" => "RecordRef",
417 
418  "buildTime" => "float",
419 
420  "lastInvtCountDate" => "dateTime",
421 
422  "nextInvtCountDate" => "dateTime",
423 
424  "isWip" => "boolean",
425 
426  "invtCountInterval" => "integer",
427 
428  "invtClassification" => "ItemInvtClassification",
429 
430  "costingLotSize" => "float",
431 
432  "quantityOnOrder" => "float",
433 
434  "quantityCommitted" => "float",
435 
436  "quantityAvailable" => "float",
437 
438  "quantityBackOrdered" => "float",
439 
440  "locationId" => "RecordRef",
441 
442  "supplyReplenishmentMethod" => "RecordRef",
443 
444  "alternateDemandSourceItem" => "RecordRef",
445 
446  "fixedLotSize" => "float",
447 
448  "periodicLotSizeType" => "PeriodicLotSizeType",
449 
450  "periodicLotSizeDays" => "integer",
451 
452  "supplyType" => "RecordRef",
453 
454  "supplyLotSizingMethod" => "RecordRef",
455 
456  "demandSource" => "RecordRef",
457 
458  "backwardConsumptionDays" => "integer",
459 
460  "forwardConsumptionDays" => "integer",
461 
462  "demandTimeFence" => "integer",
463 
464  "supplyTimeFence" => "integer",
465 
466  "rescheduleInDays" => "integer",
467 
468  "rescheduleOutDays" => "integer",
469 
470  );
471 
472 }