当前位置: 首页>>代码示例>>PHP>>正文


PHP Tax::LoadByLS方法代码示例

本文整理汇总了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;
     }
 }
开发者ID:uiDeveloper116,项目名称:webstore,代码行数:16,代码来源:Tax.php

示例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;
 }
开发者ID:uiDeveloper116,项目名称:webstore,代码行数:34,代码来源:LegacysoapController.php

示例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;
 }
开发者ID:uiDeveloper116,项目名称:webstore,代码行数:36,代码来源:SoapController.php


注:本文中的Tax::LoadByLS方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。