Netsutie PHP Toolkit
PurchaseRequisitionItem.php
Go to the documentation of this file.
1 <?php
9 
18  public $line;
19 
28  public $item;
29 
38  public $vendorName;
39 
48  public $poVendor;
49 
58  public $quantity;
59 
68  public $units;
69 
79 
89 
98  public $description;
99 
109 
119 
128  public $rate;
129 
138  public $amount;
139 
148  public $taxCode;
149 
158  public $taxRate1;
159 
168  public $taxRate2;
169 
178  public $grossAmt;
179 
188  public $options;
189 
198  public $department;
199 
208  public $class;
209 
218  public $customer;
219 
228  public $isBillable;
229 
239 
249 
259 
268  public $isClosed;
269 
279 
280 
281 
282  static $paramtypesmap = array(
283 
284  "line" => "integer",
285 
286  "item" => "RecordRef",
287 
288  "vendorName" => "string",
289 
290  "poVendor" => "RecordRef",
291 
292  "quantity" => "float",
293 
294  "units" => "RecordRef",
295 
296  "serialNumbers" => "string",
297 
298  "inventoryDetail" => "InventoryDetail",
299 
300  "description" => "string",
301 
302  "estimatedRate" => "float",
303 
304  "estimatedAmount" => "float",
305 
306  "rate" => "string",
307 
308  "amount" => "float",
309 
310  "taxCode" => "RecordRef",
311 
312  "taxRate1" => "float",
313 
314  "taxRate2" => "float",
315 
316  "grossAmt" => "float",
317 
318  "options" => "CustomFieldList",
319 
320  "department" => "RecordRef",
321 
322  "class" => "RecordRef",
323 
324  "customer" => "RecordRef",
325 
326  "isBillable" => "boolean",
327 
328  "linkedOrderList" => "RecordRefList",
329 
330  "linkedOrderStatus" => "string",
331 
332  "expectedReceiptDate" => "dateTime",
333 
334  "isClosed" => "boolean",
335 
336  "expandItemGroup" => "boolean",
337 
338  );
339 
340 }