Netsutie PHP Toolkit
CreditMemo.php
Go to the documentation of this file.
1 <?php
8 class CreditMemo extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $currency;
49 
58  public $entity;
59 
68  public $vatRegNum;
69 
78  public $tranDate;
79 
88  public $tranId;
89 
98  public $createdFrom;
99 
109 
118  public $department;
119 
128  public $class;
129 
138  public $location;
139 
148  public $subsidiary;
149 
158  public $job;
159 
168  public $salesRep;
169 
178  public $partner;
179 
188  public $contribPct;
189 
198  public $otherRefNum;
199 
208  public $memo;
209 
219 
228  public $leadSource;
229 
238  public $balance;
239 
248  public $account;
249 
259 
269 
278  public $amountPaid;
279 
289 
299 
309 
319 
329 
338  public $promoCode;
339 
349 
359 
368  public $source;
369 
379 
388  public $isTaxable;
389 
398  public $taxItem;
399 
408  public $taxRate;
409 
418  public $unapplied;
419 
428  public $autoApply;
429 
438  public $applied;
439 
448  public $toBePrinted;
449 
458  public $toBeEmailed;
459 
468  public $email;
469 
478  public $toBeFaxed;
479 
488  public $fax;
489 
498  public $messageSel;
499 
508  public $message;
509 
519 
529 
538  public $shipMethod;
539 
549 
559 
569 
579 
589 
599 
609 
619 
628  public $subTotal;
629 
639 
649 
659 
669 
679 
688  public $taxTotal;
689 
698  public $tax2Total;
699 
709 
719 
728  public $total;
729 
738  public $salesGroup;
739 
749 
758  public $status;
759 
768  public $giftCert;
769 
779 
789 
799 
809 
819 
829 
839 
848  public $itemList;
849 
859 
868  public $applyList;
869 
879 
888  public $internalId;
889 
898  public $externalId;
899 
900 
901 
902  static $paramtypesmap = array(
903 
904  "createdDate" => "dateTime",
905 
906  "lastModifiedDate" => "dateTime",
907 
908  "customForm" => "RecordRef",
909 
910  "currency" => "RecordRef",
911 
912  "entity" => "RecordRef",
913 
914  "vatRegNum" => "string",
915 
916  "tranDate" => "dateTime",
917 
918  "tranId" => "string",
919 
920  "createdFrom" => "RecordRef",
921 
922  "postingPeriod" => "RecordRef",
923 
924  "department" => "RecordRef",
925 
926  "class" => "RecordRef",
927 
928  "location" => "RecordRef",
929 
930  "subsidiary" => "RecordRef",
931 
932  "job" => "RecordRef",
933 
934  "salesRep" => "RecordRef",
935 
936  "partner" => "RecordRef",
937 
938  "contribPct" => "string",
939 
940  "otherRefNum" => "string",
941 
942  "memo" => "string",
943 
944  "excludeCommission" => "boolean",
945 
946  "leadSource" => "RecordRef",
947 
948  "balance" => "float",
949 
950  "account" => "RecordRef",
951 
952  "exchangeRate" => "float",
953 
954  "onCreditHold" => "string",
955 
956  "amountPaid" => "float",
957 
958  "salesEffectiveDate" => "dateTime",
959 
960  "totalCostEstimate" => "float",
961 
962  "estGrossProfit" => "float",
963 
964  "estGrossProfitPercent" => "float",
965 
966  "currencyName" => "string",
967 
968  "promoCode" => "RecordRef",
969 
970  "amountRemaining" => "float",
971 
972  "discountItem" => "RecordRef",
973 
974  "source" => "string",
975 
976  "discountRate" => "string",
977 
978  "isTaxable" => "boolean",
979 
980  "taxItem" => "RecordRef",
981 
982  "taxRate" => "float",
983 
984  "unapplied" => "float",
985 
986  "autoApply" => "boolean",
987 
988  "applied" => "float",
989 
990  "toBePrinted" => "boolean",
991 
992  "toBeEmailed" => "boolean",
993 
994  "email" => "string",
995 
996  "toBeFaxed" => "boolean",
997 
998  "fax" => "string",
999 
1000  "messageSel" => "RecordRef",
1001 
1002  "message" => "string",
1003 
1004  "billingAddress" => "Address",
1005 
1006  "billAddressList" => "RecordRef",
1007 
1008  "shipMethod" => "RecordRef",
1009 
1010  "shippingCost" => "float",
1011 
1012  "shippingTax1Rate" => "float",
1013 
1014  "shippingTaxCode" => "RecordRef",
1015 
1016  "handlingTaxCode" => "RecordRef",
1017 
1018  "shippingTax2Rate" => "string",
1019 
1020  "handlingTax1Rate" => "float",
1021 
1022  "handlingTax2Rate" => "string",
1023 
1024  "handlingCost" => "float",
1025 
1026  "subTotal" => "float",
1027 
1028  "discountTotal" => "float",
1029 
1030  "revenueStatus" => "RevenueStatus",
1031 
1032  "recognizedRevenue" => "float",
1033 
1034  "deferredRevenue" => "float",
1035 
1036  "revRecOnRevCommitment" => "boolean",
1037 
1038  "taxTotal" => "float",
1039 
1040  "tax2Total" => "float",
1041 
1042  "altShippingCost" => "float",
1043 
1044  "altHandlingCost" => "float",
1045 
1046  "total" => "float",
1047 
1048  "salesGroup" => "RecordRef",
1049 
1050  "syncSalesTeams" => "boolean",
1051 
1052  "status" => "string",
1053 
1054  "giftCert" => "RecordRef",
1055 
1056  "giftCertTotal" => "float",
1057 
1058  "giftCertApplied" => "float",
1059 
1060  "giftCertAvailable" => "float",
1061 
1062  "tranIsVsoeBundle" => "boolean",
1063 
1064  "vsoeAutoCalc" => "boolean",
1065 
1066  "syncPartnerTeams" => "boolean",
1067 
1068  "salesTeamList" => "CreditMemoSalesTeamList",
1069 
1070  "itemList" => "CreditMemoItemList",
1071 
1072  "partnersList" => "CreditMemoPartnersList",
1073 
1074  "applyList" => "CreditMemoApplyList",
1075 
1076  "customFieldList" => "CustomFieldList",
1077 
1078  "internalId" => "string",
1079 
1080  "externalId" => "string",
1081 
1082  );
1083 
1084 }
$revRecOnRevCommitment
Definition: CreditMemo.php:678
$estGrossProfitPercent
Definition: CreditMemo.php:318
static $paramtypesmap
Definition: CreditMemo.php:902
Definition: Record.php:8