Re: Ship Date Tracking Spreadsheet
Sadly looks like mine is being held up due to that commercial invoice thing as well. Hopefully it does not take long for it to get cleared up.
Re: Ship Date Tracking Spreadsheet
Sadly looks like mine is being held up due to that commercial invoice thing as well. Hopefully it does not take long for it to get cleared up.
You mean "A missing commercial invoice is causing a delay."? Mine was stuck that way for about 24 hours, then it got moving along. Now it's stuck in Germany, but I suspect it will be moving along in the next 18 hours or so, as it will be Monday business hours there soon :).
Mine is heading to Washington, USA:
Edit: My package has now departed Germany, and I've updated the image below for future reference.
My package was held in Koeln, Germany for ~36 hours awaiting clearance.
Re: Ship Date Tracking Spreadsheet
Hey, does anyone know if their ahead or behind schedule?
Re: Ship Date Tracking Spreadsheet
Hey, does anyone know if their ahead or behind schedule?
Pretty much right on schedule. When I ordered mine it said Jan 2018 for new orders, and very shortly after it changed to Feb 2018. Since then, they have continued to promise Late Jan/Early Feb for mine. Mine shipped 2/8 with a label printed the day prior on 2/7, so that's right on target for what I've been expecting the whole time. It's a little bit off for Assembled units, and units Black printed parts, but for Orange Kits it's pretty much spot on the original and estimates.
I ordered on 11/15 (IIRC). I'm expecting to get mine sometime between 2/13 and 2/16. It was originally planned for 2/13 but it seems an invoice is missing from my package so clearance is taking a bit longer than typical.
Edit: It's back on track again for 2/13 delivery :)!
Re: Ship Date Tracking Spreadsheet
What's up with that big dip in the Fulfillment History?
I was digging back through the older orders on the spreadsheet and see that there is a good deal of orders placed that had no action them. I made a
minor enhancement to the copyFullfillment script to now only track those 'Preorders' who actually have a non-None request associated with them. Otherwise, they are in a yet-to-be-plotted 'Abandoned' data set.
Is this something worth keeping moving forward, or is the running list of all unfulfilled orders before the cutoff date still relevant?
Re: Ship Date Tracking Spreadsheet
What's up with that big dip in the Fulfillment History?
I was digging back through the older orders on the spreadsheet and see that there is a good deal of orders placed that had no action them. I made a
minor enhancement to the copyFullfillment script to now only track those 'Preorders' who actually have a non-None request associated with them. Otherwise, they are in a yet-to-be-plotted 'Abandoned' data set.
Is this something worth keeping moving forward, or is the running list of all unfulfilled orders before the cutoff date still relevant?
Ah, good you are here as well. I just posted a bunch of comments in an unrelated comment chain in the spreadsheet, hoping to catch you.
The dip is because you added a tracked state to the script without adding it to the output map or the sheet which tracks the data. We can fix it, but it will mean that a sudden block of color appears in the graph with no apparent relation to any other block. I'd suggest we make a different script and different chart tracking "data accuracy" as % fulfilled orders as a function of date. The fulfillment history graph should probably keep tracking the data accurately without us making guesses as to why that data doesn't follow the expected norm.
Re: Ship Date Tracking Spreadsheet
What's up with that big dip in the Fulfillment History?
I was digging back through the older orders on the spreadsheet and see that there is a good deal of orders placed that had no action them. I made a
minor enhancement to the copyFullfillment script to now only track those 'Preorders' who actually have a non-None request associated with them. Otherwise, they are in a yet-to-be-plotted 'Abandoned' data set.
Is this something worth keeping moving forward, or is the running list of all unfulfilled orders before the cutoff date still relevant?
Ah, good you are here as well. I just posted a bunch of comments in an unrelated comment chain in the spreadsheet, hoping to catch you.
The dip is because you added a tracked state to the script without adding it to the output map or the sheet which tracks the data. We can fix it, but it will mean that a sudden block of color appears in the graph with no apparent relation to any other block. I'd suggest we make a different script and different chart tracking "data accuracy" as % fulfilled orders as a function of date. The fulfillment history graph should probably keep tracking the data accurately without us making guesses as to why that data doesn't follow the expected norm.
Thanks Zaz, I left a reply to the Comment from Peter H. in the spreadsheet (is that you?) that I will back out my changes in the script so things get back to normal. I'm up for creating an ancillary plot that tracks 'None' orders older than the cutoff day that have no action on them. This will at least give us something to compare and then determine if/how to merge.
Re: Ship Date Tracking Spreadsheet
Thanks Zaz, I left a reply to the Comment from Peter H. in the spreadsheet (is that you?) that I will back out my changes in the script so things get back to normal. I'm up for creating an ancillary plot that tracks 'None' orders older than the cutoff day that have no action on them. This will at least give us something to compare and then determine if/how to merge.
Yes, that's me.
I'm still of the opinion that the chart should reflect the reported data, and since the reported data includes "forgotten" entries, so should the chart include "forgotten" entries. We have the exact same issue with all the other charts as well, like the chart tracking fulfillment by order week. The bars will never reach 100% fulfillment, and that is the way it is supposed to be. If we wish to "wash" the data - which, again, I don't agree with - we could either try to hunt down the people that entered the forgotten entries and ask them to update, or we could delete the entries altogether. Basically what we decide in that case is that the statistical data we have collected should be modified to fit our preconceived notion of what model the data should fit to.
But I digress.
This is what you need to add to the script to make it merge properly.
statusMap["abandoned"]
to the "newDataRow" array at the bottom of the copyFulfillment function.Done.
It sounds like a lot, but it really isn't that much work. I'd probably argue that the easiest would be to add the 150 days old filter and let the graph fix its own numbers, to avoid having to have to retroactively match historical data to some new rule.
Re: Ship Date Tracking Spreadsheet
Am I reading this spreadsheet right? If I order now, I could expect the mk3 kit to be shipped in around 3 months' (90 days) time?
From your experience, is this delay time likely to go down anytime soon?
Re: Ship Date Tracking Spreadsheet
Thanks Zaz, I left a reply to the Comment from Peter H. in the spreadsheet (is that you?) that I will back out my changes in the script so things get back to normal. I'm up for creating an ancillary plot that tracks 'None' orders older than the cutoff day that have no action on them. This will at least give us something to compare and then determine if/how to merge.
Yes, that's me.
I'm still of the opinion that the chart should reflect the reported data, and since the reported data includes "forgotten" entries, so should the chart include "forgotten" entries. We have the exact same issue with all the other charts as well, like the chart tracking fulfillment by order week. The bars will never reach 100% fulfillment, and that is the way it is supposed to be. If we wish to "wash" the data - which, again, I don't agree with - we could either try to hunt down the people that entered the forgotten entries and ask them to update, or we could delete the entries altogether. Basically what we decide in that case is that the statistical data we have collected should be modified to fit our preconceived notion of what model the data should fit to.
But I digress.
This is what you need to add to the script to make it merge properly.
statusMap["abandoned"]
to the "newDataRow" array at the bottom of the copyFulfillment function.Done.
It sounds like a lot, but it really isn't that much work. I'd probably argue that the easiest would be to add the 150 days old filter and let the graph fix its own numbers, to avoid having to have to retroactively match historical data to some new rule.
That sounds like a plan. I'll pull a copy down of the spreadsheet this week and hack on it and see how good it looks.
Thanks for the feedback.
Re: Ship Date Tracking Spreadsheet
Am I reading this spreadsheet right? If I order now, I could expect the mk3 kit to be shipped in around 3 months' (90 days) time?
From your experience, is this delay time likely to go down anytime soon?
Well that's a good question Isaac.
If i break down what i know than it gets down to this:
The original orders took around 3 months to get delivered. (most of the orders shipping now are from the last few weeks of 2017)
I ordered mine on the first Monday of the second week of 2018 so week 2, By week 1 the delivery window for new orders stated to be March of this year. If we look at the official shipping table that you can find in your order history page then we can see that week 1 and 2 are stated for a shipment date of around march 1.
Now the most important bit of information for you, if we look at the main website of Prusa, then we see that new orders should still be shipped in March. We only don't know when in March. So i would assume the worst and suspect the end of March.
By that reckoning then if you order now, then you will not be waiting 3 months to get your printer, but about 6 weeks, of 1.5 months.
To be entirely sure though, i would recommend contacting Prusa live chat and ask them for when new orders will ship, if that is still March or of they have slipped to april yet.
Re: Ship Date Tracking Spreadsheet
yea i think they are starting to speed up processing orders (or just have less of them). my order is on track for 20/2/18 (ordered 12/12/17) so thats about a 2.5 month wait.
Re: Ship Date Tracking Spreadsheet
yea i think they are starting to speed up processing orders (or just have less of them). my order is on track for 20/2/18 (ordered 12/12/17) so thats about a 2.5 month wait.
You say this...but...mine should've been shipped yesterday, according to their status updated February 1st. No movement yet. Sadly. Here's to hoping mine gets shipped out this week, though. Sadly, it won't be here in time for me to build it this weekend, no matter what, now. :'(
Edit: Talked to support - they're a few days behind this week, but should have the 2/12 shipping out by the end of the week, apparently. 🙂
Re: Ship Date Tracking Spreadsheet
yea i think they are starting to speed up processing orders (or just have less of them). my order is on track for 20/2/18 (ordered 12/12/17) so thats about a 2.5 month wait.
You say this...but...mine should've been shipped yesterday, according to their status updated February 1st. No movement yet. Sadly. Here's to hoping mine gets shipped out this week, though. Sadly, it won't be here in time for me to build it this weekend, no matter what, now. :'(
Edit: Talked to support - they're a few days behind this week, but should have the 2/12 shipping out by the end of the week, apparently. 🙂
I ordered my kit the 22/11 and it has not been shipped. The status of my order has been "Order being packed" since last Friday (9/2) 🙄
I doubt they will be shipping the 2/12 by the end of the week.....
Re: Ship Date Tracking Spreadsheet
I haven't received a shipping notice yet and others' that ordered after me 11/20/2017 are seeing notices. On the ride into work I remember I told them not to ship my printer until it had the new MK52 bed.
This may be why mine hasn't shipped. Did anyone else tell PRUSA not to send the printer until the new bed is shipped with it?
I've heard that the new MK52 beds are delayed, but I don't know how long.
Re: Ship Date Tracking Spreadsheet
I haven't received a shipping notice yet and others' that ordered after me 11/20/2017 are seeing notices. On the ride into work I remember I told them not to ship my printer until it had the new MK52 bed.
This may be why mine hasn't shipped. Did anyone else tell PRUSA not to send the printer until the new bed is shipped with it?
I've heard that the new MK52 beds are delayed, but I don't know how long.
They're delayed until at least the end of February, there are quite a few people who requested that as well. I ordered January 8th and support said mine should have the new bed so I didn't think I would need to tell them to hold it for the bed but I would rather wait.
Re: Ship Date Tracking Spreadsheet
And the original shipping table has been updated again. But i'm afraid the delay mentioned is resulting in a delay across the board.
Week 1 and 2 were planned for March 1st and are now stated for March 5th. So a few extra days.
I can't really remember the other parts of the old schedule to compare, but the most noticeable to me is that they are back at a shipments from Monday only. So no longer a shipment window on Monday and then an other of Thursday. I guess the suppliers can't keep up to allow the ramping up Prusa wanted.
Oh well, a few extra days to hang out on the forums it is 😆
Re: Ship Date Tracking Spreadsheet
Ordered 11/25, got tracking # 2/13, shipped 2/14 BUT UPS site says:
02/13/2018 6:40 P.M. A missing commercial invoice is causing a delay. / Your package was released by the clearing agency.
Prague, Czechia 02/13/2018 5:59 P.M. A missing commercial invoice is causing a delay.
02/13/2018 5:59 P.M. Your package is being processed at the clearance agency.
02/13/2018 5:59 P.M. Your package is being processed at the clearance agency. / Your package was released by the clearing agency.
Prague, Czechia 02/13/2018 2:17 P.M. Pickup Scan
Czechia 02/13/2018 10:47 A.M. Order Processed: Ready for UPS
Re: Ship Date Tracking Spreadsheet
Ordered 11/25, got tracking # 2/13, shipped 2/14 BUT UPS site says:
02/13/2018 6:40 P.M. A missing commercial invoice is causing a delay. / Your package was released by the clearing agency.
Prague, Czechia 02/13/2018 5:59 P.M. A missing commercial invoice is causing a delay.
02/13/2018 5:59 P.M. Your package is being processed at the clearance agency.
02/13/2018 5:59 P.M. Your package is being processed at the clearance agency. / Your package was released by the clearing agency.
Prague, Czechia 02/13/2018 2:17 P.M. Pickup Scan
Czechia 02/13/2018 10:47 A.M. Order Processed: Ready for UPS
It took 36 hours from that notice to arrival in the states for mine. Delivery is scheduled for tomorrow. Be patient, it will get through. 🙂
Re: Ship Date Tracking Spreadsheet
Well that's not what I wanted to wake up to this morning 🙁 was originally looking like a Friday delivery but I hope it doesn't get pushed back to Monday.
02/14/2018 4:42 A.M. A mechanical failure has caused a delay. We will update the delivery date as soon as possible. / Your package was released by the clearing agency.
Louisville, KY, United States 02/14/2018 4:40 A.M. A mechanical failure has caused a delay. We will update the delivery date as soon as possible.