Netsutie PHP Toolkit
ReturnAuthorizationItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $job;
19 
28  public $item;
29 
38  public $orderLine;
39 
48  public $line;
49 
58  public $quantity;
59 
69 
79 
88  public $units;
89 
99 
108  public $description;
109 
119 
128  public $price;
129 
138  public $rate;
139 
148  public $amount;
149 
158  public $options;
159 
169 
178  public $deferRevRec;
179 
188  public $isClosed;
189 
199 
209 
218  public $department;
219 
229 
239 
248  public $class;
249 
258  public $location;
259 
269 
279 
289 
298  public $taxCode;
299 
308  public $taxRate1;
309 
318  public $taxRate2;
319 
328  public $tax1Amt;
329 
338  public $grossAmt;
339 
348  public $isTaxable;
349 
359 
369 
379 
389 
399 
409 
419 
428  public $vsoePrice;
429 
438  public $vsoeAmount;
439 
448  public $altSalesAmt;
449 
459 
469 
479 
489 
499 
500 
501 
502  static $paramtypesmap = array(
503 
504  "job" => "RecordRef",
505 
506  "item" => "RecordRef",
507 
508  "orderLine" => "integer",
509 
510  "line" => "integer",
511 
512  "quantity" => "float",
513 
514  "quantityReceived" => "float",
515 
516  "quantityBilled" => "float",
517 
518  "units" => "RecordRef",
519 
520  "inventoryDetail" => "InventoryDetail",
521 
522  "description" => "string",
523 
524  "serialNumbers" => "string",
525 
526  "price" => "RecordRef",
527 
528  "rate" => "string",
529 
530  "amount" => "float",
531 
532  "options" => "CustomFieldList",
533 
534  "revRecTermInMonths" => "integer",
535 
536  "deferRevRec" => "boolean",
537 
538  "isClosed" => "boolean",
539 
540  "isDropShipment" => "boolean",
541 
542  "catchUpPeriod" => "RecordRef",
543 
544  "department" => "RecordRef",
545 
546  "costEstimateType" => "ItemCostEstimateType",
547 
548  "costEstimate" => "float",
549 
550  "class" => "RecordRef",
551 
552  "location" => "RecordRef",
553 
554  "revRecSchedule" => "RecordRef",
555 
556  "revRecStartDate" => "dateTime",
557 
558  "revRecEndDate" => "dateTime",
559 
560  "taxCode" => "RecordRef",
561 
562  "taxRate1" => "float",
563 
564  "taxRate2" => "float",
565 
566  "tax1Amt" => "float",
567 
568  "grossAmt" => "float",
569 
570  "isTaxable" => "boolean",
571 
572  "giftCertFrom" => "string",
573 
574  "giftCertRecipientName" => "string",
575 
576  "giftCertRecipientEmail" => "string",
577 
578  "giftCertMessage" => "string",
579 
580  "giftCertNumber" => "string",
581 
582  "vsoeSopGroup" => "VsoeSopGroup",
583 
584  "vsoeIsEstimate" => "boolean",
585 
586  "vsoePrice" => "float",
587 
588  "vsoeAmount" => "float",
589 
590  "altSalesAmt" => "float",
591 
592  "vsoeAllocation" => "float",
593 
594  "vsoeDeferral" => "VsoeDeferral",
595 
596  "vsoePermitDiscount" => "VsoePermitDiscount",
597 
598  "vsoeDelivered" => "boolean",
599 
600  "customFieldList" => "CustomFieldList",
601 
602  );
603 
604 }