Netsutie PHP Toolkit
InventoryAdjustmentInventory.php
Go to the documentation of this file.
1 <?php
9 
18  public $item;
19 
28  public $line;
29 
39 
48  public $description;
49 
58  public $location;
59 
68  public $units;
69 
79 
88  public $currentValue;
89 
98  public $adjustQtyBy;
99 
108  public $binNumbers;
109 
119 
128  public $newQuantity;
129 
138  public $unitCost;
139 
149 
158  public $memo;
159 
168  public $currency;
169 
179 
189 
190 
191 
192  static $paramtypesmap = array(
193 
194  "item" => "RecordRef",
195 
196  "line" => "integer",
197 
198  "inventoryDetail" => "InventoryDetail",
199 
200  "description" => "string",
201 
202  "location" => "RecordRef",
203 
204  "units" => "RecordRef",
205 
206  "quantityOnHand" => "float",
207 
208  "currentValue" => "float",
209 
210  "adjustQtyBy" => "float",
211 
212  "binNumbers" => "string",
213 
214  "serialNumbers" => "string",
215 
216  "newQuantity" => "float",
217 
218  "unitCost" => "float",
219 
220  "foreignCurrencyUnitCost" => "float",
221 
222  "memo" => "string",
223 
224  "currency" => "string",
225 
226  "expirationDate" => "dateTime",
227 
228  "exchangeRate" => "float",
229 
230  );
231 
232 }