|
Lines 131-138
sub checkout {
Link Here
|
| 131 |
|
131 |
|
| 132 |
$circ = new ILS::Transaction::Checkout; |
132 |
$circ = new ILS::Transaction::Checkout; |
| 133 |
# BEGIN TRANSACTION |
133 |
# BEGIN TRANSACTION |
| 134 |
$circ->patron($patron = C4::SIP::ILS::Patron->new( $patron_id)); |
134 |
$circ->patron($patron = ILS::Patron->new( $patron_id)); |
| 135 |
$circ->item($item = C4::SIP::ILS::Item->new( $item_id)); |
135 |
$circ->item($item = ILS::Item->new( $item_id)); |
| 136 |
if ($fee_ack) { |
136 |
if ($fee_ack) { |
| 137 |
$circ->fee_ack($fee_ack); |
137 |
$circ->fee_ack($fee_ack); |
| 138 |
} |
138 |
} |
| 139 |
- |
|
|