Bugzilla – Attachment 8470 Details for
Bug 7737
Use of date filters on bookseller pages
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed patch #2
0001-Bug-7737-applies-date-filters-on-vendor-pages.patch (text/plain), 5.02 KB, created by
Adrien SAURAT
on 2012-03-22 09:21:24 UTC
(
hide
)
Description:
proposed patch #2
Filename:
MIME Type:
Creator:
Adrien SAURAT
Created:
2012-03-22 09:21:24 UTC
Size:
5.02 KB
patch
obsolete
>From da899d33734a919aad8c91f8bd6f985fd274c5a3 Mon Sep 17 00:00:00 2001 >From: Adrien Saurat <adrien.saurat@biblibre.com> >Date: Thu, 22 Mar 2012 10:20:14 +0100 >Subject: [PATCH] Bug 7737: applies date filters on vendor pages > >--- > acqui/booksellers.pl | 6 ------ > acqui/supplier.pl | 6 ------ > .../prog/en/modules/acqui/booksellers.tt | 5 +++-- > .../prog/en/modules/acqui/supplier.tt | 5 +++-- > 4 files changed, 6 insertions(+), 16 deletions(-) > >diff --git a/acqui/booksellers.pl b/acqui/booksellers.pl >index 025fbd1..5a1c248 100755 >--- a/acqui/booksellers.pl >+++ b/acqui/booksellers.pl >@@ -56,7 +56,6 @@ use C4::Biblio; > use C4::Output; > use CGI; > >-use C4::Dates qw/format_date/; > use C4::Acquisition qw/ GetBasketsInfosByBookseller /; > use C4::Bookseller qw/ GetBookSellerFromId GetBookSeller /; > use C4::Members qw/GetMember/; >@@ -126,11 +125,6 @@ for my $vendor (@suppliers) { > ) > ) > ) { >- for my $date_field (qw( creationdate closedate)) { >- if ( $basket->{$date_field} ) { >- $basket->{$date_field} = format_date( $basket->{$date_field} ); >- } >- } > foreach (qw(total_items total_biblios expected_items)) { > $basket->{$_} ||= 0; > } >diff --git a/acqui/supplier.pl b/acqui/supplier.pl >index fdeef06..6746d8d 100755 >--- a/acqui/supplier.pl >+++ b/acqui/supplier.pl >@@ -46,7 +46,6 @@ use C4::Auth; > use C4::Contract qw/GetContract/; > use C4::Biblio; > use C4::Output; >-use C4::Dates qw/format_date /; > use CGI; > > use C4::Bookseller qw( GetBookSellerFromId DelBookseller ); >@@ -79,11 +78,6 @@ if ( $op eq 'display' ) { > > my $contracts = GetContract( { booksellerid => $booksellerid } ); > >- for ( @{$contracts} ) { >- $_->{contractstartdate} = format_date( $_->{contractstartdate} ); >- $_->{contractenddate} = format_date( $_->{contractenddate} ); >- } >- > $template->param( > booksellerid => $booksellerid, > name => $supplier->{'name'}, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >index 0e6aaa3..b17bc54 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt >@@ -1,3 +1,4 @@ >+[% USE KohaDates %] > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › Search for vendor [% supplier %]</title> > [% INCLUDE 'doc-head-close.inc' %] >@@ -110,10 +111,10 @@ $(document).ready(function() { > [% basket.authorisedby_firstname %] > [% basket.authorisedby_surname %] > </td> >- <td>[% basket.creationdate %]</td> >+ <td>[% basket.creationdate | $KohaDates %]</td> > <td> > [% IF ( basket.closedate ) %] >- closed on [% basket.closedate %] >+ closed on [% basket.closedate | $KohaDates %] > <a href="/cgi-bin/koha/acqui/basket.pl?basketno=[% basket.basketno %]">View</a> > [% ELSE %] > [% IF ( basket.active ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >index 05b7fac..7260f55 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt >@@ -1,3 +1,4 @@ >+[% USE KohaDates %] > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › Vendor [% bookselname %]</title> > [% INCLUDE 'doc-head-close.inc' %] >@@ -217,8 +218,8 @@ if (f.company.value == "") { > <a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&contractnumber=[% contract.contractnumber %]&booksellerid=[% contract.booksellerid %]">[% contract.contractname %]</a> > </td> > <td>[% contract.contractdescription %]</td> >- <td>[% contract.contractstartdate %]</td> >- <td>[% contract.contractenddate %]</td> >+ <td>[% contract.contractstartdate | $KohaDates %]</td> >+ <td>[% contract.contractenddate | $KohaDates %]</td> > <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=add_form&contractnumber=[% contract.contractnumber %]&booksellerid=[% contract.booksellerid %]">Edit</a></td> > <td><a href="/cgi-bin/koha/admin/aqcontract.pl?op=delete_confirm&contractnumber=[% contract.contractnumber %]&booksellerid=[% contract.booksellerid %]">Delete</a></td> > </tr> >-- >1.7.4.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 7737
:
8279
|
8338
|
8362
|
8369
|
8372
| 8470