4 #script to receive orders
5 #written by chris@katipo.co.nz 24/2/2000
7 # Copyright 2000-2002 Katipo Communications
9 # This file is part of Koha.
11 # Koha is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 3 of the License, or
14 # (at your option) any later version.
16 # Koha is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with Koha; if not, see <http://www.gnu.org/licenses>.
30 This script shows all order already receive and all pendings orders.
31 It permit to write a new order as 'received'.
39 to know on what supplier this script has to display receive order.
43 the id of this invoice.
49 The biblionumber of this order.
66 use C4
::Koha
; # GetKohaAuthorisedValues GetItemTypes
70 use C4
::Budgets qw
/ GetBudget GetBudgetHierarchy CanUserUseBudget GetBudgetPeriods /;
72 use C4
::Branch
; # GetBranches
77 use Koha
::Acquisition
::Bookseller
;
78 use Koha
::DateUtils
qw( dt_from_string );
82 my $dbh = C4
::Context
->dbh;
83 my $invoiceid = $input->param('invoiceid');
84 my $invoice = GetInvoice
($invoiceid);
85 my $booksellerid = $invoice->{booksellerid
};
86 my $freight = $invoice->{shipmentcost
};
87 my $ordernumber = $input->param('ordernumber');
89 my $bookseller = Koha
::Acquisition
::Bookseller
->fetch({ id
=> $booksellerid });
91 $results = SearchOrders
({
92 ordernumber
=> $ordernumber
95 my ( $template, $loggedinuser, $cookie, $userflags ) = get_template_and_user
(
97 template_name
=> "acqui/orderreceive.tt",
100 authnotrequired
=> 0,
101 flagsrequired
=> {acquisition
=> 'order_receive'},
106 unless ( $results and @
$results) {
107 output_html_with_http_headers
$input, $cookie, $template->output;
111 # prepare the form for receiving
112 my $order = $results->[0];
114 # Check if ACQ framework exists
115 my $acq_fw = GetMarcStructure
(1, 'ACQ');
117 $template->param('NoACQframework' => 1);
120 my $AcqCreateItem = C4
::Context
->preference('AcqCreateItem');
121 if ($AcqCreateItem eq 'receiving') {
123 AcqCreateItemReceiving
=> 1,
124 UniqueItemFields
=> C4
::Context
->preference('UniqueItemFields'),
126 } elsif ($AcqCreateItem eq 'ordering') {
127 my $fw = ($acq_fw) ?
'ACQ' : '';
128 my @itemnumbers = GetItemnumbersFromOrder
($order->{ordernumber
});
130 foreach (@itemnumbers) {
131 my $item = GetItem
($_);
132 if($item->{homebranch
}) {
133 $item->{homebranchname
} = GetBranchName
($item->{homebranch
});
135 if($item->{holdingbranch
}) {
136 $item->{holdingbranchname
} = GetBranchName
($item->{holdingbranch
});
138 if(my $code = GetAuthValCode
("items.notforloan", $fw)) {
139 $item->{notforloan
} = GetKohaAuthorisedValueLib
($code, $item->{notforloan
});
141 if(my $code = GetAuthValCode
("items.restricted", $fw)) {
142 $item->{restricted
} = GetKohaAuthorisedValueLib
($code, $item->{restricted
});
144 if(my $code = GetAuthValCode
("items.location", $fw)) {
145 $item->{location
} = GetKohaAuthorisedValueLib
($code, $item->{location
});
147 if(my $code = GetAuthValCode
("items.ccode", $fw)) {
148 $item->{collection
} = GetKohaAuthorisedValueLib
($code, $item->{ccode
});
150 if(my $code = GetAuthValCode
("items.materials", $fw)) {
151 $item->{materials
} = GetKohaAuthorisedValueLib
($code, $item->{materials
});
153 my $itemtype = getitemtypeinfo
($item->{itype
});
154 $item->{itemtype
} = $itemtype->{description
};
157 $template->param(items
=> \
@items);
160 $order->{quantityreceived
} = '' if $order->{quantityreceived
} == 0;
161 $order->{unitprice
} = '' if $order->{unitprice
} == 0;
166 if ( $bookseller->{listincgst
} ) {
167 if ( $bookseller->{invoiceincgst
} ) {
168 $rrp = $order->{rrp
};
169 $ecost = $order->{ecost
};
170 $unitprice = $order->{unitprice
};
172 $rrp = $order->{rrp
} / ( 1 + $order->{gstrate
} );
173 $ecost = $order->{ecost
} / ( 1 + $order->{gstrate
} );
174 $unitprice = $order->{unitprice
} / ( 1 + $order->{gstrate
} );
177 if ( $bookseller->{invoiceincgst
} ) {
178 $rrp = $order->{rrp
} * ( 1 + $order->{gstrate
} );
179 $ecost = $order->{ecost
} * ( 1 + $order->{gstrate
} );
180 $unitprice = $order->{unitprice
} * ( 1 + $order->{gstrate
} );
182 $rrp = $order->{rrp
};
183 $ecost = $order->{ecost
};
184 $unitprice = $order->{unitprice
};
188 my $suggestion = GetSuggestionInfoFromBiblionumber
($order->{biblionumber
});
190 my $authorisedby = $order->{authorisedby
};
191 my $member = GetMember
( borrowernumber
=> $authorisedby );
193 my $budget = GetBudget
( $order->{budget_id
} );
195 my $datereceived = $order->{datereceived
} ? dt_from_string
( $order->{datereceived
} ) : dt_from_string
;
198 AcqCreateItem
=> $AcqCreateItem,
200 biblionumber
=> $order->{'biblionumber'},
201 ordernumber
=> $order->{'ordernumber'},
202 subscriptionid
=> $order->{subscriptionid
},
203 booksellerid
=> $order->{'booksellerid'},
205 name
=> $bookseller->{'name'},
206 title
=> $order->{'title'},
207 author
=> $order->{'author'},
208 copyrightdate
=> $order->{'copyrightdate'},
209 isbn
=> $order->{'isbn'},
210 seriestitle
=> $order->{'seriestitle'},
211 bookfund
=> $budget->{budget_name
},
212 quantity
=> $order->{'quantity'},
213 quantityreceivedplus1
=> $order->{'quantityreceived'} + 1,
214 quantityreceived
=> $order->{'quantityreceived'},
215 rrp
=> sprintf( "%.2f", $rrp ),
216 ecost
=> sprintf( "%.2f", $ecost ),
217 memberfirstname
=> $member->{firstname
} || "",
218 membersurname
=> $member->{surname
} || "",
219 invoiceid
=> $invoice->{invoiceid
},
220 invoice
=> $invoice->{invoicenumber
},
221 datereceived
=> $datereceived,
222 order_internalnote
=> $order->{order_internalnote
},
223 order_vendornote
=> $order->{order_vendornote
},
224 suggestionid
=> $suggestion->{suggestionid
},
225 surnamesuggestedby
=> $suggestion->{surnamesuggestedby
},
226 firstnamesuggestedby
=> $suggestion->{firstnamesuggestedby
},
229 my $borrower = GetMember
( 'borrowernumber' => $loggedinuser );
231 my $periods = GetBudgetPeriods
( );
232 foreach my $period (@
$periods) {
233 if ($period->{'budget_period_id'} == $budget->{'budget_period_id'}) {
234 $template->{'VARS'}->{'budget_period_description'} = $period->{'budget_period_description'};
236 next if $period->{'budget_period_locked'} || !$period->{'budget_period_description'};
237 my $budget_hierarchy = GetBudgetHierarchy
( $period->{'budget_period_id'} );
239 foreach my $r ( @
{$budget_hierarchy} ) {
240 next unless ( CanUserUseBudget
( $borrower, $r, $userflags ) );
241 if ( !defined $r->{budget_amount
} || $r->{budget_amount
} == 0 ) {
246 b_id
=> $r->{budget_id
},
247 b_txt
=> $r->{budget_name
},
248 b_sel
=> ( $r->{budget_id
} == $order->{budget_id
} ) ?
1 : 0,
252 @funds = sort { uc( $a->{b_txt
} ) cmp uc( $b->{b_txt
} ) } @funds;
256 'id' => $period->{'budget_period_id'},
257 'description' => $period->{'budget_period_description'},
262 $template->{'VARS'}->{'budget_loop'} = \
@budget_loop;
264 # regardless of the content of $unitprice e.g 0 or '' or any string will return in these cases 0.00
265 # and the 'IF' in the .tt will show 0.00 and not 'ecost' (see BZ 7129)
266 # So if $unitprice == 0 we don't create unitprice
267 if ( $unitprice != 0) {
269 unitprice
=> sprintf( "%.2f", $unitprice),
273 my $op = $input->param('op');
274 if ($op and $op eq 'edit'){
275 $template->param(edit
=> 1);
277 output_html_with_http_headers
$input, $cookie, $template->output;