Professional Work

Receipts & invoices

Designed and developed a system for formatting receipts for bakery retail and wholesale sales.

Professional Work

Receipts & invoices

Designed and developed a system for formatting receipts for bakery retail and wholesale sales.

Professional Work

Receipts & invoices

Designed and developed a system for formatting receipts for bakery retail and wholesale sales.

Background

Receipts and invoices play an important role in tracking daily orders for retail and wholesale customers at the bakery. The goal was to create a system where the data for these receipts would get updated, formatted, and printed for retail associates, bakers, and delivery drivers.

The problem

Sea Wolf has a couple of sister restaurants that also need to use the receipt and invoice system. There needed to be an agnostic and automated way to process and update the data. I was provided with a current invoice and marked all the important information that would need an API call to render it.

Problem confirmation

Meeting with back end developers revealed the code base wasn't designed in a reusable and repeatable way, causing the need for manually updating the data. The plan was to create a data abstraction API and class to make pulling the data possible with different types of data, and get rid of hard coded values and variables.

// Set variables for product data
$discountedProducts = [];
$nonDiscountedProducts = [];
$discountTotal = 0;
$nonDiscountedProductAmount = 0;
$discountedProductAmount = 0;

foreach ($products as $product) {
    $productName = $product['Item (Product/Service)'];
    $productQuantity = intval($product['Item Quantity']);
    $rate = floatval($product['Item Rate']);
    $amount = floatval($product['Item Amount']);
    $discounted = $product['Discounted'];

Design & formatting

Now that pulling the data in a generic way was done, it needed to be formatted and resized for kitchen printers. The main goal was to make it as scannable as possible since bakers work in a fast paced environment. I started iterating on designs.

HTML & CSS

Landing on a final design that was clean and used less black fill (saving money on ink) I jumped into coding it. Data was pulled from the SQLite database using the Data abstraction API, and formatted using <table> elements, CSS grid and flexbox containers.

.invoice-container {
  /*width for thermal printer specs */
  width: 80mm;
  margin: 50px auto 0;
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  border: 1px solid #000;
  position: relative;
  box-sizing: border-box;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

Iterating on interface design

Some requirements to consider for designing an interface where users can enter data to be rendered on receipts (address, business name etc) needed to be defined. In the beginning, developers wanted to use the third party library they currently use for rendering data tables for the form (seen in mid fidelity below).

Iterating on page layout

This isn't the best user experience when you think about mental models users have when it comes to forms. I made the argument that styling an editable table to look like a form wasn't the best approach, and went back to square one. I made wireframes that lets users select the invoice type, and then fill in their information.

More iterations & final designs

Still not the best design. There were too many steps in the process, and the design still resembled an editable table a little bit too much still. I had to prove that this design wasn't aligning with users expectations when it comes to forms through informal user testing with management. This is the final layout we ended up with.

Post mortem

a practical solution

Some things to consider are the repeated fields in the contact information form and the invoice information form. In some cases, the contact business email could be different from the invoice business email so it was important to be able to separate those. I found this out through talking to the owners. Functionality to view a preview of the receipt in a modal was also added instead of rendering it on the page.

Skills leveraged and learned

I learned how to express my ideas and back them up with information. I learned that starting over is good. I have a tendency to want to land on a design and keep it, but it's important to sometimes throw it all out and start over.

Final thoughts

I was really under the gun for this project and wearing many hats, which I think made me spread a little too thin. I had to champion user centered design in a new environment, which was uncomfortable at first but I learned to prove my hypothesis through design and user testing.

Post mortem

a practical solution

Some things to consider are the repeated fields in the contact information form and the invoice information form. In some cases, the contact business email could be different from the invoice business email so it was important to be able to separate those. I found this out through talking to the owners. Functionality to view a preview of the receipt in a modal was also added instead of rendering it on the page.

Skills leveraged and learned

I learned how to express my ideas and back them up with information. I learned that starting over is good. I have a tendency to want to land on a design and keep it, but it's important to sometimes throw it all out and start over.

Final thoughts

I was really under the gun for this project and wearing many hats, which I think made me spread a little too thin. I had to champion user centered design in a new environment, which was uncomfortable at first but I learned to prove my hypothesis through design and user testing.

You’re at the end.

Get in touch

You’re at the end.

Get in touch

You’re at the end.

Get in touch