This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
[Discussion] profit, margin and mark-up #12574
davide-alghi
started this conversation in
Nomenclature
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
In inventory lineitem we have Margin and Margin Percent fields.
Actually, the calculations are
margin = price - cost
margin(%) = (price - cost) / cost
My proposal is to change to effective names of these values: profit and markup, respectively:
Margin => Profit
Margin (%) => Markup
... and, if we wanna a Margin field, we have to add a new field, calculated with
margin = (price - cost) / price
Beta Was this translation helpful? Give feedback.
All reactions