Is it possible to make and distinguish orders for different projects?
If possible, what would be they best way to stucture the work flow as Iâd like to use this method to create order lists for different projects from a project tab (and inside a specific project)
Each cart being unique to a particular project and user can always return to project and edit or delete cart items as need be when project is still work in progress.
I had envisioned a work flow in which user opens a project and from within that particular project he can then add items (like shopping for project components and qty) using this trebuchet methodâŠ
Got it. Yaâshould be doable. Youâd need to reference the project youâre currently viewing in order to dynamically display the current screenâs project order items.
Thank you so much, but i cant seem to figure out howâŠ
Iâve been trying since you made reference to the video but once I open the collection of items to add to project, the project ID in the url is lost.
I have also tired a sequence of actions in which one of them is copied to clip board and I copy the project ID but how do you then paste into the desired column?
Perhaps my setup is complicated all together? The tibuchet method really got me excited as a great way to save up on rows but harder to execute than I thought (Iâm more or less a beginner with lots to learn)
I actually tried the whole table as well as a relationâŠ
Whats the best method here?
I currently have a relation to the order items in the projects table, then in the projects tab, I view the items as a collection from that relation.
But when I want to add a specific item and its quantity to a list, Iâm forced to have data write to the order items without a way of carrying the Project ID. If I use the url method, the url would have changed
@Robert_Petitto
Isnât a bit risky to base a production app on a column type like âmultiple filesâ which is really designed for something quite different.
If many many rows are condensed in a single cell then Glide could get more restrictive on such a column type as it potentially makes the app developers use a lower tier. Whatâs your thought on that @NoCodeAndy - would you say it is safe to build an app based on the multiple files column as shown in the (not needed to say) very clever app
@Robert_Petitto hey, thanks for the tutorial, itâs been super helfull - Iâve managed to create an ordering system, but would like to turn it into a marketplace ordering system.
Customer adds items from multiple distributors to cart (done)
Group cart items by distributor (done)
Sends email with filtered order items to each distributor when user submits order (stuck)
From what I can find, the suggestions are to either have a order_group helper table or make a bunch of single value columns and look up the distributor for each item.
Thanks for the quick response. Iâll try that - JSON setup is still WIP, but havenât changed the orderId column other than add in the distributor thatâs linked to the product being, so will need to loop through all items by distributor to trigger mails. Trying to avoid creating extra tables for order_groups