Hi everyone,
We process a number of order via phone/e-mail and, depending on the Customer, will sometimes apply different discount levels. In order to do this more efficiently it would help if we could display the cost price of each product on the draft order page:
I assume that this would need to be done somewhere like customers/orders.liquid and update
{{ line_item.sku }} {{ line_item.price | money }} {{ line_item.quantity }} {{ line_item.quantity | times: line_item.price | money }}to something like:
{{ line_item.sku }} {{ line_item.price | money }} {{ line_item.cost | money }} {{ line_item.quantity }} {{ line_item.quantity | times: line_item.price | money }}Am I on the right track?
Thanks a million
