Skip to content

Commit

Permalink
Renamed Kirjavälitys product group to Storia
Browse files Browse the repository at this point in the history
  • Loading branch information
Lasse Lehtinen committed Sep 4, 2024
1 parent 0bef09a commit eb65e5d
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/Groschen.php
Original file line number Diff line number Diff line change
Expand Up @@ -1292,11 +1292,11 @@ public function getSubjects()
]);
}

// Kirjavälitys product group
$kirjavälitysProductGroup = $this->getKirjavälitysProductGroup();
// Storia product group
$storiaProductGroup = $this->getStoriaProductGroup();

if (is_array($kirjavälitysProductGroup)) {
$subjects->push($kirjavälitysProductGroup);
if (is_array($storiaProductGroup)) {
$subjects->push($storiaProductGroup);
}

// This is disabled until the Thema project has completed
Expand Down Expand Up @@ -2274,14 +2274,14 @@ public function getBicCode()
}

/**
* Return the Kirjavälitys product group
* Return the Storia product group
*
* @return array|null
*/
public function getKirjavälitysProductGroup()
public function getStoriaProductGroup()
{
// Product group mapping
$kirjavälitysProductGroups = [
$storiaProductGroups = [
'00' => 'Kotimainen Kaunokirjallisuus',
'01' => 'Käännetty Kaunokirjallisuus',
'03' => 'Tietokirjallisuus',
Expand Down Expand Up @@ -2343,12 +2343,12 @@ public function getKirjavälitysProductGroup()
$productGroup = '86';
}

if (isset($productGroup) && array_key_exists($productGroup, $kirjavälitysProductGroups)) {
if (isset($productGroup) && array_key_exists($productGroup, $storiaProductGroups)) {
return [
'SubjectSchemeIdentifier' => '23',
'SubjectSchemeName' => 'Kirjavälitys - Tuoteryhmä',
'SubjectSchemeName' => 'Storia - Tuoteryhmä',
'SubjectCode' => $productGroup,
'SubjectHeadingText' => $kirjavälitysProductGroups[$productGroup],
'SubjectHeadingText' => $storiaProductGroups[$productGroup],
];
}

Expand Down Expand Up @@ -3374,9 +3374,9 @@ public function getSuppliers()
'IDValue' => 'FI01100310',
],
],
'SupplierName' => 'Kirjavälitys',
'SupplierName' => 'Storia',
'TelephoneNumber' => '+358 10 345 1520',
'EmailAddress' => 'tilaukset@kirjavalitys.fi',
'EmailAddress' => 'tilaukset@storia.fi',
'OnHand' => 100,
'Proximity' => '07',
]);
Expand All @@ -3401,11 +3401,11 @@ public function getSuppliers()
throw new Exception('Could not fetch stock data for GTIN '.$this->productNumber);
} else {
// Add default supplier
$supplierName = 'Kirjavälitys';
$supplierName = 'Storia';
$telephoneNumber = '+358 10 345 1520';
$emailAddress = 'tilaukset@kirjavalitys.fi';
$emailAddress = 'tilaukset@storia.fi';

// Kirjavälitys identifiers
// Storia identifiers
$supplierIdentifiers = [
[
'SupplierIDType' => '01',
Expand Down

0 comments on commit eb65e5d

Please sign in to comment.