Netsutie PHP Toolkit
TransferOrderItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $item;
19 
28  public $line;
29 
39 
49 
59 
69 
79 
89 
99 
109 
118  public $quantity;
119 
128  public $rate;
129 
138  public $units;
139 
148  public $amount;
149 
158  public $description;
159 
169 
179 
189 
199 
208  public $options;
209 
218  public $isClosed;
219 
228  public $department;
229 
238  public $class;
239 
249 
258  public $averageCost;
259 
269 
279 
289 
290 
291 
292  static $paramtypesmap = array(
293 
294  "item" => "RecordRef",
295 
296  "line" => "integer",
297 
298  "quantityAvailable" => "float",
299 
300  "quantityOnHand" => "float",
301 
302  "quantityBackOrdered" => "float",
303 
304  "quantityCommitted" => "float",
305 
306  "quantityFulfilled" => "float",
307 
308  "quantityPacked" => "float",
309 
310  "quantityPicked" => "float",
311 
312  "quantityReceived" => "float",
313 
314  "quantity" => "float",
315 
316  "rate" => "float",
317 
318  "units" => "RecordRef",
319 
320  "amount" => "float",
321 
322  "description" => "string",
323 
324  "inventoryDetail" => "InventoryDetail",
325 
326  "serialNumbers" => "string",
327 
328  "commitInventory" => "TransferOrderItemCommitInventory",
329 
330  "orderPriority" => "float",
331 
332  "options" => "CustomFieldList",
333 
334  "isClosed" => "boolean",
335 
336  "department" => "RecordRef",
337 
338  "class" => "RecordRef",
339 
340  "lastPurchasePrice" => "float",
341 
342  "averageCost" => "float",
343 
344  "expectedShipDate" => "dateTime",
345 
346  "expectedReceiptDate" => "dateTime",
347 
348  "customFieldList" => "CustomFieldList",
349 
350  );
351 
352 }