Sha256: 7ae381cf43c78a68eede0a23e5f9150f79ef86aed4ab27d27f9702e303ada01c
Contents?: true
Size: 479 Bytes
Versions: 121
Compression:
Stored size: 479 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 belongs_to :delivery_note, 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
121 entries across 121 versions & 1 rubygems