View | Details | Raw Unified | Return to bug 38271
Collapse All | Expand All

(-)a/Koha/EDI.pm (+24 lines)
Lines 45-50 use Koha::Plugins; # Adds plugin dirs to @INC Link Here
45
use Koha::Plugins::Handler;
45
use Koha::Plugins::Handler;
46
use Koha::Acquisition::Baskets;
46
use Koha::Acquisition::Baskets;
47
use Koha::Acquisition::Booksellers;
47
use Koha::Acquisition::Booksellers;
48
use Koha::Util::FrameworkPlugin qw( biblio_008 );
48
49
49
our $VERSION = 1.1;
50
our $VERSION = 1.1;
50
51
Lines 684-689 sub quote_item { Link Here
684
    if ( !defined $bib ) {
685
    if ( !defined $bib ) {
685
        $bib = {};
686
        $bib = {};
686
        my $bib_record = _create_bib_from_quote( $item, $quote );
687
        my $bib_record = _create_bib_from_quote( $item, $quote );
688
689
        # Check for and add default 008 as this is a mandatory field
690
        $bib_record = _handle_008_field($bib_record);
691
687
        ( $bib->{biblionumber}, $bib->{biblioitemnumber} ) =
692
        ( $bib->{biblionumber}, $bib->{biblioitemnumber} ) =
688
          AddBiblio( $bib_record, q{} );
693
          AddBiblio( $bib_record, q{} );
689
        $logger->trace("New biblio added $bib->{biblionumber}");
694
        $logger->trace("New biblio added $bib->{biblionumber}");
Lines 1215-1220 sub _create_item_from_quote { Link Here
1215
    return $item_hash;
1220
    return $item_hash;
1216
}
1221
}
1217
1222
1223
sub _handle_008_field {
1224
    my ( $bib_record ) = @_;
1225
1226
    if ( !$bib_record->field('008') ) {
1227
        my $default008 = biblio_008();
1228
        $bib_record->insert_fields_ordered( MARC::Field->new('008', $default008));
1229
    }
1230
1231
    return $bib_record
1232
}
1233
1218
1;
1234
1;
1219
__END__
1235
__END__
1220
1236
Lines 1373-1378 Koha::EDI Link Here
1373
     Returns the Aqbudget object for the active budget given the passed budget_code
1389
     Returns the Aqbudget object for the active budget given the passed budget_code
1374
     or undefined if one does not exist
1390
     or undefined if one does not exist
1375
1391
1392
=head2 _handle_008_field
1393
1394
     bib_record = _handle_008_field($bib_record)
1395
1396
     Checks whether an 008 field exists on the record and adds a default field it does not
1397
1398
     Returns the bib_record
1399
1376
=head1 AUTHOR
1400
=head1 AUTHOR
1377
1401
1378
   Colin Campbell <colin.campbell@ptfs-europe.com>
1402
   Colin Campbell <colin.campbell@ptfs-europe.com>
(-)a/t/db_dependent/Koha/EDI.t (-1 / +167 lines)
Lines 20-27 Link Here
20
use Modern::Perl;
20
use Modern::Perl;
21
use FindBin qw( $Bin );
21
use FindBin qw( $Bin );
22
22
23
use Test::More tests => 1;
23
use Test::More tests => 2;
24
use Test::Warn;
24
use Test::Warn;
25
use Test::MockModule;
25
26
26
use t::lib::Mocks;
27
use t::lib::Mocks;
27
use t::lib::TestBuilder;
28
use t::lib::TestBuilder;
Lines 123-125 subtest 'process_quote' => sub { Link Here
123
124
124
    $schema->storage->txn_rollback;
125
    $schema->storage->txn_rollback;
125
};
126
};
127
128
subtest '_handle_008_field' => sub {
129
    plan tests => 4;
130
131
    $schema->storage->txn_begin;
132
133
        # Add our test quote file to the database for testing against
134
    my $account = $builder->build(
135
        {
136
            source => 'VendorEdiAccount',
137
            value  => {
138
                description => 'test vendor', transport => 'FILE',
139
            }
140
        }
141
    );
142
    my $dirname  = ( $Bin =~ /^(.*\/t\/)/ ? $1 . 'edi_testfiles/' : q{} );
143
    my $filename = 'QUOTES_SMALL.CEQ';
144
    ok( -e $dirname . $filename, 'File QUOTES_SMALL.CEQ found' );
145
146
    my $trans = Koha::Edifact::Transport->new( $account->{id} );
147
    $trans->working_directory($dirname);
148
149
    my $mhash = $trans->message_hash();
150
    $mhash->{message_type} = 'QUOTE';
151
    $trans->ingest( $mhash, $filename );
152
153
    my $quote = $schema->resultset('EdifactMessage')->find( { filename => $filename } );
154
155
    # Test quote expects REF to be a valid and active fund code
156
    my $active_period = $builder->build(
157
        {
158
            source => 'Aqbudgetperiod',
159
            value  => { budget_period_active => 1 }
160
        }
161
    );
162
    my $fund = $builder->build(
163
        {
164
            source => 'Aqbudget',
165
            value  => {
166
                budget_code      => 'REF',
167
                budget_period_id => $active_period->{budget_period_id}
168
            }
169
        }
170
    );
171
172
    # The quote expects a ROT1 stock rotation roata to exist
173
    my $rota = $builder->build_object(
174
        {
175
            class => 'Koha::StockRotationRotas',
176
            value => { title => 'ROT1' }
177
        }
178
    );
179
    $builder->build(
180
        {
181
            source => 'Stockrotationstage',
182
            value  => { rota_id => $rota->rota_id },
183
        }
184
    );
185
186
    # Process the test quote file
187
    process_quote($quote);
188
189
    $quote->get_from_storage;
190
191
    # Tests for generated basket for passed quote file
192
    my $baskets = Koha::Acquisition::Baskets->search( { booksellerid => $account->{vendor_id} } );
193
    my $basket = $baskets->next;
194
195
    my $orders = $basket->orders;
196
    my $order = $orders->next;
197
198
    my $biblio = $order->biblio;
199
    my $record = $biblio->record;
200
    my $record_field = $record->field('008');
201
202
    is(exists($record_field->{_data}), 1, 'Field has been added');
203
204
    # Test without calling the 008 handler
205
    $account = $builder->build(
206
        {
207
            source => 'VendorEdiAccount',
208
            value  => {
209
                description => 'test vendor', transport => 'FILE',
210
            }
211
        }
212
    );
213
    $dirname  = ( $Bin =~ /^(.*\/t\/)/ ? $1 . 'edi_testfiles/' : q{} );
214
    $filename = 'QUOTES_SMALL_2.CEQ';
215
    ok( -e $dirname . $filename, 'File QUOTES_SMALL_2.CEQ found' );
216
217
    $trans = Koha::Edifact::Transport->new( $account->{id} );
218
    $trans->working_directory($dirname);
219
220
    $mhash = $trans->message_hash();
221
    $mhash->{message_type} = 'QUOTE';
222
    $trans->ingest( $mhash, $filename );
223
224
    $quote = $schema->resultset('EdifactMessage')->find( { filename => $filename } );
225
226
    # Test quote expects REF to be a valid and active fund code
227
    $active_period = $builder->build(
228
        {
229
            source => 'Aqbudgetperiod',
230
            value  => { budget_period_active => 1 }
231
        }
232
    );
233
    $fund = $builder->build(
234
        {
235
            source => 'Aqbudget',
236
            value  => {
237
                budget_code      => 'REF2',
238
                budget_period_id => $active_period->{budget_period_id}
239
            }
240
        }
241
    );
242
243
    # The quote expects a ROT1 stock rotation roata to exist
244
    $rota = $builder->build_object(
245
        {
246
            class => 'Koha::StockRotationRotas',
247
            value => { title => 'ROT2' }
248
        }
249
    );
250
    $builder->build(
251
        {
252
            source => 'Stockrotationstage',
253
            value  => { rota_id => $rota->rota_id },
254
        }
255
    );
256
257
    # Process the test quote file
258
    my $edi_module = Test::MockModule->new('Koha::EDI');
259
    $edi_module->mock(
260
        '_check_for_existing_bib',
261
        sub {
262
            my $bib_record = shift;
263
            return undef;
264
        }
265
    );
266
    $edi_module->mock(
267
        '_handle_008_field',
268
        sub {
269
            my $bib_record = shift;
270
            return $bib_record;
271
        }
272
    );
273
    process_quote($quote);
274
275
    $quote->get_from_storage;
276
277
    # Tests for generated basket for passed quote file
278
    $baskets = Koha::Acquisition::Baskets->search( { booksellerid => $account->{vendor_id} } );
279
    $basket  = $baskets->next;
280
281
    $orders = $basket->orders;
282
    $order  = $orders->next;
283
284
    $biblio       = $order->biblio;
285
    $record       = $biblio->record;
286
    $record_field = $record->field('008');
287
288
    is( $record_field->{_data}, undef, 'Field has not been added' );
289
290
    $schema->storage->txn_rollback;
291
}
(-)a/t/edi_testfiles/QUOTES_SMALL_2.CEQ (-1 / +1 lines)
Line 0 Link Here
0
- 
1
UNA:+.? 'UNB+UNOC:3+5013546027173+5013546098818+240123:0945+1044416+ASKEDI:+QUOTES++++'UNH+1044416001+QUOTES:D:96A:UN:EAN002'BGM+31C::28+WO0800131+9'DTM+137:20240123:102'RFF+ON:orders 23/1'CUX+2:GBP:12'NAD+BY+5013546098818::9'NAD+SU+5013546027173::9'LIN+1++9781529923766:EN'PIA+5+152992376X:IB'IMD+L+010+:::Thompson'IMD+L+011+:::Louise'IMD+L+050+:::Lucky'IMD+L+060+:::learning to live again'IMD+L+120+:::Ebury Spotlight'IMD+L+170+:::2024'IMD+L+180+:::304'IMD+L+220+:::Hbk'IMD+L+230+:::791.45'IMD+L+250+:::AN'QTY+1:1'GIR+001+BOOK:LST+ANF:LSQ+CPL:LLO+REF:LFN+791.45:LCL'GIR+001+22.00:LCV'GIR+001+ROT1:LRP'PRI+AAE:22.00'RFF+QLI:WO0800131000001'UNS+S'CNT+2:1'UNT+27+1044416001'UNZ+1+1044416'

Return to bug 38271