Lines 170-191
if ( $orderinfo->{quantity} ne '0' ) {
Link Here
|
170 |
my $record = TransformKohaToMarc( |
170 |
my $record = TransformKohaToMarc( |
171 |
{ |
171 |
{ |
172 |
"biblio.title" => "$$orderinfo{title}", |
172 |
"biblio.title" => "$$orderinfo{title}", |
173 |
"biblio.author" => $$orderinfo{author} ? $$orderinfo{author} : "", |
173 |
"biblio.author" => $$orderinfo{author} ? $$orderinfo{author} : "", |
174 |
"biblio.seriestitle" => $$orderinfo{series} ? $$orderinfo{series} : "", |
174 |
"biblio.seriestitle" => $$orderinfo{series} ? $$orderinfo{series} : "", |
175 |
"biblioitems.isbn" => $$orderinfo{isbn} ? $$orderinfo{isbn} : "", |
175 |
"biblioitems.isbn" => $$orderinfo{isbn} ? $$orderinfo{isbn} : "", |
176 |
"biblioitems.ean" => $$orderinfo{ean} ? $$orderinfo{ean} : "", |
176 |
"biblioitems.ean" => $$orderinfo{ean} ? $$orderinfo{ean} : "", |
177 |
"biblioitems.publishercode" => $$orderinfo{publishercode} ? $$orderinfo{publishercode} : "", |
177 |
"biblioitems.publishercode" => $$orderinfo{publishercode} ? $$orderinfo{publishercode} : "", |
178 |
"biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "", |
178 |
"biblioitems.publicationyear" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear} : "", |
179 |
"biblio.copyrightdate" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear}: "", |
179 |
"biblio.copyrightdate" => $$orderinfo{publicationyear} ? $$orderinfo{publicationyear} : "", |
180 |
"biblioitems.itemtype" => $$orderinfo{itemtype} ? $$orderinfo{itemtype} : "", |
180 |
"biblioitems.place" => $$orderinfo{place} ? $$orderinfo{place} : "", |
181 |
"biblioitems.editionstatement"=> $$orderinfo{editionstatement} ? $$orderinfo{editionstatement} : "", |
181 |
"biblioitems.itemtype" => $$orderinfo{itemtype} ? $$orderinfo{itemtype} : "", |
182 |
"aqorders.branchcode" => $$orderinfo{branchcode} ? $$orderinfo{branchcode} : "", |
182 |
"biblioitems.editionstatement"=> $$orderinfo{editionstatement}? $$orderinfo{editionstatement} : "", |
183 |
"aqorders.quantity" => $$orderinfo{quantity} ? $$orderinfo{quantity} : "", |
183 |
"aqorders.branchcode" => $$orderinfo{branchcode} ? $$orderinfo{branchcode} : "", |
184 |
"aqorders.listprice" => $$orderinfo{listprice} ? $$orderinfo{listprice} : "", |
184 |
"aqorders.quantity" => $$orderinfo{quantity} ? $$orderinfo{quantity} : "", |
185 |
"aqorders.uncertainprice" => $$orderinfo{uncertainprice} ? $$orderinfo{uncertainprice} : "", |
185 |
"aqorders.listprice" => $$orderinfo{listprice} ? $$orderinfo{listprice} : "", |
186 |
"aqorders.rrp" => $$orderinfo{rrp} ? $$orderinfo{rrp} : "", |
186 |
"aqorders.uncertainprice" => $$orderinfo{uncertainprice} ? $$orderinfo{uncertainprice} : "", |
187 |
"aqorders.ecost" => $$orderinfo{ecost} ? $$orderinfo{ecost} : "", |
187 |
"aqorders.rrp" => $$orderinfo{rrp} ? $$orderinfo{rrp} : "", |
188 |
"aqorders.discount" => $$orderinfo{discount} ? $$orderinfo{discount} : "", |
188 |
"aqorders.ecost" => $$orderinfo{ecost} ? $$orderinfo{ecost} : "", |
|
|
189 |
"aqorders.discount" => $$orderinfo{discount} ? $$orderinfo{discount} : "", |
189 |
}); |
190 |
}); |
190 |
|
191 |
|
191 |
# create the record in catalogue, with framework '' |
192 |
# create the record in catalogue, with framework '' |