Example #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getTbproducts()
 {
     return $this->hasMany(Tbproduct::className(), ['product_categoryid' => 'category_id']);
 }
Example #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuotationdetailProduct()
 {
     return $this->hasOne(Tbproduct::className(), ['product_id' => 'quotationdetail_productid']);
 }
Example #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPurchaseorderdetailProduct()
 {
     return $this->hasOne(Tbproduct::className(), ['product_id' => 'purchaseorderdetail_productid']);
 }