docs + locations
This commit is contained in:
parent
e1618b40ef
commit
48f00d8f6f
17 changed files with 390 additions and 33 deletions
|
@ -1,3 +1,17 @@
|
|||
# Transaction
|
||||
A Transaction represents an actual instance of an Item. This is a one to one mapping to a physical Variant of an Item. It can be consumed either manually or by a Process.
|
||||
This makes individual physical goods traceable.
|
||||
A Transaction represents an actual instance of an Item Variant.
|
||||
|
||||
## Supply
|
||||
When you obtain an item and add it to your inventory a Transaction gets created. This is one unit of the item.
|
||||
|
||||
Transactions can carry some information:
|
||||
- Price - The price this item was acquired at
|
||||
- Origin - Where this item is from
|
||||
- Location - The [Location](Location.md) of the item
|
||||
|
||||
## Consume
|
||||
If an item gets used or is removed from the inventory, you consume the transaction.
|
||||
|
||||
This adds some additional information to it:
|
||||
- Price - The price of the item at removal. e.g the selling price, or if negative cost of removal
|
||||
- Destination - Where this item went, e.g a person who requested this item
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue