When adding details to include in a purchase order to a vendor, by default you can choose the item weight in ounces or grams using the field value dropdown menu.
If you would like this to be displayed in lbs, we do not have a default option for this in the dropdown, however you can customize the data using a liquid template.
Select "Item weight (oz)"
Scroll down to "[Custom value]" to show the underlying Liquid
Edit {{ order_item.total_weight_in_ounces }} to {{ order_item.total_weight_in_ounces | divided_by: 16.0 }} since there are 16 ounces in a pound.
Comments
1 comment
When adding details to include in a purchase order to a vendor, by default you can choose the item weight in ounces or grams using the field value dropdown menu.
If you would like this to be displayed in lbs, we do not have a default option for this in the dropdown, however you can customize the data using a liquid template.
{{ order_item.total_weight_in_ounces }}
to{{ order_item.total_weight_in_ounces | divided_by: 16.0 }}
since there are 16 ounces in a pound.Please sign in to leave a comment.