本文整理汇总了PHP中Tax::LoadByLS方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::LoadByLS方法的具体用法?PHP Tax::LoadByLS怎么用?PHP Tax::LoadByLS使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::LoadByLS方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: TaxByLsid
/**
* Return the name of the tax given its lsid
*
* @param $intLsId
* @return mixed|null
*/
public static function TaxByLsid($intLsId)
{
$obj = Tax::LoadByLS($intLsId);
if ($obj instanceof Tax === true) {
return $obj->tax;
} else {
Yii::log(sprintf('Tax with lsid: %s not found', $intLsId), 'error', 'application.' . __CLASS__ . '.' . __FUNCTION__);
return null;
}
}
示例2: add_tax
/**
* Adds tax to the system
*
* @param string $passkey
* @param int $intNo
* @param string $strTax
* @param float $fltMax
* @param int $blnCompounded
* @return string
*/
public function add_tax($passkey, $intNo, $strTax, $fltMax, $blnCompounded)
{
if (!$this->check_passkey($passkey)) {
return self::FAIL_AUTH;
}
if ($intNo > 5) {
_xls_log(sprintf("SOAP ERROR : System can only handle %s number of taxes. Specified %s", 5, $intNo));
return self::UNKNOWN_ERROR;
}
// Loads tax
$tax = Tax::LoadByLS($intNo);
if (!$tax) {
$tax = new Tax();
$tax->lsid = $intNo;
}
$tax->tax = $strTax;
$tax->max_tax = $fltMax;
$tax->compounded = $blnCompounded;
if (!$tax->save()) {
_xls_log("SOAP ERROR : Error adding tax {$strTax} " . print_r($tax->getErrors(), true));
return self::UNKNOWN_ERROR . " Error adding tax {$strTax} " . print_r($tax->getErrors(), true);
}
return self::OK;
}
示例3: add_tax
/**
* Adds tax to the system
*
* @param string $passkey
* @param int $intNo
* @param int $intTaxRateId
* @param string $strTax
* @param float $fltMax
* @param int $blnCompounded
* @return string
* @throws SoapFault
* @soap
*/
public function add_tax($passkey, $intNo, $intTaxRateId, $strTax, $fltMax, $blnCompounded)
{
self::check_passkey($passkey);
//Remove if we have this tax already, just readd
Tax::model()->deleteAllByAttributes(array('id' => $intTaxRateId));
Tax::model()->deleteAllByAttributes(array('lsid' => $intNo));
// Loads tax
$tax = Tax::LoadByLS($intNo);
if (!$tax) {
$tax = new Tax();
$tax->id = $intTaxRateId;
$tax->lsid = $intNo;
}
$tax->tax = $strTax;
$tax->max_tax = $fltMax;
$tax->compounded = $blnCompounded;
if (!$tax->save()) {
$strMsg = "Error adding tax {$strTax}";
Yii::log("SOAP ERROR : {$strMsg} " . print_r($tax->getErrors(), true), CLogger::LEVEL_ERROR, 'application.' . __CLASS__ . "." . __FUNCTION__);
throw new SoapFault($strMsg, WsSoapException::ERROR_UNKNOWN);
}
return self::OK;
}