Recently at DefProc there’s been a shift towards organising, a late ‘spring clean’ if you will. As more projects get taken on, more parts and bits appear around the office and there comes a point where you’re hunting around for a particular thing and you realise that enough is enough!

So, with that in mind, Alex and Pat set out to organise all the stock using partsbox.io. For more information on how they went about it, a handy guide from partsbox themselves explains it perfectly.

Part of the new storage plan is labelling all the components with a custom printed label that contains the relevant information for us, including a QR code that when scanned responds with the partsbox URL for that particular part so you can immediately view all the information on it. The problem with this, and the Dymo label printer, is the software for it… isn’t great. It’s clunky to use and more importantly it’s a hassle trying to get it to automate printing labels. Partsbox lets you download a CSV file containing all the information about the selected parts, so ideally we wanted a way to import the CSV and have the Dymo print out a label for each part, no fuss!

The software that comes with the printer does include a way to print from a CSV file, but it requires importing it and going through a wizard each time. By automating it we could save time on not selecting the correct paper-size and printer, going through a wizard and assigning data to label fields etc.

So lets discuss how we can automate our printing! Since August 2016, the Dymo Label Web Service is automatically installed along with the Dymo Label Software. Using this web service we can talk directly to the printer.

So first;

You can check if you have the web service correctly installed by following this blog post from Dymo themselves. (Sadly this is for Mac and Windows only as Linux is not supported).

The SDK, SDK documentation and framework overview aren’t great from Dymo and commonly are either outdated or don’t work. The very few examples it gives for JavaScript aren’t event complete. The one reference that does have some benefit is the documentation for the JavaScript framework we downloaded. With that in mind, we should be able to get this printing.

The first step is we need a layout for the label. This is the only time we have to open up and use the included software. Well, it’s not required but it is easier if you don’t fancy writing out all the layout XML yourself. Opening the ‘Dymo Label v.8’ and selecting a label type / size, you’re ready to add the components you need.

One important step here is that each component of the label needs a reference name setting. This can usually be found by right clicking > properties > advanced. Here I would advise that you preface each of the reference names with a constant in case you need to search through the XML for adjustments. Additionally make a note of these as you’ll need the reference names later.

After the layout is done save it somewhere safe so we can import it later and close down the Dymo software. From here we can start creating our process for printing the labels. As we’re using the web service pack we’re going to create a basic web page (styling can be saved for another day). On the page a user can import or drag a downloaded CSV file from partsbox and then upon clicking the print button the page prints a label for each part included in the CSV. No pop up menus, no selecting the right printer, no import wizards. Just plug and print!

Because the web page is talking to a locally plugged in printer, this won’t work if hosted online (security issues). Instead I recommend having the web page hosted on GitLab and then if changes are made the user can pull the latest version before opening the page locally in their browser.

For the basic web page I created a single html file. At the top I imported Bootstrap for some very quick and easy styling (optional) and then imported two JavaScript files, the first being the download Dymo framework from earlier and the second being a custom JavaScript file where we will write our code to tie it all together.

Copy to Clipboard

For the body, I used a Jumbotron from Bootstrap and after adding a title, subheading and logo it was mostly done in terms of layout and styling. I finished it off with a file input so we can get access to the CSV file with an id of partsbox_csv_file so we can access it later from the custom JavaScript, and a button with an on click call to CheckEnv(), our first function.

Copy to Clipboard

All of that gives us a simple but functional web page that does all we need it to.

With the web page done, we need to do the behind the scenes code to actually parse the CSV and tell the printer to create a label. One of the first things is define a global variable var df;. This is so we can attribute dymo.label.framework to it, due to it being used frequently, so this saves time and formats the code nicely.

Then, as mentioned earlier, the first function we set up is CheckEnv(). Here we check that there’s a printer connected otherwise throw an alert to the user (quick albeit alerts aren’t the nicest UX). If everything is okay then call the next function to get the CSV file input.

Copy to Clipboard

The second if to check if the printer is connected (assuming there’s only one printer connected which we do throughout) might seem redundant compared to the first check but, upon testing, getPrinters() will be successful after first time it runs even if you unplug the printer. Checking isConnected on the printer actively checks the connection.

For getting the file input we can use FileReader. We read the uploaded file name using the partsbox_csv_file id, pass it into a FileReader, and the determine two functions for it. One for successfully reading the file and one for it throwing an error. Finally we have to actively start reading the file to get one of these functions to fire.

Copy to Clipboard

On success, due to reading the file input as a string, we need to convert the string to an array we can use. This function initially splits the string by each newline (as each line in the CSV represents the info on one part from partsbox) and adds it to an array newLineArray. Then for each line in the array it;

  • Removes the quotes at the start & end
  • Splits it by each section into an array using split('","')
  • Pushes it to csvArray

Finally, we remove the first element in the array as this contains the CSV headers, which we don’t want to print.

Copy to Clipboard

From here we setup what we need to print the label. This includes getting the printer and loading the label XML (as .label format). Then for each line in the CSV array we call the PrintLabel() function. Here we replace the label components (using the reference name we setup on each component earlier) with our CSV data before then creating the print settings, and firing off printLabel to send it to the Dymo printer.

Copy to Clipboard

If this is all done successfully, you should get a printed label (or a few) when running through the web page!