[Bug 7402] New: invoice not showing received titles
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Bug #: 7402 Summary: invoice not showing received titles Classification: Unclassified Change sponsored?: --- Product: Koha Version: master Platform: All OS/Version: All Status: NEW Severity: normal Priority: P3 Component: Acquisitions AssignedTo: henridamien@koha-fr.org ReportedBy: nengard@gmail.com QAContact: ian.walls@bywatersolutions.com When you do an order search you can click on the invoice number next to the titles in question. Clicking that invoice though does not show you the items you received on that order - the 'Already Received' section lists no titles even if you have received titles on that invoice. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 --- Comment #1 from Nicole C. Engard <nengard@gmail.com> 2012-01-04 19:06:09 UTC --- The URL after clicking the invoice number is: cgi-bin/koha/acqui/parcel.pl?invoice=4567890-9&supplierid=1&datereceived=07/27/2011 The URL that works was: /cgi-bin/koha/acqui/parcels.pl?supplierid=28 -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 --- Comment #2 from Nicole C. Engard <nengard@gmail.com> 2012-01-04 19:08:25 UTC --- Sorry, I worded that wrong. If you click the date on the second URL I gave it shows you items you have received. The URL is: cgi-bin/koha/acqui/parcel.pl?type=intra&supplierid=1&datereceived=2011-12-15&invoice=323231 So the date format in the broken URL is probably causing problems. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |chris@bigballofwax.co.nz Depends on| |929 --- Comment #3 from Chris Cormack <chris@bigballofwax.co.nz> 2012-01-04 19:28:31 UTC --- Hmm this could be fixed by using the new KohaDates filter which is part of bug 929 Ill get 929 rebased then will fix this. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED AssignedTo|henridamien@koha-fr.org |chris@bigballofwax.co.nz -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 --- Comment #4 from Chris Cormack <chris@bigballofwax.co.nz> 2012-01-04 19:57:12 UTC --- Created attachment 7041 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7041 Bug 7402 : Fixing the date formatting so links to the invoice page work This depends on bug 929 -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Chris Cormack <chris@bigballofwax.co.nz> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P3 |PATCH-Sent Patch Status|--- |Needs Signoff --- Comment #5 from Chris Cormack <chris@bigballofwax.co.nz> 2012-01-04 19:57:57 UTC --- This depends on 929, which is passed QA so should be in master soon But to test before then, need to apply the patches from 929 then this -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Signoff |Failed QA CC| |katrin.fischer@bsz-bw.de --- Comment #6 from Katrin Fischer <katrin.fischer@bsz-bw.de> 2012-01-18 07:40:19 UTC --- Hm, it does not work for me. I think the problem is, that the URL needs the date in iso format - not relying on dateformat setttings.
From 929: my $datereceived = C4::Dates->new( $data->{'datereceived'}, 'iso' );
Working link: http://localhost:8080/cgi-bin/koha/acqui/parcel.pl?invoice=7402&supplierid=1&datereceived=2012-01-18 -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 --- Comment #7 from Katrin Fischer <katrin.fischer@bsz-bw.de> 2012-01-18 07:41:40 UTC --- Well... it certainly helps to apply the patch you want to test before testing... patch does just that and works nicely. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #7041|0 |1 is obsolete| | --- Comment #8 from Katrin Fischer <katrin.fischer@bsz-bw.de> 2012-01-18 07:43:30 UTC --- Created attachment 7210 --> http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=7210 [SIGNED-OFF] Bug 7402 : Fixing the date formatting so links to the invoice page work This depends on bug 929 Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Uses the new TT plugin to display the date, while using iso format to build a correct URL to the invoice page. -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Failed QA |Signed Off -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Ian Walls <koha.sekjal@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|PATCH-Sent (DO NOT USE) |P3 Status|Signed Off |Passed QA --- Comment #9 from Ian Walls <koha.sekjal@gmail.com> 2012-01-21 17:27:22 UTC --- Moves formatting of dates from perl to template, making use of new Koha Dates filter. Simple change, marking as Passed QA -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Paul Poulain <paul.poulain@biblibre.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Passed QA |Pushed to Master CC| |paul.poulain@biblibre.com Version|master |rel_3_8 -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Katrin Fischer <katrin.fischer@bsz-bw.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Pushed to Master |RESOLVED Resolution|--- |FIXED --- Comment #10 from Katrin Fischer <katrin.fischer@bsz-bw.de> --- Works on master and patch is also in 3.6.x - marking resolved. -- You are receiving this mail because: You are watching all bug changes.
http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=7402 Status|Pushed to Master |RESOLVED Resolution|--- |FIXED -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org