本文整理汇总了PHP中Tax::getErrors方法的典型用法代码示例。如果您正苦于以下问题:PHP Tax::getErrors方法的具体用法?PHP Tax::getErrors怎么用?PHP Tax::getErrors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tax
的用法示例。
在下文中一共展示了Tax::getErrors方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: actionWrite
public function actionWrite()
{
if (isset($_POST['Tax'])) {
$messages = $this->ValidateData(array(array($_POST['Tax']['taxcode'], 'atxemptytaxcode', 'emptystring'), array($_POST['Tax']['taxvalue'], 'atxemptytaxvalue', 'emptystring'), array($_POST['Tax']['description'], 'atxemptydescription', 'emptystring')));
if ($messages == '') {
//$dataku->attributes=$_POST['Tax'];
if ((int) $_POST['Tax']['taxid'] > 0) {
$model = $this->loadModel($_POST['Tax']['taxid']);
$model->taxcode = $_POST['Tax']['taxcode'];
$model->taxvalue = $_POST['Tax']['taxvalue'];
$model->description = $_POST['Tax']['description'];
$model->recordstatus = $_POST['Tax']['recordstatus'];
} else {
$model = new Tax();
$model->attributes = $_POST['Tax'];
}
try {
if ($model->save()) {
$this->DeleteLock($this->menuname, $_POST['Tax']['taxid']);
$this->GetSMessage('atxinsertsuccess');
} else {
$this->GetMessage($model->getErrors());
}
} catch (Exception $e) {
$this->GetMessage($e->getMessage());
}
}
}
}
示例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;
}