Netsutie PHP Toolkit
VendorBill.php
Go to the documentation of this file.
1 <?php
8 class VendorBill extends Record {
9 
18  public $createdDate;
19 
29 
38  public $customForm;
39 
48  public $account;
49 
58  public $entity;
59 
68  public $subsidiary;
69 
79 
88  public $nextApprover;
89 
98  public $vatRegNum;
99 
109 
118  public $tranDate;
119 
129 
139 
148  public $terms;
149 
158  public $dueDate;
159 
169 
178  public $tranId;
179 
188  public $userTotal;
189 
199 
208  public $taxTotal;
209 
218  public $paymentHold;
219 
228  public $memo;
229 
238  public $tax2Total;
239 
248  public $creditLimit;
249 
258  public $currency;
259 
268  public $class;
269 
278  public $department;
279 
288  public $location;
289 
298  public $status;
299 
309 
319 
329 
338  public $expenseList;
339 
348  public $itemList;
349 
359 
369 
379 
388  public $internalId;
389 
398  public $externalId;
399 
400 
401 
402  static $paramtypesmap = array(
403 
404  "createdDate" => "dateTime",
405 
406  "lastModifiedDate" => "dateTime",
407 
408  "customForm" => "RecordRef",
409 
410  "account" => "RecordRef",
411 
412  "entity" => "RecordRef",
413 
414  "subsidiary" => "RecordRef",
415 
416  "approvalStatus" => "RecordRef",
417 
418  "nextApprover" => "RecordRef",
419 
420  "vatRegNum" => "string",
421 
422  "postingPeriod" => "RecordRef",
423 
424  "tranDate" => "dateTime",
425 
426  "currencyName" => "string",
427 
428  "exchangeRate" => "float",
429 
430  "terms" => "RecordRef",
431 
432  "dueDate" => "dateTime",
433 
434  "discountDate" => "dateTime",
435 
436  "tranId" => "string",
437 
438  "userTotal" => "float",
439 
440  "discountAmount" => "float",
441 
442  "taxTotal" => "float",
443 
444  "paymentHold" => "boolean",
445 
446  "memo" => "string",
447 
448  "tax2Total" => "float",
449 
450  "creditLimit" => "float",
451 
452  "currency" => "RecordRef",
453 
454  "class" => "RecordRef",
455 
456  "department" => "RecordRef",
457 
458  "location" => "RecordRef",
459 
460  "status" => "string",
461 
462  "landedCostMethod" => "LandedCostMethod",
463 
464  "landedCostPerLine" => "boolean",
465 
466  "transactionNumber" => "string",
467 
468  "expenseList" => "VendorBillExpenseList",
469 
470  "itemList" => "VendorBillItemList",
471 
472  "landedCostsList" => "PurchLandedCostList",
473 
474  "customFieldList" => "CustomFieldList",
475 
476  "purchaseOrderList" => "RecordRefList",
477 
478  "internalId" => "string",
479 
480  "externalId" => "string",
481 
482  );
483 
484 }
static $paramtypesmap
Definition: VendorBill.php:402
Definition: Record.php:8