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