added security type models, improved cashflow, bug- and layout fixes along the way
[smr.git] / gui / app / models / document_assign.rb
bloba1e426daf5bdb5efb7b284d6bd3a10e1cfbf12a1
2 # This file is part of SMR.
4 # SMR is free software: you can redistribute it and/or modify it under the
5 # terms of the GNU General Public License as published by the Free Software
6 # Foundation, either version 3 of the License, or (at your option) any later
7 # version.
9 # SMR is distributed in the hope that it will be useful, but WITHOUT ANY
10 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License along with
14 # SMR.  If not, see <http://www.gnu.org/licenses/>.
16 class DocumentAssign < ActiveRecord::Base
17         belongs_to :Document, :foreign_key=>:id_document
18         belongs_to :Portfolio, :foreign_key=>:id_portfolio
19         belongs_to :Position, :foreign_key=>:id_position
20         belongs_to :Order, :foreign_key=>:id_order
21         belongs_to :Security, :foreign_key=>:id_security
22 end