Skip to content

Commit 77a5cd1

Browse files
author
Graham Wharton
committed
Updated label for Content Type configuration field.
Changed Allowable Methods (Non Doc and Doc) to always be displayed no matter what the content type mode is. Changed the isDutiable function to only look at whether a shipment is domestic or not. Previously it would return dutiable for everything if the Content Type mode is non document (which causes problems for domestic shipments in Non Document mode). Fixes #19485
1 parent 733f2fc commit 77a5cd1

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

app/code/Magento/Dhl/Model/Carrier.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,8 +1968,6 @@ protected function isDutiable($origCountryId, $destCountryId)
19681968
{
19691969
$this->_checkDomesticStatus($origCountryId, $destCountryId);
19701970

1971-
return
1972-
self::DHL_CONTENT_TYPE_NON_DOC == $this->getConfigData('content_type')
1973-
|| !$this->_isDomestic;
1971+
return !$this->_isDomestic;
19741972
}
19751973
}

app/code/Magento/Dhl/etc/adminhtml/system.xml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
<label>Account Number</label>
3333
</field>
3434
<field id="content_type" translate="label" type="select" sortOrder="90" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
35-
<label>Content Type</label>
35+
<label>Content Type (Non Domestic)</label>
36+
<comment>Whether to use Documents or NonDocuments service for non domestic shipments. (Shipments within the EU are classed as domestic)</comment>
3637
<source_model>Magento\Dhl\Model\Source\Contenttype</source_model>
3738
</field>
3839
<field id="handling_type" translate="label" type="select" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
@@ -81,18 +82,12 @@
8182
</depends>
8283
</field>
8384
<field id="doc_methods" translate="label" type="multiselect" sortOrder="170" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
84-
<label>Allowed Methods</label>
85+
<label>Documents Allowed Methods</label>
8586
<source_model>Magento\Dhl\Model\Source\Method\Doc</source_model>
86-
<depends>
87-
<field id="content_type">D</field>
88-
</depends>
8987
</field>
9088
<field id="nondoc_methods" translate="label" type="multiselect" sortOrder="170" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
91-
<label>Allowed Methods</label>
89+
<label>Non Documents Allowed Methods</label>
9290
<source_model>Magento\Dhl\Model\Source\Method\Nondoc</source_model>
93-
<depends>
94-
<field id="content_type">N</field>
95-
</depends>
9691
</field>
9792
<field id="ready_time" translate="label comment" type="text" sortOrder="180" showInDefault="1" showInWebsite="1" showInStore="0" canRestore="1">
9893
<label>Ready time</label>

0 commit comments

Comments
 (0)