Skip to content

Commit

Permalink
Merge pull request #3600 from plentymarkets/feat/eu-responsible-phone-no
Browse files Browse the repository at this point in the history
feat: add eu responsible phone number in shopbuilder
  • Loading branch information
ksted authored Oct 22, 2024
2 parents 1f9d085 + 567f066 commit 6a9bf4b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meta/documents/changelog_de.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Hinzugefügt

- In ShopBuilder können jetzt Variablen genutzt werden, um bei Herstellern außerhalb der Europäischen Union den Namen, die Postanschrift und die elektronische Adresse des Verantwortlichen anzugeben.
- In ShopBuilder können jetzt Variablen genutzt werden, um bei Herstellern außerhalb der Europäischen Union den Namen, die Postanschrift, die elektronische Adresse und die Telefonnummer des Verantwortlichen anzugeben.

## v5.0.68 (2024-09-26) <a href="https://github.com/plentymarkets/plugin-ceres/compare/5.0.67...5.0.68" target="_blank" rel="noopener"><b>Übersicht aller Änderungen</b></a>

Expand Down
2 changes: 1 addition & 1 deletion meta/documents/changelog_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

### Added

- When selling items by manufacturers outside the European Union, you can now use ShopBuilder variables to insert the name, address, and email of the person responsible.
- When selling items by manufacturers outside the European Union, you can now use ShopBuilder variables to insert the name, address, email, and phone number of the person responsible.

## v5.0.68 (2024-09-26) <a href="https://github.com/plentymarkets/plugin-ceres/compare/5.0.67...5.0.68" target="_blank" rel="noopener"><b>Overview of all changes</b></a>

Expand Down
1 change: 1 addition & 0 deletions resources/lang/de/Widget.properties
Original file line number Diff line number Diff line change
Expand Up @@ -794,6 +794,7 @@ dataFieldManufacturerResponsiblePostCode = "EU-Verantwortlicher Postleitzahl"
dataFieldManufacturerResponsibleTown = "EU-Verantwortlicher Ort"
dataFieldManufacturerResponsibleCountry = "EU-Verantwortlicher Land"
dataFieldManufacturerResponsibleEmail = "EU-Verantwortlicher E-Mail"
dataFieldManufacturerResponsiblePhoneNo = "EU-Verantwortlicher Telefonnummer"
; Data Fields - Units
dataFieldUnits = "Maße"
dataFieldUnitsContent = "Inhalt"
Expand Down
1 change: 1 addition & 0 deletions resources/lang/en/Widget.properties
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@ dataFieldManufacturerResponsiblePostCode = "EU-Responsible postcode"
dataFieldManufacturerResponsibleTown = "EU-Responsible town"
dataFieldManufacturerResponsibleCountry = "EU-Responsible country"
dataFieldManufacturerResponsibleEmail = "EU-Responsible email"
dataFieldManufacturerResponsiblePhoneNo = "EU-Responsible phone number"
; Data Fields - Units
dataFieldUnits = "Dimensions"
dataFieldUnitsContent = "Content"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@ function register()
$this->addField("responsibleTown", "Ceres::Widget.dataFieldManufacturerResponsibleTown", "item_data_field('item.manufacturer.responsibleTown')");
$this->addField("responsibleCountry", "Ceres::Widget.dataFieldManufacturerResponsibleCountry", "item_data_field('item.manufacturer.responsibleCountry')");
$this->addField("responsibleEmail", "Ceres::Widget.dataFieldManufacturerResponsibleEmail", "item_data_field('item.manufacturer.responsibleEmail')");
$this->addField("responsiblePhoneNo", "Ceres::Widget.dataFieldManufacturerResponsiblePhoneNo", "item_data_field('item.manufacturer.responsiblePhoneNo')");
}
}

0 comments on commit 6a9bf4b

Please sign in to comment.