BZ6058: uncertain price can't be unchecked
Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
e43da19e34
commit
ce71043216
2 changed files with 5 additions and 0 deletions
|
@ -961,6 +961,10 @@ sub ModOrder {
|
|||
|
||||
my $dbh = C4::Context->dbh;
|
||||
my @params;
|
||||
|
||||
# update uncertainprice to an integer, just in case (under FF, checked boxes have the value "ON" by default)
|
||||
$orderinfo->{uncertainprice}=1 if $orderinfo->{uncertainprice};
|
||||
|
||||
# delete($orderinfo->{'branchcode'});
|
||||
# the hash contains a lot of entries not in aqorders, so get the columns ...
|
||||
my $sth = $dbh->prepare("SELECT * FROM aqorders LIMIT 1;");
|
||||
|
|
|
@ -152,6 +152,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|||
# get CGI parameters
|
||||
my $orderinfo = $input->Vars;
|
||||
$orderinfo->{'list_price'} ||= 0;
|
||||
$orderinfo->{'uncertainprice'} ||= 0;
|
||||
#my $ordernumber = $input->param('ordernumber');
|
||||
#my $basketno = $input->param('basketno');
|
||||
#my $booksellerid = $input->param('booksellerid');
|
||||
|
|
Loading…
Reference in a new issue