Sha256: 5a30f1de616101be9b3bcae380cbd3c624ca7e788e2b5cb2ea26eecaeac455fe
Contents?: true
Size: 431 Bytes
Versions: 20
Compression:
Stored size: 431 Bytes
Contents
module Comee module Core class ShipmentInstructionItem < ApplicationRecord belongs_to :shipment_instruction belongs_to :shipment_item belongs_to :unit belongs_to :pod, optional: true validates :delivery_note_no, :pallet_no, :goods_issue_date, presence: true validates :length, :width, :height, :weight, :quantity, :price, presence: true, numericality: {greater_than: 0} end end end
Version data entries
20 entries across 20 versions & 1 rubygems