예제 #1
0
 public static function getLocationName($data)
 {
     return OrderLocation::findOne($data);
 }
예제 #2
0
파일: Order.php 프로젝트: verget/catering
 public function getOrderLocationName()
 {
     return $this->hasOne(OrderLocation::className(), ['location_id' => 'order_location']);
 }