Selaa lähdekoodia

Separated payments to suppliers details onto a separate view from supplier

pull/3/head
Adrian Short 14 vuotta sitten
vanhempi
commit
c40f1b73be
4 muutettua tiedostoa jossa 94 lisäystä ja 39 poistoa
  1. +9
    -1
      app.rb
  2. +1
    -0
      public/style.css
  3. +9
    -38
      views/service.haml
  4. +75
    -0
      views/servicepayments.haml

+ 9
- 1
app.rb Näytä tiedosto

@@ -57,7 +57,7 @@ get '/suppliers/?' do
haml :suppliers
end

get '/services/:slug.csv' do
get '/services/:slug/payments.csv' do
@service = Service.first(:slug => params[:slug])

headers "Content-Disposition" => "attachment;filename=service-#{@service.slug}.csv",
@@ -98,6 +98,14 @@ get '/services/:slug' do
haml :service
end

get '/services/:slug/payments' do
@service = Service.first(:slug => params[:slug])
@total = @service.payments.sum(:amount)
haml :servicepayments
end



get '/services/?' do
@services = Service.all( :order => ['name'] )
haml :services


+ 1
- 0
public/style.css Näytä tiedosto

@@ -10,6 +10,7 @@ body
p
{
font-size: 110%;
margin: 30px 0;
}

input


+ 9
- 38
views/service.haml Näytä tiedosto

@@ -15,13 +15,15 @@
= @service.directorate.name
Directorate

%p.noprint.download
%a{ :href => "/services/#{@service.slug}.csv" }
Download data as CSV
%p
%p.noprint
%a{ :href => "/services/#{@service.slug}/payments" }
Payments to Suppliers details for
= @service.name
»

.clear

.grid_9

%h3 Summary

@@ -39,8 +41,6 @@
%td.right= commify(sprintf("£%0d", @max))
%td.right= commify(sprintf("£%0d", @min))
%td.right= commify(sprintf("£%0d", @avg))

%p
%h3 Suppliers by Spend
@@ -56,35 +56,6 @@
= row['supplier_name']
%td.right= commify(sprintf("%0d", row['total']))
%td.right= sprintf("%0.1f", row['total'] / @total * 100)

%p
%h3 Payments to Suppliers

%table
%tr
%th Date
%th Ref.
%th Supplier
%th.right £
- for payment in @service.payments
%tr
%td= payment.d.strftime("%d %b %Y")
%td.right
%a{ :href => "/payments/#{payment.id}" }
= payment.id
%td
%a{ :href => '/suppliers/' + payment.supplier.slug }
= payment.supplier.name
%td.right= commify(sprintf("%0d", payment.amount))
%tr
%td
%td
%td
%strong TOTAL
%td.right= commify(sprintf("%0d", @total))
.clear
<div class="grid_9 noprint">


+ 75
- 0
views/servicepayments.haml Näytä tiedosto

@@ -0,0 +1,75 @@
.grid_12
%ul#breadcrumb
%li.home
%a{ :href => '/'} Home
%li
%a{ :href => '/services' } Services
%li
%a{ :href => "/services/#{@service.slug}" }
= @service.name
%li Payments to Suppliers

%h2= @page_title = @service.name
%p
A service in the
%a{ :href => '/directorates/' + @service.directorate.slug }
= @service.directorate.name
Directorate

%p.noprint
%a{ :href => "/services/#{@service.slug}" }
&laquo; Suppliers by Spend summary for
= @service.name
%p.noprint.download
%a{ :href => "/services/#{@service.slug}/payments.csv" }
Download data as CSV
.clear

.grid_9
%h3 Payments to Suppliers

%table
%tr
%th Date
%th Ref.
%th Supplier
%th.right &pound;
- for payment in @service.payments
%tr
%td= payment.d.strftime("%d&nbsp;%b&nbsp;%Y")
%td.right
%a{ :href => "/payments/#{payment.id}" }
= payment.id
%td
%a{ :href => '/suppliers/' + payment.supplier.slug }
= payment.supplier.name
%td.right= commify(sprintf("%0d", payment.amount))
%tr
%td
%td
%td
%strong TOTAL
%td.right= commify(sprintf("%0d", @total))
.clear
<div class="grid_9 noprint">
= haml_partial "comment_header"
<div id="disqus_thread" class="noprint"></div>
<script type="text/javascript">
var disqus_developer = 1;
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://armchairauditor.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript=armchairauditor">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink noprint">Comments powered by <span class="logo-disqus">Disqus</span></a>
</div>

Ladataan…
Peruuta
Tallenna