From 021848524af5499d365757a4e9c1e1f562d45577 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 22 Feb 2018 21:04:00 -0600 Subject: [PATCH] Fix field type for Trainwreck view --- tailbone/views/trainwreck.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tailbone/views/trainwreck.py b/tailbone/views/trainwreck.py index 2c8c2c62..34147383 100644 --- a/tailbone/views/trainwreck.py +++ b/tailbone/views/trainwreck.py @@ -187,6 +187,7 @@ class TransactionView(MasterView): f.set_type('unit_quantity', 'quantity') # currency fields + f.set_type('unit_price', 'currency') f.set_type('subtotal', 'currency') f.set_type('discounted_subtotal', 'currency') f.set_type('tax', 'currency')