Skip to content

Commit b9a32ab

Browse files
authored
1.1.66 Release (#200)
* 1.1.66 Release
1 parent 5826067 commit b9a32ab

18 files changed

+925
-11
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento/quality-patches",
33
"description": "Provides quality patches for AdobeCommerce & Magento OpenSource",
44
"type": "magento2-component",
5-
"version": "1.1.65",
5+
"version": "1.1.66",
66
"license": "proprietary",
77
"repositories": {
88
"repo": {

patches-info.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
diff --git a/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html b/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
2+
index 4ad454a230..cd19734afe 100644
3+
--- a/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
4+
+++ b/vendor/magento/module-purchase-order/view/frontend/web/template/checkout/billing-address/details.html
5+
@@ -1,21 +1,34 @@
6+
<!--
7+
/**
8+
- * Copyright © Magento, Inc. All rights reserved.
9+
- * See COPYING.txt for license details.
10+
+ * ADOBE CONFIDENTIAL
11+
+ *
12+
+ * Copyright 2020 Adobe
13+
+ * All Rights Reserved.
14+
+ *
15+
+ * NOTICE: All information contained herein is, and remains
16+
+ * the property of Adobe and its suppliers, if any. The intellectual
17+
+ * and technical concepts contained herein are proprietary to Adobe
18+
+ * and its suppliers and are protected by all applicable intellectual
19+
+ * property laws, including trade secret and copyright laws.
20+
+ * Dissemination of this information or reproduction of this material
21+
+ * is strictly forbidden unless prior written permission is obtained
22+
+ * from Adobe.
23+
*/
24+
-->
25+
<div if="isAddressDetailsVisible() && currentBillingAddress()" class="billing-address-details">
26+
- <text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text> <text args="currentBillingAddress().middlename"></text>
27+
+ <text args="currentBillingAddress().prefix"></text> <text args="currentBillingAddress().firstname"></text>
28+
+ <text args="currentBillingAddress().middlename"></text>
29+
<text args="currentBillingAddress().lastname"></text> <text args="currentBillingAddress().suffix"></text><br>
30+
<if args="currentBillingAddress().company">
31+
<text args="currentBillingAddress().company"></text><br>
32+
</if>
33+
- <text args="currentBillingAddress().street.join(', ')"></text><br>
34+
- <text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span> <text args="currentBillingAddress().postcode"></text><br>
35+
+ <text args="_.values(_.compact(currentBillingAddress().street)).join(', ')"></text><br>
36+
+ <text args="currentBillingAddress().city "></text>, <span text="currentBillingAddress().region"></span>
37+
+ <text args="currentBillingAddress().postcode"></text><br>
38+
<text args="getCountryName(currentBillingAddress().countryId)"></text><br>
39+
<a if="currentBillingAddress().telephone" attr="'href': 'tel:' + currentBillingAddress().telephone" text="currentBillingAddress().telephone"></a><br>
40+
<if args="currentBillingAddress().vatId">
41+
- VAT: <text args="currentBillingAddress().vatId"></text><br>
42+
+ <translate args="'VAT'"></translate>: <text args="currentBillingAddress().vatId"></text><br>
43+
</if>
44+
45+
<each args="data: currentBillingAddress().customAttributes, as: 'element'">

0 commit comments

Comments
 (0)