@@ -24,13 +24,20 @@ The `Hryvinskyi_QuoteAddressValidator` module provides validation for quote addr
24
24
1. Navigate to ` Stores > Configuration > Security > Quote Address Validator.`
25
25
2. Configure the following fields:
26
26
- ** Enable:** Set to ` Yes` to enable the module.
27
+ - ** Validation Type:** Select the type of validation to apply to the address fields.
28
+ - ** ` Validate by Regex` ** - Validate the address fields using a regex pattern.
29
+ - ** ` Validate by stopwords` ** - Validate the address fields using a list of stopwords.
30
+ - ** ` Validate by stopwords and regex` ** - Validate the address fields using a list of stopwords and a regex pattern.
27
31
- ** Enable Firstname Validation** Set to ` Yes` to enable validation for the firstname field.
32
+ - ** Firstname Stopwords** Enter a list of stopwords to validate the firstname field.
28
33
- ** Firstname Regex** Enter a regex pattern to validate the firstname field.
29
34
- ** Firstname Error Message** Enter an error message to display when the firstname field does not match the pattern.
30
35
- ** Enable Lastname Validation** Set to ` Yes` to enable validation for the lastname field.
36
+ - ** Lastname Stopwords:** Enter a list of stopwords to validate the lastname field.
31
37
- ** Lastname Regex:** Enter a regex pattern to validate the lastname field.
32
38
- ** Lastname Error Message:** Enter an error message to display when the lastname field does not match the pattern.
33
39
- ** Enable Street Validation** Set to ` Yes` to enable validation for the street field.
40
+ - ** Street Stopwords:** Enter a list of stopwords to validate the street field.
34
41
- ** Street Regex:** Enter a regex pattern to validate the street field.
35
42
- ** Street Error Message:** Enter an error message to display when the street field does not match the pattern.
36
43
@@ -45,6 +52,12 @@ php bin/magento hryvinskyi:quote-address-validator:check-existing-addresses
45
52
This command will validate all existing quote addresses and display any errors that are found.
46
53
This is useful for detecting country-specific errors in addresses and names and changing Regex patterns for validation.
47
54
55
+ < details>
56
+ < summary> Console Responce Example. Click to expand< /summary>
57
+
58
+ ! [console_response.png](./docs/images/console_response.png)
59
+ < /details>
60
+
48
61
# # Example Regex Patterns
49
62
50
63
- Firstname Regex: ` /^([\p {L}' ]{3,50})$/u`
@@ -74,6 +87,11 @@ This is useful for detecting country-specific errors in addresses and names and
74
87
75
88
Preference for `\Magento\Quote\Model\BillingAddressManagement` added only for correct error message display. (added `LocalizedException` catch to `assign` method)
76
89
77
- ## Demo
90
+ ## Demo Backend
91
+
92
+ 
93
+
94
+
95
+ ## Demo Frontend
78
96
79
- 
97
+ 
0 commit comments