shift close and payment journal

This commit is contained in:
Min Zeya Phyo
2017-06-28 10:34:42 +06:30
parent c1646b812e
commit ee651763b7
36 changed files with 308 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
class LoginForm
include ActiveModel::Model
include ActiveModel::Validations
attr_accessor :float_amount
validates_presence_of :float_amount
def persisted?
false
end
def initialize(attributes={})
super
end
end