forked from shibao/cannery
62 lines
1.6 KiB
Elixir
62 lines
1.6 KiB
Elixir
defmodule Cannery.Ammo.AmmoGroup do
|
|
@moduledoc """
|
|
A group of a certain ammunition type.
|
|
|
|
Can be placed in a container, and contains auxiliary information such as the
|
|
amount paid for that ammunition, or what condition it is in
|
|
"""
|
|
|
|
use Ecto.Schema
|
|
import Ecto.Changeset
|
|
alias Cannery.Ammo.{AmmoGroup, AmmoType}
|
|
alias Cannery.{Accounts.User, Containers.Container, Tags.Tag}
|
|
alias Ecto.{Changeset, UUID}
|
|
|
|
@primary_key {:id, :binary_id, autogenerate: true}
|
|
@foreign_key_type :binary_id
|
|
schema "ammo_groups" do
|
|
field :count, :integer
|
|
field :notes, :string
|
|
field :price_paid, :float
|
|
|
|
belongs_to :tag, Tag
|
|
belongs_to :ammo_type, AmmoType
|
|
belongs_to :container, Container
|
|
belongs_to :user, User
|
|
|
|
timestamps()
|
|
end
|
|
|
|
@type t :: %AmmoGroup{
|
|
id: id(),
|
|
count: integer,
|
|
notes: String.t(),
|
|
price_paid: float(),
|
|
tag: Tag.t(),
|
|
tag_id: Tag.id(),
|
|
ammo_type: AmmoType.t(),
|
|
ammo_type_id: AmmoType.id(),
|
|
container: Container.t(),
|
|
container_id: Container.id(),
|
|
user: User.t(),
|
|
user_id: User.id(),
|
|
inserted_at: NaiveDateTime.t(),
|
|
updated_at: NaiveDateTime.t()
|
|
}
|
|
@type new_ammo_group :: %AmmoGroup{}
|
|
@type id :: UUID.t()
|
|
|
|
@doc false
|
|
@spec changeset(t() | new_ammo_group(), attrs :: map()) :: Changeset.t(t() | new_ammo_group())
|
|
def changeset(ammo_group, attrs) do
|
|
ammo_group
|
|
|> cast(attrs, [:count, :price_paid, :notes, :tag_id, :ammo_type_id, :container_id, :user_id])
|
|
|> validate_required([
|
|
:count,
|
|
:ammo_type_id,
|
|
:container_id,
|
|
:user_id
|
|
])
|
|
end
|
|
end
|