Browse Source

Removed directorate/payment association

pull/3/head
Adrian Short 14 years ago
parent
commit
6de99d6fb2
2 changed files with 7 additions and 6 deletions
  1. +1
    -1
      lib/models.rb
  2. +6
    -5
      views/payment.haml

+ 1
- 1
lib/models.rb View File

@@ -38,7 +38,7 @@ class Directorate
has n, :services, :order => ['name']
has n, :suppliers, { :through => :services, :order => ['name'] }
has n, :payments, { :through => :services }
# has n, :payments, { :through => :services }

before :save, :slugify



+ 6
- 5
views/payment.haml View File

@@ -5,11 +5,12 @@
%tr
%td Date
%td= @payment.d.strftime("%d %b %Y")
%tr
%td Directorate
%td
%a{ :href => "/directorates/#{@payment.directorate.slug}" }
= @payment.directorate.name
-#
%tr
%td Directorate
%td
%a{ :href => "/directorates/#{@payment.directorate.slug}" }
= @payment.directorate.name
%tr
%td Service
%td


Loading…
Cancel
Save