Netsutie PHP Toolkit
ProjectTaskAssignmentSearchBasic.php
Go to the documentation of this file.
1 <?php
9 
18  public $actualWork;
19 
28  public $cost;
29 
38  public $costBase;
39 
48  public $endDate;
49 
59 
69 
78  public $grossProfit;
79 
89 
98  public $internalId;
99 
109 
118  public $price;
119 
128  public $priceBase;
129 
138  public $resource;
139 
149 
158  public $serviceItem;
159 
169 
178  public $startDate;
179 
188  public $unitCost;
189 
199 
208  public $unitPrice;
209 
219 
228  public $units;
229 
239 
240 
241 
242  static $paramtypesmap = array(
243 
244  "actualWork" => "SearchDoubleField",
245 
246  "cost" => "SearchDoubleField",
247 
248  "costBase" => "SearchDoubleField",
249 
250  "endDate" => "SearchDateField",
251 
252  "estimatedWork" => "SearchDoubleField",
253 
254  "estimatedWorkBaseline" => "SearchDoubleField",
255 
256  "grossProfit" => "SearchDoubleField",
257 
258  "grossProfitBase" => "SearchDoubleField",
259 
260  "internalId" => "SearchMultiSelectField",
261 
262  "internalIdNumber" => "SearchLongField",
263 
264  "price" => "SearchDoubleField",
265 
266  "priceBase" => "SearchDoubleField",
267 
268  "resource" => "SearchMultiSelectField",
269 
270  "resourceName" => "SearchStringField",
271 
272  "serviceItem" => "SearchStringField",
273 
274  "serviceItemDesc" => "SearchStringField",
275 
276  "startDate" => "SearchDateField",
277 
278  "unitCost" => "SearchDoubleField",
279 
280  "unitCostBase" => "SearchDoubleField",
281 
282  "unitPrice" => "SearchDoubleField",
283 
284  "unitPriceBase" => "SearchDoubleField",
285 
286  "units" => "SearchDoubleField",
287 
288  "workCalendar" => "SearchMultiSelectField",
289 
290  );
291 
292 }