Netsutie PHP Toolkit
ItemReceiptItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $itemReceive;
19 
28  public $jobName;
29 
38  public $item;
39 
48  public $orderLine;
49 
58  public $line;
59 
68  public $itemName;
69 
78  public $description;
79 
88  public $location;
89 
98  public $onHand;
99 
109 
118  public $quantity;
119 
129 
139 
149 
159 
168  public $binNumbers;
169 
179 
188  public $rate;
189 
198  public $currency;
199 
208  public $restock;
209 
219 
229 
238  public $options;
239 
248  public $landedCost;
249 
259 
260 
261 
262  static $paramtypesmap = array(
263 
264  "itemReceive" => "boolean",
265 
266  "jobName" => "string",
267 
268  "item" => "RecordRef",
269 
270  "orderLine" => "integer",
271 
272  "line" => "integer",
273 
274  "itemName" => "string",
275 
276  "description" => "string",
277 
278  "location" => "RecordRef",
279 
280  "onHand" => "float",
281 
282  "quantityRemaining" => "float",
283 
284  "quantity" => "float",
285 
286  "unitsDisplay" => "string",
287 
288  "unitCostOverride" => "float",
289 
290  "inventoryDetail" => "InventoryDetail",
291 
292  "serialNumbers" => "string",
293 
294  "binNumbers" => "string",
295 
296  "expirationDate" => "dateTime",
297 
298  "rate" => "string",
299 
300  "currency" => "string",
301 
302  "restock" => "boolean",
303 
304  "billVarianceStatus" => "TransactionBillVarianceStatus",
305 
306  "isDropShipment" => "boolean",
307 
308  "options" => "CustomFieldList",
309 
310  "landedCost" => "LandedCost",
311 
312  "customFieldList" => "CustomFieldList",
313 
314  );
315 
316 }