本文整理汇总了PHP中app\models\Item::findByPk方法的典型用法代码示例。如果您正苦于以下问题:PHP Item::findByPk方法的具体用法?PHP Item::findByPk怎么用?PHP Item::findByPk使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app\models\Item
的用法示例。
在下文中一共展示了Item::findByPk方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: ini
private function ini()
{
if ($this->valuedate == null) {
$this->valuedate = Record::writeDate(time());
}
if (!$this->ini) {
$this->_precision = Yii::$app->params['precision'];
$item = Item::findByPk($this->item_id, $this->valuedate);
if (is_null($item)) {
$this->iVatRate = 0;
} else {
$this->iVatRate = $item->vat;
}
//for vat resons...
//if ($this->rate == 0) {
$this->rate = Currates::GetRate($this->currency_id, $this->valuedate);
//}
if ($this->doc_rate == 0) {
$doc = Docs::findOne($this->doc_id);
$this->doc_rate = Currates::GetRate($doc->currency_id, $this->valuedate);
}
$this->ini != $this->ini;
}
}