Netsutie PHP Toolkit
OpportunityItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $job;
19 
28  public $item;
29 
38  public $line;
39 
49 
59 
68  public $quantity;
69 
78  public $units;
79 
88  public $description;
89 
98  public $price;
99 
108  public $rate;
109 
118  public $amount;
119 
128  public $altSalesAmt;
129 
139 
148  public $options;
149 
158  public $fromJob;
159 
168  public $department;
169 
178  public $isEstimate;
179 
188  public $location;
189 
198  public $class;
199 
209 
219 
228  public $grossAmt;
229 
238  public $tax1Amt;
239 
248  public $taxCode;
249 
258  public $taxRate1;
259 
268  public $taxRate2;
269 
279 
289 
290 
291 
292  static $paramtypesmap = array(
293 
294  "job" => "RecordRef",
295 
296  "item" => "RecordRef",
297 
298  "line" => "integer",
299 
300  "quantityAvailable" => "float",
301 
302  "quantityOnHand" => "float",
303 
304  "quantity" => "float",
305 
306  "units" => "RecordRef",
307 
308  "description" => "string",
309 
310  "price" => "RecordRef",
311 
312  "rate" => "string",
313 
314  "amount" => "float",
315 
316  "altSalesAmt" => "float",
317 
318  "revRecTermInMonths" => "integer",
319 
320  "options" => "CustomFieldList",
321 
322  "fromJob" => "boolean",
323 
324  "department" => "RecordRef",
325 
326  "isEstimate" => "boolean",
327 
328  "location" => "RecordRef",
329 
330  "class" => "RecordRef",
331 
332  "costEstimateType" => "ItemCostEstimateType",
333 
334  "costEstimate" => "float",
335 
336  "grossAmt" => "float",
337 
338  "tax1Amt" => "float",
339 
340  "taxCode" => "RecordRef",
341 
342  "taxRate1" => "float",
343 
344  "taxRate2" => "float",
345 
346  "expectedShipDate" => "dateTime",
347 
348  "customFieldList" => "CustomFieldList",
349 
350  );
351 
352 }