15
15
use Magento \Customer \Api \CustomerRepositoryInterface ;
16
16
use Magento \Framework \Controller \Result \Json ;
17
17
use Magento \Framework \Controller \Result \JsonFactory ;
18
- use Magento \Framework \Exception \LocalizedException ;
19
18
use Magento \Sales \Api \Data \OrderInterface ;
20
19
use Magento \Sales \Api \OrderCustomerManagementInterface ;
21
20
use Magento \Sales \Api \OrderRepositoryInterface ;
21
+ use Magento \Store \Model \App \Emulation ;
22
22
use MagePal \GuestToCustomer \Helper \Data ;
23
23
24
24
/**
@@ -62,6 +62,11 @@ class Index extends Action
62
62
*/
63
63
private $ authSession ;
64
64
65
+ /**
66
+ * @var Emulation
67
+ */
68
+ private $ emulation ;
69
+
65
70
/**
66
71
* Index constructor.
67
72
* @param Context $context
@@ -81,7 +86,8 @@ public function __construct(
81
86
OrderCustomerManagementInterface $ orderCustomerService ,
82
87
JsonFactory $ resultJsonFactory ,
83
88
Session $ authSession ,
84
- Data $ helperData
89
+ Data $ helperData ,
90
+ Emulation $ emulation
85
91
) {
86
92
parent ::__construct ($ context );
87
93
@@ -92,6 +98,7 @@ public function __construct(
92
98
$ this ->customerRepository = $ customerRepository ;
93
99
$ this ->authSession = $ authSession ;
94
100
$ this ->helperData = $ helperData ;
101
+ $ this ->emulation = $ emulation ;
95
102
}
96
103
97
104
/**
@@ -110,7 +117,9 @@ public function execute()
110
117
if ($ orderId && $ order ->getEntityId ()) {
111
118
try {
112
119
if ($ this ->accountManagement ->isEmailAvailable ($ order ->getCustomerEmail ())) {
120
+ $ this ->emulation ->startEnvironmentEmulation ($ order ->getStoreId (), 'adminhtml ' );
113
121
$ customer = $ this ->orderCustomerService ->create ($ orderId );
122
+ $ this ->emulation ->stopEnvironmentEmulation ();
114
123
} elseif ($ this ->helperData ->isMergeIfCustomerAlreadyExists ()) {
115
124
$ customer = $ this ->customerRepository ->get ($ order ->getCustomerEmail ());
116
125
} else {
@@ -153,6 +162,11 @@ protected function _isAllowed()
153
162
return $ this ->_authorization ->isAllowed ('MagePal_GuestToCustomer::guesttocustomer ' );
154
163
}
155
164
165
+ /**
166
+ * @param $hasError
167
+ * @param $message
168
+ * @return array
169
+ */
156
170
protected function getMessage ($ hasError , $ message )
157
171
{
158
172
return [
0 commit comments