Skip to content

Commit e2fc8ef

Browse files
authored
Remove ambiguity between SKUs and product codes. (#2673)
1 parent 9745cad commit e2fc8ef

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

docs/commerce/cart/quick_order.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition: commerce
66
# Quick order
77

88
The quick order form allows users to efficiently process orders with multiple items in bulk through the storefront.
9-
Customers don't need to browse the countless store pages, they can fill in a provided form with products' SKU number and quantity, or upload their own list into the system directly.
9+
Customers don't need to browse the countless store pages, they can fill in a provided form with product code (SKU) and quantity, or upload their own list into the system directly.
1010
Quick order forms can be used by registered and guest users.
1111

1212
## Quick order flows
@@ -17,7 +17,7 @@ Customers can use one or both of the following methods to specify products and p
1717

1818
1\. Customer clicks the **Quick order** link.
1919

20-
2\. Provides products' SKU and quantity. At this point, no validation is provided.
20+
2\. Provides product code and quantity. At this point, no validation is provided.
2121

2222
![Customer enters individual products](img/quick_order_list.png)
2323

@@ -31,11 +31,11 @@ Customers can use one or both of the following methods to specify products and p
3131

3232
2\. Downloads a sample file from **Add your order** section.
3333

34-
3\. Uses the template to fill in their order with products' SKU and quantity.
34+
3\. Uses the template to fill in their order with product code and quantity.
3535

3636
4\. Uploads the filled in quick order file back to the system by drag and drop or file selection.
3737

38-
5\. The file name appears in the **Add your order** section. At this point, only file validation is provided. The SKUs or product availability isn't validated.
38+
5\. The file name appears in the **Add your order** section. At this point, only file validation is provided. Product codes and availability aren't validated.
3939

4040
![Customer uploads list of products](img/quick_order_add_order.png)
4141

@@ -48,7 +48,7 @@ Customers can use one or both of the following methods to specify products and p
4848
Orders from quick order are validated in the cart.
4949
There, the system checks if:
5050

51-
- provided SKU is valid
51+
- provided product code is valid
5252
- provided products are available for purchase
5353
- requested quantities of products are available
5454

@@ -85,4 +85,3 @@ ibexa:
8585
batch_order:
8686
processed_records_limit: 2000
8787
```
88-

docs/commerce/transactional_emails/transactional_emails_parameters.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If this extensive list of variables isn't sufficient, you can [extend it to incl
4848
| |shippingMethodTypeName|Technical name of shipping method type| | |
4949
| |shipmentStatus|Technical identifier of shipment status| |Only available in ShipmentStatusChange notification|
5050
|Product information|products.id|Product numerical ID|123|
51-
| |products.code|Product code, SKU|123456|
51+
| |products.code|Product code (SKU)|123456|
5252
| |products.name|Product name|iPhone 15 Pro 256GB Space Gray|
5353
| |products.url|Product view URL|https://example.com/product/iphone-15-pro-256gb-space-gray/|
5454
| |products.thumbnail|Product thumbnail URL|https://example.com/assets/images/iphone-15-pro-256gb-space-gray.jpg|
@@ -62,4 +62,4 @@ If this extensive list of variables isn't sufficient, you can [extend it to incl
6262
| |userEmail|User e-mail address|[email protected]|
6363
| |userName|User name|John Doe|
6464
|Password reset|token|Token used to reset password|5bcc871f1a966db58c06187369813447|
65-
| |passwordResetUrl|Absolute URL to reset password|http://example.com/user/reset-password/5bcc871f1a966db58c06187369813447|
65+
| |passwordResetUrl|Absolute URL to reset password|http://example.com/user/reset-password/5bcc871f1a966db58c06187369813447|

docs/content_management/content_management_guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,6 @@ individual products can have multiple variants with differing related assets, pr
268268

269269
### B2B store
270270

271-
Extensive content management capabilities would prove themselves in a setting, where multiple buyers from different partner companies connect to an industry leader’s trading website, and they expect to find well organized SKU catalogs that contain basic product information.
271+
Extensive content management capabilities would prove themselves in a setting, where multiple buyers from different partner companies connect to an industry leader’s trading website, and they expect to find well organized product code (SKU) catalogs that contain basic product information.
272272
From there they would like to access detailed specifications, white papers and application notes.
273273
The same products could come with different brands and at different price points, depending on the customer segment or origin.

docs/content_management/field_types/field_type_storage.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ In this case it's recommended to either create base implementation which each ga
182182

183183
Just like in the case of data, storing [field type settings](type_and_value.md#field-type-settings) in content item tables may prove insufficient.
184184
It's not a problem if your setting specifies, for example, the allowed number of characters in a text field.
185-
However, the field type may represent a more complex object, for example, it may consist of two or more other fields, such as the name, SKU, and price, and there can be a set of default values instead of just one.
185+
However, the field type may represent a more complex object, for example, it may consist of two or more other fields, such as the name, product code (SKU), and price, and there can be a set of default values instead of just one.
186186
Once you add validation rules for these field values, then it becomes an issue.
187187

188188
You can overcome this obstacle:

docs/update_and_migration/from_4.5/update_from_4.5.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ php bin/console ibexa:migrations:migrate --file=2023_12_07_20_23_editor_content_
356356

357357
Site context is used in content tree to display only those content items that belong to the selected website.
358358

359-
You can add locations that shoudn't be publicly accessible to the list of excluded paths:
359+
You can add locations that shouldn't be publicly accessible to the list of excluded paths:
360360

361361
```yaml
362362
# /config/packages/ibexa_site_context.yaml

0 commit comments

Comments
 (0)