mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-04-02 08:21:57 -04:00
7 lines
228 B
Ruby
7 lines
228 B
Ruby
class LineItem < ApplicationRecord
|
|
belongs_to :issue
|
|
|
|
validates :description, presence: true
|
|
validates :quantity, numericality: { greater_than: 0 }
|
|
validates :unit_price, numericality: { greater_than_or_equal_to: 0 }
|
|
end |