Netsutie PHP Toolkit
InventoryNumberSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
19 
28  public $externalId;
29 
39 
48  public $internalId;
49 
59 
69 
78  public $isOnHand;
79 
88  public $item;
89 
98  public $location;
99 
108  public $memo;
109 
119 
129 
139 
149 
159 
160 
161 
162  static $paramtypesmap = array(
163 
164  "expirationDate" => "SearchDateField",
165 
166  "externalId" => "SearchMultiSelectField",
167 
168  "externalIdString" => "SearchStringField",
169 
170  "internalId" => "SearchMultiSelectField",
171 
172  "internalIdNumber" => "SearchLongField",
173 
174  "inventoryNumber" => "SearchStringField",
175 
176  "isOnHand" => "SearchBooleanField",
177 
178  "item" => "SearchMultiSelectField",
179 
180  "location" => "SearchMultiSelectField",
181 
182  "memo" => "SearchStringField",
183 
184  "quantityAvailable" => "SearchDoubleField",
185 
186  "quantityInTransit" => "SearchDoubleField",
187 
188  "quantityOnHand" => "SearchDoubleField",
189 
190  "quantityOnOrder" => "SearchDoubleField",
191 
192  "customFieldList" => "SearchCustomFieldList",
193 
194  );
195 
196 }