Netsutie PHP Toolkit
PurchaseOrder.php
Go to the documentation of this file.
1 <?php
8 class PurchaseOrder extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $entity;
49 
59 
68  public $vatRegNum;
69 
78  public $employee;
79 
89 
98  public $tranDate;
99 
108  public $tranId;
109 
118  public $createdFrom;
119 
128  public $terms;
129 
138  public $dueDate;
139 
148  public $otherRefNum;
149 
158  public $memo;
159 
169 
179 
189 
198  public $source;
199 
209 
218  public $toBePrinted;
219 
228  public $toBeEmailed;
229 
238  public $email;
239 
248  public $toBeFaxed;
249 
258  public $fax;
259 
268  public $message;
269 
279 
289 
298  public $currency;
299 
308  public $shipTo;
309 
318  public $subTotal;
319 
328  public $taxTotal;
329 
338  public $tax2Total;
339 
349 
359 
369 
378  public $fob;
379 
388  public $shipDate;
389 
398  public $shipMethod;
399 
409 
419 
428  public $total;
429 
438  public $class;
439 
448  public $department;
449 
458  public $location;
459 
468  public $subsidiary;
469 
479 
489 
498  public $status;
499 
508  public $orderStatus;
509 
518  public $itemList;
519 
528  public $expenseList;
529 
539 
548  public $internalId;
549 
558  public $externalId;
559 
560 
561 
562  static $paramtypesmap = array(
563 
564  "createdDate" => "dateTime",
565 
566  "lastModifiedDate" => "dateTime",
567 
568  "customForm" => "RecordRef",
569 
570  "entity" => "RecordRef",
571 
572  "purchaseContract" => "RecordRef",
573 
574  "vatRegNum" => "string",
575 
576  "employee" => "RecordRef",
577 
578  "supervisorApproval" => "boolean",
579 
580  "tranDate" => "dateTime",
581 
582  "tranId" => "string",
583 
584  "createdFrom" => "RecordRef",
585 
586  "terms" => "RecordRef",
587 
588  "dueDate" => "dateTime",
589 
590  "otherRefNum" => "string",
591 
592  "memo" => "string",
593 
594  "approvalStatus" => "RecordRef",
595 
596  "exchangeRate" => "float",
597 
598  "nextApprover" => "RecordRef",
599 
600  "source" => "string",
601 
602  "currencyName" => "string",
603 
604  "toBePrinted" => "boolean",
605 
606  "toBeEmailed" => "boolean",
607 
608  "email" => "string",
609 
610  "toBeFaxed" => "boolean",
611 
612  "fax" => "string",
613 
614  "message" => "string",
615 
616  "billingAddress" => "Address",
617 
618  "billAddressList" => "RecordRef",
619 
620  "currency" => "RecordRef",
621 
622  "shipTo" => "RecordRef",
623 
624  "subTotal" => "float",
625 
626  "taxTotal" => "float",
627 
628  "tax2Total" => "float",
629 
630  "shippingAddress" => "Address",
631 
632  "shipIsResidential" => "boolean",
633 
634  "shipAddressList" => "RecordRef",
635 
636  "fob" => "string",
637 
638  "shipDate" => "dateTime",
639 
640  "shipMethod" => "RecordRef",
641 
642  "trackingNumbers" => "string",
643 
644  "linkedTrackingNumbers" => "string",
645 
646  "total" => "float",
647 
648  "class" => "RecordRef",
649 
650  "department" => "RecordRef",
651 
652  "location" => "RecordRef",
653 
654  "subsidiary" => "RecordRef",
655 
656  "intercoTransaction" => "RecordRef",
657 
658  "intercoStatus" => "IntercoStatus",
659 
660  "status" => "string",
661 
662  "orderStatus" => "PurchaseOrderOrderStatus",
663 
664  "itemList" => "PurchaseOrderItemList",
665 
666  "expenseList" => "PurchaseOrderExpenseList",
667 
668  "customFieldList" => "CustomFieldList",
669 
670  "internalId" => "string",
671 
672  "externalId" => "string",
673 
674  );
675 
676 }
static $paramtypesmap
Definition: Record.php:8