- Status Closed
- Percent Complete
- Task Type Enhancement
- Category Backend / Core
-
Assigned To
Owen - Operating System All
- Severity Medium
- Priority Critical
- Reported Version 1.0
- Due in Version Undecided
-
Due Date
Undecided
- Votes
- Private
FS#187 - Group combine Shopify orders to the same person
"It's not very common but it does happen from time to time. A downside of us offering free shipping in the US; if someone forgets something, they'll just place a separate order"
Closed by FS_admin
17.04.2025 13:29
Reason for closing: Implemented
Additional comments about closing: Initial version been live for a while now with no user feedback, so closing this CL
17.04.2025 13:29
Reason for closing: Implemented
Additional comments about closing: Initial version been live for a while now with no user feedback, so closing this CL
Loading...
Available keyboard shortcuts
- Alt + ⇧ Shift + l Login Dialog / Logout
- Alt + ⇧ Shift + a Add new task
- Alt + ⇧ Shift + m My searches
- Alt + ⇧ Shift + t focus taskid search
Tasklist
- o open selected task
- j move cursor down
- k move cursor up
Task Details
- n Next task
- p Previous task
- Alt + ⇧ Shift + e ↵ Enter Edit this task
- Alt + ⇧ Shift + w watch task
- Alt + ⇧ Shift + y Close Task
Task Editing
- Alt + ⇧ Shift + s save task
SELECT `customerJson`, `orderJson`,`orderStatusJson`, CONCAT(CONCAT('[', GROUP_CONCAT(`orderedItemsJson`)), ']'), `id`, STR_TO_DATE(CAST(JSON_UNQUOTE(JSON_EXTRACT( `orderJson`, '$.orderDate' )) AS CHAR), '%b %d %Y %H:%i:%s' ) AS orderDate FROM IgennusOrders WHERE (STR_TO_DATE(CAST(JSON_UNQUOTE(JSON_EXTRACT( `orderJson`, '$.orderDate' )) AS CHAR), '%b %d %Y' ) BETWEEN '2024-08-01' AND '2024-10-10') AND CAST(JSON_UNQUOTE(JSON_EXTRACT( `customerJson`, '$.name' )) AS CHAR) LIKE '%ennox%' GROUP BY CAST(JSON_UNQUOTE(JSON_EXTRACT( `customerJson`, '$.name' )) AS CHAR), CAST(JSON_UNQUOTE(JSON_EXTRACT( `orderJson`, '$.orderDate' )) AS CHAR), CAST(JSON_UNQUOTE(JSON_EXTRACT( `customerJson`, '$.deliverAddress' )) AS CHAR) ORDER BY `orderDate` DESC
but this will result in an array of ordered items, which will need to be handled. Probably best to handle before delivery to avoid major and error prone alterations to the web front end.
FS#193, on the UK portal list