12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- # Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
- module Ticket::Assets
- =begin
- get all assets / related models for this ticket
- ticket = Ticket.find(123)
- result = ticket.assets( assets_if_exists )
- returns
- result = {
- :users => {
- 123 => user_model_123,
- 1234 => user_model_1234,
- }
- :tickets => [ ticket_model1 ]
- }
- =end
- def assets (data)
- if !data[ Ticket.to_app_model ]
- data[ Ticket.to_app_model ] = {}
- end
- if !data[ Ticket.to_app_model ][ self.id ]
- data[ Ticket.to_app_model ][ self.id ] = self.attributes_with_associations
- end
- ['created_by_id', 'updated_by_id', 'owner_id', 'customer_id'].each {|item|
- if self[ item ]
- if !data[ User.to_app_model ] || !data[ User.to_app_model ][ self[ item ] ]
- user = User.lookup( :id => self[ item ] )
- data = user.assets( data )
- end
- end
- }
- data
- end
- end
|