koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] CVS: koha/suggestion acceptorreject.pl,NONE,1.1


From: Paul POULAIN
Subject: [Koha-cvs] CVS: koha/suggestion acceptorreject.pl,NONE,1.1
Date: Thu, 15 Jul 2004 02:42:49 -0700

Update of /cvsroot/koha/koha/suggestion
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29717/suggestion

Added Files:
        acceptorreject.pl 
Log Message:
Acquisition & Suggestion :
* acquisition rewritte : create a aqbasket table to deal with "bookseller order 
header".
* add "close basket" feature : a closed basket can't be modified
* suggestion feature : manage suggestions in acquisition (after suggestion 
filled in OPAC)

--- NEW FILE ---
#!/usr/bin/perl
use strict;
require Exporter;
use CGI;
use HTML::Template;

use C4::Auth;       # get_template_and_user
use C4::Interface::CGI::Output;
use C4::Suggestions;

my $input = new CGI;
my $title = $input->param('title');
my $author = $input->param('author');
my $note = $input->param('note');
my $copyrightdate =$input->param('copyrightdate');
my $publishercode = $input->param('publishercode');
my $volumedesc = $input->param('volumedesc');
my $publicationyear = $input->param('publicationyear');
my $place = $input->param('place');
my $isbn = $input->param('isbn');
my $status = $input->param('status');
my $suggestedbyme = $input->param('suggestedbyme');
my $op = $input->param('op');
$op = 'else' unless $op;

my $dbh = C4::Context->dbh;
my ($template, $loggedinuser, $cookie)
    = get_template_and_user({template_name => "suggestion/acceptorreject.tmpl",
                             type => "intranet",
                             query => $input,
                             authnotrequired => 1,
                             flagsrequired => {borrow => 1},
                         });
if ($op eq "aorr_confirm") {
        my @suggestionlist = $input->param("aorr");
        foreach my $suggestion (@suggestionlist) {
                if ($suggestion =~ /(A|R)(.*)/) {
                        my ($newstatus,$suggestionid) = ($1,$2);
                        $newstatus="REJECTED" if $newstatus eq "R";
                        $newstatus="ACCEPTED" if $newstatus eq "A";
                        changestatus($suggestionid,$newstatus,$loggedinuser);
                }
        }
        $op="else";
}

if ($op eq "delete_confirm") {
        my @delete_field = $input->param("delete_field");
        foreach my $delete_field (@delete_field) {
                &delsuggestion($loggedinuser,$delete_field);
        }
        $op='else';
}

my $suggestions_loop= &searchsuggestion("","","","",'ASKED',"");
$template->param(suggestions_loop => $suggestions_loop,
                                "op_$op" => 1,
);
output_html_with_http_headers $input, $cookie, $template->output;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]