Netsutie PHP Toolkit
VendorBillExpense.php
Go to the documentation of this file.
1 <?php
9 
18  public $orderDoc;
19 
28  public $orderLine;
29 
38  public $line;
39 
48  public $category;
49 
58  public $account;
59 
68  public $amount;
69 
78  public $tax1Amt;
79 
88  public $memo;
89 
98  public $grossAmt;
99 
108  public $department;
109 
118  public $class;
119 
128  public $location;
129 
138  public $customer;
139 
148  public $isBillable;
149 
158  public $taxCode;
159 
168  public $taxRate1;
169 
178  public $taxRate2;
179 
189 
199 
209 
219 
229 
230 
231 
232  static $paramtypesmap = array(
233 
234  "orderDoc" => "integer",
235 
236  "orderLine" => "integer",
237 
238  "line" => "integer",
239 
240  "category" => "RecordRef",
241 
242  "account" => "RecordRef",
243 
244  "amount" => "float",
245 
246  "tax1Amt" => "float",
247 
248  "memo" => "string",
249 
250  "grossAmt" => "float",
251 
252  "department" => "RecordRef",
253 
254  "class" => "RecordRef",
255 
256  "location" => "RecordRef",
257 
258  "customer" => "RecordRef",
259 
260  "isBillable" => "boolean",
261 
262  "taxCode" => "RecordRef",
263 
264  "taxRate1" => "float",
265 
266  "taxRate2" => "float",
267 
268  "amortizationSched" => "RecordRef",
269 
270  "amortizStartDate" => "dateTime",
271 
272  "amortizationEndDate" => "dateTime",
273 
274  "amortizationResidual" => "string",
275 
276  "customFieldList" => "CustomFieldList",
277 
278  );
279 
280 }