示例#1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClienteIdCliente()
 {
     return $this->hasOne(Cliente::className(), ['idCliente' => 'Cliente_idCliente']);
 }
示例#2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClienCodigo()
 {
     return $this->hasOne(Cliente::className(), ['clien_codigo' => 'clien_codigo']);
 }
示例#3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdCliente()
 {
     return $this->hasOne(Cliente::className(), ['id' => 'id_cliente']);
 }
示例#4
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientes()
 {
     return $this->hasMany(Cliente::className(), ['emp_rut' => 'emp_rut']);
 }
示例#5
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCliente()
 {
     return $this->hasOne(Cliente::className(), ['id' => 'cliente_did']);
 }
示例#6
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientes()
 {
     return $this->hasMany(Cliente::className(), ['estatus_did' => 'id']);
 }
示例#7
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientes()
 {
     return $this->hasMany(Cliente::className(), ['muni_codigo' => 'muni_codigo']);
 }
示例#8
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClienteNome()
 {
     return $this->hasOne(Cliente::className(), ['nome' => 'cliente_nome', 'tel' => 'cliente_tel']);
 }