示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getPurchaseorderCustomer()
 {
     return $this->hasOne(Tbcustomer::className(), ['customer_id' => 'purchaseorder_customerid']);
 }
示例#2
0
文件: Quotation.php 项目: KokLip/GST
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getQuotationCustomer()
 {
     return $this->hasOne(Tbcustomer::className(), ['customer_id' => 'quotation_customerid']);
 }