Lines 3306-3313
sub GetOfflineOperations {
Link Here
|
3306 |
} |
3306 |
} |
3307 |
|
3307 |
|
3308 |
sub GetOfflineOperation { |
3308 |
sub GetOfflineOperation { |
3309 |
my $operationid = shift; |
3309 |
my $operationid = shift; |
3310 |
return unless $operationid; |
3310 |
return unless $operationid; |
3311 |
my $dbh = C4::Context->dbh; |
3311 |
my $dbh = C4::Context->dbh; |
3312 |
my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?"); |
3312 |
my $sth = $dbh->prepare("SELECT * FROM pending_offline_operations WHERE operationid=?"); |
3313 |
$sth->execute( $operationid ); |
3313 |
$sth->execute( $operationid ); |
3314 |
- |
|
|