Lines 55-65
Config file format:
Link Here
|
55 |
password - koha user password, authentication |
55 |
password - koha user password, authentication |
56 |
match - marc_matchers.code: ISBN or ISSN |
56 |
match - marc_matchers.code: ISBN or ISSN |
57 |
overlay_action - import_batches.overlay_action: replace, create_new or ignore |
57 |
overlay_action - import_batches.overlay_action: replace, create_new or ignore |
|
|
58 |
overlay_framework - if overlaying records - move to a new framework, if blank will use default |
59 |
if not included it will use the framework of the existing record |
58 |
nomatch_action - import_batches.nomatch_action: create_new or ignore |
60 |
nomatch_action - import_batches.nomatch_action: create_new or ignore |
59 |
item_action - import_batches.item_action: always_add, |
61 |
item_action - import_batches.item_action: always_add, |
60 |
add_only_for_matches, add_only_for_new or ignore |
62 |
add_only_for_matches, add_only_for_new or ignore |
61 |
import_mode - stage or direct |
63 |
import_mode - stage or direct |
62 |
framework - to be used if import_mode is direct |
64 |
framework - to be used if import_mode is direct, if blank, will use default |
63 |
connexion_user - User sent from connexion client |
65 |
connexion_user - User sent from connexion client |
64 |
connexion_password - Password sent from connexion client |
66 |
connexion_password - Password sent from connexion client |
65 |
|
67 |
|
Lines 359-364
sub handle_request {
Link Here
|
359 |
'match' => $self->{params}->{match}, |
361 |
'match' => $self->{params}->{match}, |
360 |
'import_mode' => $self->{params}->{import_mode}, |
362 |
'import_mode' => $self->{params}->{import_mode}, |
361 |
'framework' => $self->{params}->{framework}, |
363 |
'framework' => $self->{params}->{framework}, |
|
|
364 |
'overlay_framework' => $self->{params}->{overlay_framework}, |
362 |
'item_action' => $self->{params}->{item_action}, |
365 |
'item_action' => $self->{params}->{item_action}, |
363 |
'xml' => $data}); |
366 |
'xml' => $data}); |
364 |
|
367 |
|
Lines 373-378
sub handle_request {
Link Here
|
373 |
'match' => $self->{params}->{match}, |
376 |
'match' => $self->{params}->{match}, |
374 |
'import_mode' => $self->{params}->{import_mode}, |
377 |
'import_mode' => $self->{params}->{import_mode}, |
375 |
'framework' => $self->{params}->{framework}, |
378 |
'framework' => $self->{params}->{framework}, |
|
|
379 |
'overlay_framework' => $self->{params}->{overlay_framework}, |
376 |
'item_action' => $self->{params}->{item_action}, |
380 |
'item_action' => $self->{params}->{item_action}, |
377 |
'xml' => $data}) |
381 |
'xml' => $data}) |
378 |
if $resp->is_success; |
382 |
if $resp->is_success; |