Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/www/plugins/vmcalculation/avalara/classes/ |
Upload File : |
<?php
/**
* ReconcileTaxHistoryRequest.class.php
*/
/**
* Data to pass to {@link TaxServiceSoap#reconcileTaxHistory(ReconcileTaxHistoryRequest)}
* @see ReconcileTaxHistoryResult
*
* @author Avalara
* @copyright � 2004 - 2011 Avalara, Inc. All rights reserved.
* @package Tax
*/
class ReconcileTaxHistoryRequest// extends TaxRequest
{
private $CompanyCode; //string
private $StartDate; //date
private $EndDate; //date
private $DocStatus; //int
private $LastDocId; //string
private $DocType; // DocType
private $LastDocCode; // string
private $PageSize; // int
private $Reconciled=true;
public function __construct()
{
//parent::__construct();
$this->EndDate = date("Y-m-d");
$this->DocStatus =DocStatus::$Any;
}
public function getCompanyCode() { return $this->CompanyCode;}
public function getstartDate() { return $this->StartDate; }
public function getEndDate() { return $this->EndDate; }
public function getDocStatus() { return $this->DocStatus; }
/**
* Sets the client application company reference code.
*
* @param string $value
*/
public function setCompanyCode($value) { $this->CompanyCode = $value; return $this; }
/**
* Set this to retrieve data FROM a specific date.
*
* @param date $value
*/
public function setStartDate($value) { $this->StartDate = $value; return $this; }
/**
* Set this to retrieve data TO a specific date.
*
* @param date $value
*/
public function setEndDate($value) { $this->EndDate = $value; return $this; }
/**
* Set this to retrieve data with a specific DocStatus.
*
* @param string $value
*/
public function setDocStatus($value) { DocStatus::Validate($value); $this->DocStatus = $value; return $this; }
public function setDocType($value){$this->DocType=$value;} // DocType
public function getDocType(){return $this->DocType;} // DocType
public function setLastDocCode($value){$this->LastDocCode=$value;} // string
public function getLastDocCode(){return $this->LastDocCode;} // string
public function setLastDocId($value){$this->LastDocId=$value;} // string
public function getLastDocId(){return $this->LastDocId;} // string
public function setPageSize($value){$this->PageSize=$value;} // int
public function getPageSize(){return $this->PageSize;} // int
}
?>