|
Lines 36-41
my $csv_profile = Koha::CsvProfile->new({
Link Here
|
| 36 |
type => 'export_basket', |
36 |
type => 'export_basket', |
| 37 |
csv_separator => ',', |
37 |
csv_separator => ',', |
| 38 |
content => 'autor=biblio.author|title=biblio.title|quantity=aqorders.quantity', |
38 |
content => 'autor=biblio.author|title=biblio.title|quantity=aqorders.quantity', |
|
|
39 |
description => 'csv profile', |
| 39 |
})->store; |
40 |
})->store; |
| 40 |
|
41 |
|
| 41 |
my $csv_profile2 = Koha::CsvProfile->new({ |
42 |
my $csv_profile2 = Koha::CsvProfile->new({ |
|
Lines 43-48
my $csv_profile2 = Koha::CsvProfile->new({
Link Here
|
| 43 |
type => 'export_basket', |
44 |
type => 'export_basket', |
| 44 |
csv_separator => ',', |
45 |
csv_separator => ',', |
| 45 |
content => 'biblio.author | title = biblio.title|quantity=aqorders.quantity', |
46 |
content => 'biblio.author | title = biblio.title|quantity=aqorders.quantity', |
|
|
47 |
description => 'csv profile 2', |
| 46 |
})->store; |
48 |
})->store; |
| 47 |
|
49 |
|
| 48 |
my $basketno; |
50 |
my $basketno; |
| 49 |
- |
|
|