Describe the bug
When a product is copied, the URL segment is not unique.
And when this product is displayed in the product list, it links to the original product.
To Reproduce
Steps to reproduce the behavior:
Copy any product in the backend
Visit the product list
click on the newly copied product
See the original product
Expected behavior
The URL segment of the copied product should be unique
Environment
Describe the bug When a product is copied, the URL segment is not unique. And when this product is displayed in the product list, it links to the original product.
To Reproduce Steps to reproduce the behavior:
Expected behavior The URL segment of the copied product should be unique
Additional context Here https://github.com/aimeos/ai-admin-jqadm/blob/master/admin/jqadm/src/Admin/JQAdm/Product/Standard.php#L486 the string '_copy' is added to the
product.code
(SKU). Adding ais our current workaround.
Tobi