Netsutie PHP Toolkit
InterCompanyTransferOrderItem.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 
98  public $quantity;
99 
108  public $rate;
109 
118  public $units;
119 
128  public $amount;
129 
138  public $description;
139 
149 
159 
168  public $options;
169 
178  public $department;
179 
188  public $class;
189 
199 
208  public $averageCost;
209 
219 
220 
221 
222  static $paramtypesmap = array(
223 
224  "item" => "RecordRef",
225 
226  "line" => "integer",
227 
228  "quantityAvailable" => "float",
229 
230  "quantityOnHand" => "float",
231 
232  "quantityBackOrdered" => "float",
233 
234  "quantityCommitted" => "float",
235 
236  "quantityFulfilled" => "float",
237 
238  "quantityReceived" => "float",
239 
240  "quantity" => "float",
241 
242  "rate" => "float",
243 
244  "units" => "RecordRef",
245 
246  "amount" => "float",
247 
248  "description" => "string",
249 
250  "inventoryDetail" => "InventoryDetail",
251 
252  "commitInventory" => "TransferOrderItemCommitInventory",
253 
254  "options" => "CustomFieldList",
255 
256  "department" => "RecordRef",
257 
258  "class" => "RecordRef",
259 
260  "lastPurchasePrice" => "float",
261 
262  "averageCost" => "float",
263 
264  "customFieldList" => "CustomFieldList",
265 
266  );
267 
268 }