Netsutie PHP Toolkit
PurchaseOrderItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $item;
19 
28  public $line;
29 
38  public $vendorName;
39 
49 
59 
69 
79 
88  public $taxCode;
89 
98  public $taxRate1;
99 
108  public $taxRate2;
109 
118  public $quantity;
119 
128  public $tax1Amt;
129 
138  public $grossAmt;
139 
148  public $units;
149 
159 
169 
178  public $description;
179 
189 
198  public $rate;
199 
208  public $amount;
209 
218  public $options;
219 
228  public $department;
229 
238  public $class;
239 
248  public $location;
249 
259 
268  public $customer;
269 
278  public $isBillable;
279 
289 
299 
309 
318  public $isClosed;
319 
328  public $createdFrom;
329 
339 
349 
350 
351 
352  static $paramtypesmap = array(
353 
354  "item" => "RecordRef",
355 
356  "line" => "integer",
357 
358  "vendorName" => "string",
359 
360  "quantityReceived" => "float",
361 
362  "quantityBilled" => "float",
363 
364  "quantityAvailable" => "float",
365 
366  "quantityOnHand" => "float",
367 
368  "taxCode" => "RecordRef",
369 
370  "taxRate1" => "float",
371 
372  "taxRate2" => "float",
373 
374  "quantity" => "float",
375 
376  "tax1Amt" => "float",
377 
378  "grossAmt" => "float",
379 
380  "units" => "RecordRef",
381 
382  "inventoryDetail" => "InventoryDetail",
383 
384  "serialNumbers" => "string",
385 
386  "description" => "string",
387 
388  "purchaseContract" => "RecordRef",
389 
390  "rate" => "string",
391 
392  "amount" => "float",
393 
394  "options" => "CustomFieldList",
395 
396  "department" => "RecordRef",
397 
398  "class" => "RecordRef",
399 
400  "location" => "RecordRef",
401 
402  "landedCostCategory" => "RecordRef",
403 
404  "customer" => "RecordRef",
405 
406  "isBillable" => "boolean",
407 
408  "billVarianceStatus" => "TransactionBillVarianceStatus",
409 
410  "matchBillToReceipt" => "boolean",
411 
412  "expectedReceiptDate" => "dateTime",
413 
414  "isClosed" => "boolean",
415 
416  "createdFrom" => "RecordRef",
417 
418  "linkedOrderList" => "RecordRefList",
419 
420  "customFieldList" => "CustomFieldList",
421 
422  );
423 
424 }