Netsutie PHP Toolkit
ServicePurchaseItem.php
Go to the documentation of this file.
1 <?php
8 class ServicePurchaseItem extends Record {
9 
18  public $createdDate;
19 
29 
39 
49 
58  public $cost;
59 
68  public $costUnits;
69 
78  public $issueProduct;
79 
89 
99 
108  public $isTaxable;
109 
118  public $matrixType;
119 
128  public $unitsType;
129 
139 
148  public $customForm;
149 
158  public $itemId;
159 
168  public $upcCode;
169 
178  public $displayName;
179 
188  public $vendorName;
189 
198  public $parent;
199 
208  public $isInactive;
209 
219 
228  public $department;
229 
238  public $class;
239 
248  public $location;
249 
259 
268  public $taxSchedule;
269 
279 
289 
298  public $residual;
299 
309 
319 
329 
339 
349 
359 
369 
379 
389 
399 
409 
418  public $currency;
419 
429 
439 
449 
459 
469 
479 
488  public $vendor;
489 
499 
508  public $internalId;
509 
518  public $externalId;
519 
520 
521 
522  static $paramtypesmap = array(
523 
524  "createdDate" => "dateTime",
525 
526  "lastModifiedDate" => "dateTime",
527 
528  "purchaseDescription" => "string",
529 
530  "manufacturingChargeItem" => "boolean",
531 
532  "cost" => "float",
533 
534  "costUnits" => "string",
535 
536  "issueProduct" => "RecordRef",
537 
538  "includeChildren" => "boolean",
539 
540  "expenseAccount" => "RecordRef",
541 
542  "isTaxable" => "boolean",
543 
544  "matrixType" => "ItemMatrixType",
545 
546  "unitsType" => "RecordRef",
547 
548  "purchaseUnit" => "RecordRef",
549 
550  "customForm" => "RecordRef",
551 
552  "itemId" => "string",
553 
554  "upcCode" => "string",
555 
556  "displayName" => "string",
557 
558  "vendorName" => "string",
559 
560  "parent" => "RecordRef",
561 
562  "isInactive" => "boolean",
563 
564  "availableToPartners" => "boolean",
565 
566  "department" => "RecordRef",
567 
568  "class" => "RecordRef",
569 
570  "location" => "RecordRef",
571 
572  "subsidiaryList" => "RecordRefList",
573 
574  "taxSchedule" => "RecordRef",
575 
576  "deferralAccount" => "RecordRef",
577 
578  "amortizationTemplate" => "RecordRef",
579 
580  "residual" => "string",
581 
582  "amortizationPeriod" => "integer",
583 
584  "isFulfillable" => "boolean",
585 
586  "generateAccruals" => "boolean",
587 
588  "accountingBookDetailList" => "ItemAccountingBookDetailList",
589 
590  "costCategory" => "RecordRef",
591 
592  "purchaseOrderQuantity" => "float",
593 
594  "purchaseOrderAmount" => "float",
595 
596  "purchaseOrderQuantityDiff" => "float",
597 
598  "receiptQuantity" => "float",
599 
600  "receiptAmount" => "float",
601 
602  "receiptQuantityDiff" => "float",
603 
604  "currency" => "string",
605 
606  "itemOptionsList" => "ItemOptionsList",
607 
608  "matrixOptionList" => "MatrixOptionList",
609 
610  "itemVendorList" => "ItemVendorList",
611 
612  "purchaseTaxCode" => "RecordRef",
613 
614  "salesTaxCode" => "RecordRef",
615 
616  "translationsList" => "TranslationList",
617 
618  "vendor" => "RecordRef",
619 
620  "customFieldList" => "CustomFieldList",
621 
622  "internalId" => "string",
623 
624  "externalId" => "string",
625 
626  );
627 
628 }
Definition: Record.php:8