Athena.Inventory.Item (athena_logistics v1.0.0)

Item Model

Link to this section Summary

Link to this section Types

@type t() :: %Athena.Inventory.Item{
  __meta__: term(),
  event: Ecto.Schema.has_one(Athena.Inventory.Event.t()),
  id: term(),
  inserted_at: DateTime.t(),
  inverse: boolean(),
  item_group: Ecto.Schema.belongs_to(Athena.Inventory.ItemGroup.t()),
  item_group_id: term(),
  movements: term(),
  name: String.t(),
  stock_entries: Ecto.Schema.has_many(Athena.Inventory.StockEntry.t()),
  unit: String.t(),
  updated_at: DateTime.t()
}