Changeset 2417943
- Timestamp:
- 11/13/2020 01:09:38 PM (5 years ago)
- Location:
- checkrobin/trunk
- Files:
-
- 5 edited
-
changelog.txt (modified) (1 diff)
-
languages/checkrobin-de_DE.mo (modified) (previous)
-
languages/checkrobin-de_DE.po (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
src/CheckrobinCreate.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
checkrobin/trunk/changelog.txt
r2410353 r2417943 4 4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 7 ## [0.0.9] - 2020-11-13 8 ### Added 9 - Enhancement: If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box 10 ### Changed 11 - Changed: The menu item "Settings" has been renamed to "Checkrobin Settings" 12 - Changed: Updated /doc 6 13 7 14 ## [0.0.8] - 2020-10-31 -
checkrobin/trunk/languages/checkrobin-de_DE.po
r2410353 r2417943 3 3 "Project-Id-Version: Checkrobin\n" 4 4 "POT-Creation-Date: 2020-10-31 15:21+0100\n" 5 "PO-Revision-Date: 2020-1 0-31 15:26+0100\n"5 "PO-Revision-Date: 2020-11-13 12:09+0100\n" 6 6 "Last-Translator: \n" 7 7 "Language-Team: Checkrobin GmbH <support@checkrobin.com>\n" … … 22 22 #: src/Admin.php:142 src/Admin.php:155 src/Settings.php:62 23 23 msgid "Checkrobin Settings" 24 msgstr " Einstellungen"24 msgstr "Checkrobin Einstellungen" 25 25 26 26 #: src/Admin.php:156 -
checkrobin/trunk/readme.txt
r2410353 r2417943 93 93 == Changelog == 94 94 95 = 0.0.9 = 96 ### Added 97 * [Enhancement] If an order contains a maximum of 1 product, the dimensions of this product are now used as the basis for the dimensions of the outer box 98 * [Changed] The menu item "Settings" has been renamed to "Checkrobin Settings" 99 * [Changed] Updated /doc 100 95 101 = 0.0.8 = 96 102 * [Enhancement] Translate Plugin Title and Description, optimize i18n -
checkrobin/trunk/src/CheckrobinCreate.php
r2410353 r2417943 4 4 * The Checkrobin plugin enables you to transfer order data from your WooCommerce shop directly to Checkrobin. 5 5 * 6 * @version 0.0. 86 * @version 0.0.9 7 7 * @link https://www.checkrobin.com/de/integration 8 8 * @license GPLv2 … … 258 258 $orderData['package']['height'] = 0; 259 259 260 if ($productCount == 1) { 261 $orderData['package']['length'] = $orderData['products'][0]['length']; 262 $orderData['package']['width'] = $orderData['products'][0]['width']; 263 $orderData['package']['height'] = $orderData['products'][0]['height']; 264 } 265 260 266 foreach ($orderData['products'] as $singleProduct) { 261 267 $orderData['package']['weight'] += $singleProduct['weight'];
Note: See TracChangeset
for help on using the changeset viewer.