Netsutie PHP Toolkit
CashSaleExpCost.php
Go to the documentation of this file.
1 <?php
9 
18  public $apply;
19 
28  public $doc;
29 
38  public $line;
39 
48  public $billedDate;
49 
58  public $jobDisp;
59 
68  public $employeeDisp;
69 
78  public $categoryDisp;
79 
88  public $memo;
89 
98  public $department;
99 
108  public $class;
109 
118  public $location;
119 
129 
138  public $amount;
139 
148  public $taxableDisp;
149 
159 
169 
179 
188  public $grossAmt;
189 
198  public $tax1Amt;
199 
208  public $taxCode;
209 
218  public $taxRate1;
219 
228  public $taxRate2;
229 
230 
231 
232  static $paramtypesmap = array(
233 
234  "apply" => "boolean",
235 
236  "doc" => "integer",
237 
238  "line" => "integer",
239 
240  "billedDate" => "dateTime",
241 
242  "jobDisp" => "string",
243 
244  "employeeDisp" => "string",
245 
246  "categoryDisp" => "string",
247 
248  "memo" => "string",
249 
250  "department" => "string",
251 
252  "class" => "string",
253 
254  "location" => "string",
255 
256  "originalAmount" => "float",
257 
258  "amount" => "float",
259 
260  "taxableDisp" => "string",
261 
262  "revRecSchedule" => "RecordRef",
263 
264  "revRecStartDate" => "dateTime",
265 
266  "revRecEndDate" => "dateTime",
267 
268  "grossAmt" => "float",
269 
270  "tax1Amt" => "float",
271 
272  "taxCode" => "RecordRef",
273 
274  "taxRate1" => "float",
275 
276  "taxRate2" => "float",
277 
278  );
279 
280 }