app/models/c80_estate/property.rb in c80_estate-0.1.0.28 vs app/models/c80_estate/property.rb in c80_estate-0.1.0.29

- old
+ new

@@ -86,9 +86,21 @@ end res end + # для селекта формы админки Area выдать + # список объектов, на которые назначен пользователь + # если юзер - админ - ему выдаются все объекты + def self.where_assig_user(user) + if user.can_create_properties? + C80Estate::Property.all + else + C80Estate::Property.where(:assigned_person_id => current_admin_user.id) + end + + end + def average_price(atype_id: nil) if atype_id.nil? ars = areas.all else \ No newline at end of file