Netsutie PHP Toolkit
InventoryAdjustment.php
Go to the documentation of this file.
1 <?php
8 class InventoryAdjustment extends Record {
9 
19 
28  public $tranDate;
29 
38  public $createdDate;
39 
48  public $tranId;
49 
59 
68  public $subsidiary;
69 
78  public $account;
79 
88  public $customForm;
89 
99 
108  public $customer;
109 
118  public $department;
119 
128  public $class;
129 
138  public $adjLocation;
139 
148  public $location;
149 
158  public $memo;
159 
169 
179 
188  public $internalId;
189 
198  public $externalId;
199 
200 
201 
202  static $paramtypesmap = array(
203 
204  "postingPeriod" => "RecordRef",
205 
206  "tranDate" => "dateTime",
207 
208  "createdDate" => "dateTime",
209 
210  "tranId" => "string",
211 
212  "lastModifiedDate" => "dateTime",
213 
214  "subsidiary" => "RecordRef",
215 
216  "account" => "RecordRef",
217 
218  "customForm" => "RecordRef",
219 
220  "estimatedTotalValue" => "float",
221 
222  "customer" => "RecordRef",
223 
224  "department" => "RecordRef",
225 
226  "class" => "RecordRef",
227 
228  "adjLocation" => "RecordRef",
229 
230  "location" => "RecordRef",
231 
232  "memo" => "string",
233 
234  "inventoryList" => "InventoryAdjustmentInventoryList",
235 
236  "customFieldList" => "CustomFieldList",
237 
238  "internalId" => "string",
239 
240  "externalId" => "string",
241 
242  );
243 
244 }
Definition: Record.php:8