module MyERP::Model::InstanceMethods

Public Instance Methods

==(other) click to toggle source
# File lib/myerp/model.rb, line 25
def ==(other)
  id == other.id
end
as_json(args = {}) click to toggle source
# File lib/myerp/model.rb, line 13
def as_json(args = {})
  inner_json = self.to_hash.stringify_keys
  inner_json.delete("cache_version")
  inner_json
end
new?() click to toggle source
# File lib/myerp/model.rb, line 19
def new?
  id.nil?
end
to_i() click to toggle source
# File lib/myerp/model.rb, line 23
def to_i; id; end
to_json(*args) click to toggle source
# File lib/myerp/model.rb, line 9
def to_json(*args)
  as_json(*args).to_json(*args)
end