File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
Block/Adminhtml/Order/View Expand file tree Collapse file tree 4 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,8 @@ public function toHtml(){
150
150
<td style="padding:5px;"><span> ' . (($ data ['is_email_blacklist ' ] == 'Y ' ) ? 'Yes ' : (($ data ['is_email_blacklist ' ] == 'N ' ) ? 'No ' : '- ' )) . '</span></td>
151
151
<td style="padding:5px;"><span><strong>Credit Card Blacklist</strong> <a href="javascript:;" title="Whether the credit card is in our blacklist database.">[?]</a></span></td>
152
152
<td style="padding:5px;"><span> ' . (($ data ['is_credit_card_blacklist ' ] == 'Y ' ) ? 'Yes ' : (($ data ['is_credit_card_blacklist ' ] == 'N ' ) ? 'No ' : '- ' )) . '</span></td>
153
- <td colspan="3" style="padding:5px;"><span> </span></td>
153
+ <td style="padding:5px;"><span><strong>Phone Verified</strong> <a href="javascript:;" title="Whether the phone address is verified by the customer.">[?]</a></span></td>
154
+ <td style="padding:5px;"><span> ' . (isset ($ data ['is_phone_verified ' ]) ? $ data ['is_phone_verified ' ] : 'NA ' ) . '</span></td>
154
155
</tr>
155
156
<tr>
156
157
<td style="padding:5px;"><span><strong>Message</strong> <a href="javascript:;" title="FraudLabs Pro service message response.">[?]</a></span></td>
Original file line number Diff line number Diff line change @@ -27,4 +27,7 @@ Revision History for FraudLabs Pro Magento2
27
27
Fix compatibility issue.
28
28
29
29
2.0.12 2019-02-21
30
- Capture real IP behind firewalls and proxies.
30
+ Capture real IP behind firewalls and proxies.
31
+
32
+ 2.0.13 2019-05-24
33
+ Added is_phone_verified field.
Original file line number Diff line number Diff line change @@ -155,7 +155,7 @@ public function processSendRequestToFraudLabsPro($order) {
155
155
'payment_mode ' => $ paymentMode ,
156
156
'flp_checksum ' => ( isset ( $ _COOKIE ['flp_checksum ' ] ) ) ? $ _COOKIE ['flp_checksum ' ] : '' ,
157
157
'source ' => 'magento ' ,
158
- 'source_version ' => '2.0.12 ' ,
158
+ 'source_version ' => '2.0.13 ' ,
159
159
);
160
160
161
161
$ shippingAddress = $ order ->getShippingAddress ();
@@ -177,6 +177,7 @@ public function processSendRequestToFraudLabsPro($order) {
177
177
178
178
$ result ['ip_address ' ] = $ queries ['ip ' ];
179
179
$ result ['api_key ' ] = $ apiKey ;
180
+ $ result ['is_phone_verified ' ] = 'No ' ;
180
181
181
182
$ order ->setfraudlabspro_response (serialize ($ result ))->save ();
182
183
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " hexasoft/module-fraudlabspro" ,
3
3
"description" : " FraudLabs Pro Fraud Prevention plugin that screen the order transaction for online frauds. Fraud Prevention extension for Magento 2." ,
4
- "version" : " 2.0.12 " ,
4
+ "version" : " 2.0.13 " ,
5
5
"type" : " magento2-module" ,
6
6
"require" : {
7
7
"php" : " ~5.5.0|~5.6.0|~7.0"
You can’t perform that action at this time.
0 commit comments