GX-Bug #70434
Von Patrick Bayer vor mehr als 1 Jahr aktualisiert
Steps to reproduce: 1. Login as Admin 2. Go to "Customers" > "Customers" the (new) customer detail page of a customer that has at least one order 3. Create two customers with Open the same name 4. Create orders with each of that customer 4. Go back to "Customers" > "Customers" 5. Click the Shopping Cart Symbol of one of the customers Expected result: Orders are filtered by ID, only orders made by this customer are shown ID Actual result: Orders are filtered by name, so orders of both customers are shown name Affected line of code: https://sources.gambio-server.net/gambio/gxdev/-/blob/develop/src/GambioAdmin/Modules/Customer/ui/assets/Components/overview/data-table/SingleAction.vue#L11 Suggested solution: ``` <a :href="`${baseUrl}/admin/admin.php?do=OrdersOverview&filter[customer]=%23${user.id}`" ```