Netsutie PHP Toolkit
SalesOrderItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $job;
19 
28  public $item;
29 
39 
49 
59 
68  public $quantity;
69 
78  public $units;
79 
89 
98  public $description;
99 
108  public $price;
109 
118  public $rate;
119 
129 
138  public $amount;
139 
148  public $isTaxable;
149 
159 
169 
178  public $licenseCode;
179 
188  public $options;
189 
198  public $department;
199 
208  public $class;
209 
218  public $location;
219 
228  public $createPo;
229 
238  public $createdPo;
239 
248  public $altSalesAmt;
249 
258  public $createWo;
259 
268  public $poVendor;
269 
278  public $poCurrency;
279 
288  public $poRate;
289 
299 
309 
319 
329 
338  public $deferRevRec;
339 
348  public $isClosed;
349 
359 
369 
378  public $fromJob;
379 
388  public $grossAmt;
389 
399 
408  public $isEstimate;
409 
418  public $line;
419 
429 
439 
449 
459 
469 
479 
489 
499 
509 
518  public $tax1Amt;
519 
528  public $taxCode;
529 
538  public $taxRate1;
539 
548  public $taxRate2;
549 
559 
569 
579 
589 
599 
608  public $shipGroup;
609 
619 
628  public $shipAddress;
629 
638  public $shipMethod;
639 
649 
659 
668  public $vsoePrice;
669 
678  public $vsoeAmount;
679 
689 
699 
709 
719 
729 
738  public $chargeType;
739 
749 
750 
751 
752  static $paramtypesmap = array(
753 
754  "job" => "RecordRef",
755 
756  "item" => "RecordRef",
757 
758  "quantityAvailable" => "float",
759 
760  "expandItemGroup" => "boolean",
761 
762  "quantityOnHand" => "float",
763 
764  "quantity" => "float",
765 
766  "units" => "RecordRef",
767 
768  "inventoryDetail" => "InventoryDetail",
769 
770  "description" => "string",
771 
772  "price" => "RecordRef",
773 
774  "rate" => "string",
775 
776  "serialNumbers" => "string",
777 
778  "amount" => "float",
779 
780  "isTaxable" => "boolean",
781 
782  "commitInventory" => "SalesOrderItemCommitInventory",
783 
784  "orderPriority" => "float",
785 
786  "licenseCode" => "string",
787 
788  "options" => "CustomFieldList",
789 
790  "department" => "RecordRef",
791 
792  "class" => "RecordRef",
793 
794  "location" => "RecordRef",
795 
796  "createPo" => "SalesOrderItemCreatePo",
797 
798  "createdPo" => "RecordRef",
799 
800  "altSalesAmt" => "float",
801 
802  "createWo" => "boolean",
803 
804  "poVendor" => "RecordRef",
805 
806  "poCurrency" => "string",
807 
808  "poRate" => "float",
809 
810  "revRecSchedule" => "RecordRef",
811 
812  "revRecStartDate" => "dateTime",
813 
814  "revRecTermInMonths" => "integer",
815 
816  "revRecEndDate" => "dateTime",
817 
818  "deferRevRec" => "boolean",
819 
820  "isClosed" => "boolean",
821 
822  "catchUpPeriod" => "RecordRef",
823 
824  "billingSchedule" => "RecordRef",
825 
826  "fromJob" => "boolean",
827 
828  "grossAmt" => "float",
829 
830  "excludeFromRateRequest" => "boolean",
831 
832  "isEstimate" => "boolean",
833 
834  "line" => "integer",
835 
836  "percentComplete" => "float",
837 
838  "costEstimateType" => "ItemCostEstimateType",
839 
840  "costEstimate" => "float",
841 
842  "quantityBackOrdered" => "float",
843 
844  "quantityBilled" => "float",
845 
846  "quantityCommitted" => "float",
847 
848  "quantityFulfilled" => "float",
849 
850  "quantityPacked" => "float",
851 
852  "quantityPicked" => "float",
853 
854  "tax1Amt" => "float",
855 
856  "taxCode" => "RecordRef",
857 
858  "taxRate1" => "float",
859 
860  "taxRate2" => "float",
861 
862  "giftCertFrom" => "string",
863 
864  "giftCertRecipientName" => "string",
865 
866  "giftCertRecipientEmail" => "string",
867 
868  "giftCertMessage" => "string",
869 
870  "giftCertNumber" => "string",
871 
872  "shipGroup" => "integer",
873 
874  "itemIsFulfilled" => "boolean",
875 
876  "shipAddress" => "RecordRef",
877 
878  "shipMethod" => "RecordRef",
879 
880  "vsoeSopGroup" => "VsoeSopGroup",
881 
882  "vsoeIsEstimate" => "boolean",
883 
884  "vsoePrice" => "float",
885 
886  "vsoeAmount" => "float",
887 
888  "vsoeAllocation" => "float",
889 
890  "vsoeDeferral" => "VsoeDeferral",
891 
892  "vsoePermitDiscount" => "VsoePermitDiscount",
893 
894  "vsoeDelivered" => "boolean",
895 
896  "expectedShipDate" => "dateTime",
897 
898  "chargeType" => "RecordRef",
899 
900  "customFieldList" => "CustomFieldList",
901 
902  );
903 
904 }