Netsutie PHP Toolkit
CashSaleItem.php
Go to the documentation of this file.
1 <?php
8 class CashSaleItem {
9 
18  public $job;
19 
28  public $item;
29 
38  public $line;
39 
49 
59 
69 
78  public $quantity;
79 
88  public $units;
89 
99 
109 
118  public $binNumbers;
119 
128  public $description;
129 
138  public $price;
139 
148  public $rate;
149 
158  public $amount;
159 
168  public $orderLine;
169 
178  public $licenseCode;
179 
188  public $isTaxable;
189 
198  public $options;
199 
208  public $deferRevRec;
209 
219 
228  public $department;
229 
239 
248  public $class;
249 
258  public $location;
259 
269 
279 
289 
298  public $grossAmt;
299 
309 
319 
329 
339 
349 
358  public $tax1Amt;
359 
369 
379 
388  public $taxCode;
389 
398  public $taxRate1;
399 
408  public $taxRate2;
409 
419 
429 
439 
449 
459 
468  public $shipGroup;
469 
479 
488  public $shipAddress;
489 
498  public $shipMethod;
499 
509 
519 
528  public $vsoePrice;
529 
538  public $vsoeAmount;
539 
549 
559 
569 
579 
588  public $chargeType;
589 
598  public $chargesList;
599 
609 
610 
611 
612  static $paramtypesmap = array(
613 
614  "job" => "RecordRef",
615 
616  "item" => "RecordRef",
617 
618  "line" => "integer",
619 
620  "quantityAvailable" => "float",
621 
622  "quantityOnHand" => "float",
623 
624  "quantityFulfilled" => "float",
625 
626  "quantity" => "float",
627 
628  "units" => "RecordRef",
629 
630  "inventoryDetail" => "InventoryDetail",
631 
632  "serialNumbers" => "string",
633 
634  "binNumbers" => "string",
635 
636  "description" => "string",
637 
638  "price" => "RecordRef",
639 
640  "rate" => "string",
641 
642  "amount" => "float",
643 
644  "orderLine" => "integer",
645 
646  "licenseCode" => "string",
647 
648  "isTaxable" => "boolean",
649 
650  "options" => "CustomFieldList",
651 
652  "deferRevRec" => "boolean",
653 
654  "currentPercent" => "float",
655 
656  "department" => "RecordRef",
657 
658  "percentComplete" => "float",
659 
660  "class" => "RecordRef",
661 
662  "location" => "RecordRef",
663 
664  "revRecSchedule" => "RecordRef",
665 
666  "revRecStartDate" => "dateTime",
667 
668  "revRecEndDate" => "dateTime",
669 
670  "grossAmt" => "float",
671 
672  "costEstimateType" => "ItemCostEstimateType",
673 
674  "excludeFromRateRequest" => "boolean",
675 
676  "catchUpPeriod" => "RecordRef",
677 
678  "costEstimate" => "float",
679 
680  "amountOrdered" => "float",
681 
682  "tax1Amt" => "float",
683 
684  "quantityOrdered" => "float",
685 
686  "quantityRemaining" => "float",
687 
688  "taxCode" => "RecordRef",
689 
690  "taxRate1" => "float",
691 
692  "taxRate2" => "float",
693 
694  "giftCertFrom" => "string",
695 
696  "giftCertRecipientName" => "string",
697 
698  "giftCertRecipientEmail" => "string",
699 
700  "giftCertMessage" => "string",
701 
702  "giftCertNumber" => "string",
703 
704  "shipGroup" => "integer",
705 
706  "itemIsFulfilled" => "boolean",
707 
708  "shipAddress" => "RecordRef",
709 
710  "shipMethod" => "RecordRef",
711 
712  "vsoeSopGroup" => "VsoeSopGroup",
713 
714  "vsoeIsEstimate" => "boolean",
715 
716  "vsoePrice" => "float",
717 
718  "vsoeAmount" => "float",
719 
720  "vsoeAllocation" => "float",
721 
722  "vsoeDeferral" => "VsoeDeferral",
723 
724  "vsoePermitDiscount" => "VsoePermitDiscount",
725 
726  "vsoeDelivered" => "boolean",
727 
728  "chargeType" => "RecordRef",
729 
730  "chargesList" => "RecordRefList",
731 
732  "customFieldList" => "CustomFieldList",
733 
734  );
735 
736 }
static $paramtypesmap