Netsutie PHP Toolkit
EstimateItem.php
Go to the documentation of this file.
1 <?php
8 class EstimateItem {
9 
18  public $job;
19 
28  public $item;
29 
38  public $line;
39 
49 
59 
69 
78  public $quantity;
79 
88  public $units;
89 
98  public $description;
99 
109 
118  public $price;
119 
128  public $rate;
129 
138  public $amount;
139 
148  public $options;
149 
159 
168  public $department;
169 
178  public $class;
179 
188  public $location;
189 
198  public $isTaxable;
199 
208  public $altSalesAmt;
209 
218  public $fromJob;
219 
228  public $grossAmt;
229 
238  public $isEstimate;
239 
248  public $tax1Amt;
249 
258  public $taxCode;
259 
269 
279 
289 
298  public $taxRate1;
299 
308  public $taxRate2;
309 
318  public $shipGroup;
319 
329 
338  public $shipAddress;
339 
348  public $shipMethod;
349 
359 
368  public $chargeType;
369 
379 
380 
381 
382  static $paramtypesmap = array(
383 
384  "job" => "RecordRef",
385 
386  "item" => "RecordRef",
387 
388  "line" => "integer",
389 
390  "expandItemGroup" => "boolean",
391 
392  "quantityAvailable" => "float",
393 
394  "quantityOnHand" => "float",
395 
396  "quantity" => "float",
397 
398  "units" => "RecordRef",
399 
400  "description" => "string",
401 
402  "serialNumbers" => "string",
403 
404  "price" => "RecordRef",
405 
406  "rate" => "string",
407 
408  "amount" => "float",
409 
410  "options" => "CustomFieldList",
411 
412  "revRecTermInMonths" => "integer",
413 
414  "department" => "RecordRef",
415 
416  "class" => "RecordRef",
417 
418  "location" => "RecordRef",
419 
420  "isTaxable" => "boolean",
421 
422  "altSalesAmt" => "float",
423 
424  "fromJob" => "boolean",
425 
426  "grossAmt" => "float",
427 
428  "isEstimate" => "boolean",
429 
430  "tax1Amt" => "float",
431 
432  "taxCode" => "RecordRef",
433 
434  "costEstimateType" => "ItemCostEstimateType",
435 
436  "costEstimate" => "float",
437 
438  "excludeFromRateRequest" => "boolean",
439 
440  "taxRate1" => "float",
441 
442  "taxRate2" => "float",
443 
444  "shipGroup" => "integer",
445 
446  "itemIsFulfilled" => "boolean",
447 
448  "shipAddress" => "RecordRef",
449 
450  "shipMethod" => "RecordRef",
451 
452  "expectedShipDate" => "dateTime",
453 
454  "chargeType" => "RecordRef",
455 
456  "customFieldList" => "CustomFieldList",
457 
458  );
459 
460 }
static $paramtypesmap