Various changes to support a certain new app
improve inventory support, plus "hiding" person data but still using it
This commit is contained in:
parent
fcffe0f79d
commit
18f4b4ff5c
7 changed files with 64 additions and 18 deletions
|
@ -256,6 +256,8 @@ class ProductsView(MasterView):
|
|||
cost = product.cost
|
||||
if not cost:
|
||||
return ""
|
||||
if cost.unit_cost is None:
|
||||
return ""
|
||||
return "${:0.2f}".format(cost.unit_cost)
|
||||
|
||||
def render_on_hand(self, product, column):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue