Skip to content

Commit f8b9f99

Browse files
Chhandak.BaruaChhandak.Barua
authored andcommitted
ACP2E-507: checkout process - filled form 'company' details missing on billing step
1 parent c19a514 commit f8b9f99

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

app/code/Magento/Checkout/view/frontend/web/template/billing-address/details.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@
1616
<text args="currentBillingAddress().postcode"></text><br/>
1717
<text args="getCountryName(currentBillingAddress().countryId)"></text><br/>
1818
<a if="currentBillingAddress().telephone" attr="'href': 'tel:' + currentBillingAddress().telephone" text="currentBillingAddress().telephone"></a><br/>
19-
19+
<if args="currentBillingAddress().vatId">
20+
VAT: <text args="currentBillingAddress().vatId"></text><br/>
21+
</if>
2022
<each args="data: currentBillingAddress().customAttributes, as: 'element'">
2123
<text args="$parent.getCustomAttributeLabel(element)"></text>
2224
<br/>

app/code/Magento/Checkout/view/frontend/web/template/shipping-address/address-renderer/default.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
<text args="address().city "></text>, <span text="address().region"></span> <text args="address().postcode"></text><br/>
1515
<text args="getCountryName(address().countryId)"></text><br/>
1616
<a if="address().telephone" attr="'href': 'tel:' + address().telephone" text="address().telephone"></a><br/>
17-
17+
<if args="address().vatId">
18+
VAT: <text args="address().vatId"></text><br/>
19+
</if>
1820
<each args="data: address().customAttributes, as: 'element'">
1921
<text args="$parent.getCustomAttributeLabel(element)"></text>
2022
<br/>

app/code/Magento/Checkout/view/frontend/web/template/shipping-information/address-renderer/default.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
<text args="address().city "></text>, <span text="address().region"></span> <text args="address().postcode"></text><br/>
1515
<text args="getCountryName(address().countryId)"></text><br/>
1616
<a if="address().telephone" attr="'href': 'tel:' + address().telephone" text="address().telephone"></a><br/>
17-
17+
<if args="address().vatId">
18+
VAT: <text args="address().vatId"></text><br/>
19+
</if>
1820
<each args="data: address().customAttributes, as: 'element'">
1921
<text args="$parent.getCustomAttributeLabel(element)"></text>
2022
<br/>

0 commit comments

Comments
 (0)