소스 검색

Moved back to belongs_to rather than has 1 association

pull/3/head
Adrian Short 14 년 전
부모
커밋
bb6a49349f
2개의 변경된 파일1개의 추가작업 그리고 6개의 파일을 삭제
  1. +1
    -1
      lib/models.rb
  2. +0
    -5
      views/payment.haml

+ 1
- 1
lib/models.rb 파일 보기

@@ -19,7 +19,7 @@ class Payment
belongs_to :service
belongs_to :supplier
has 1, :directorate, { :through => :service }
belongs_to :directorate, { :through => :service }

def url
SITE_URL + "payments/" + @id.to_s


+ 0
- 5
views/payment.haml 파일 보기

@@ -23,9 +23,4 @@
%tr
%td Amount £
%td= sprintf("%0.2f", @payment.amount)
%tr
%td Transaction Number
%td= @payment.trans_no.nil? ? "unknown" : @payment.trans_no



불러오는 중...
취소
저장