Files
sx-fc/app/models/seed_generator.rb

136 lines
3.7 KiB
Ruby

class SeedGenerator < ApplicationRecord
# Generate ID for Tables
def self.generate_id(model, prefix)
seed = SeedGenerator.find_by_model(model)
next_no = seed.next
new_receipt_no = 0
puts "OOO"
puts next_no
if (seed.nil?)
seed = SeedGenerator.new()
seed.model = model
new_receipt_no = seed.next
seed.save
else
cur_val, next_val = self.update_seed(model, next_no, seed.increase_by)
# if next_no == cur_val
# puts "SSS"
# puts next_val
# cur_val2, next_val2 = self.update_seed(model, next_val, seed.increase_by)
# padding_len = 15 - prefix.length
# saleOrderId = prefix +"-"+ cur_val2.to_s.to_s.rjust((14-prefix.length)+1,'0')
# return saleOrderId
while next_no == cur_val
padding_len = 15 - prefix.length
saleOrderId = prefix +"-"+ cur_val.to_s.to_s.rjust((14-prefix.length)+1,'0')
return saleOrderId
puts "LLL"
puts next_val
next_no = next_val
cur_val, next_val = self.update_seed(model, next_val, seed.increase_by)
padding_len = 15 - prefix.length
saleOrderId = prefix +"-"+ cur_val.to_s.to_s.rjust((14-prefix.length)+1,'0')
return saleOrderId
end
# end
end
end
# Generate Receipt No
def self.new_receipt_no
seed = SeedGenerator.find_by_model("sale")
new_receipt_no = 0
if (seed.nil?)
seed = SeedGenerator.new()
seed.model = "sale"
new_receipt_no = seed.next
seed.save
else
current_no = seed.next
seed.next = seed.next
seed.current = current_no
seed.save
end
return seed.current
end
# Generate for 4 digit Code
def self.generate_code(model, prefix)
seed = SeedGenerator.find_by_model(model)
new_code = 0
if (seed.nil?)
seed = SeedGenerator.new()
seed.model = model
new_code = seed.next
seed.save
else
current_no = seed.next
seed.next = seed.next + seed.increase_by
seed.current = current_no
seed.save
end
if prefix.length == 1
padding_len = 5 - prefix.length
count = 4-prefix.length
else prefix.length == 2
padding_len = 6 - prefix.length
count = 5-prefix.length
end
next_code = prefix + seed.current.to_s.to_s.rjust((count)+1,'0')
return next_code
end
private
# for duplicate key - with execute query
def self.get_seed(model)
seed_val = []
select_sql = "select * from seed_generators where model='#{model}';"
select_result = ActiveRecord::Base.connection.execute(select_sql);
select_result.each do |row|
p row
seed_val = row
end
return seed_val
end
def self.current_no_present(next_val, cur_val)
cur_val2, next_val2 = self.update_seed(model, next_val, seed.increase_by)
padding_len = 15 - prefix.length
saleOrderId = prefix +"-"+ cur_val2.to_s.to_s.rjust((14-prefix.length)+1,'0')
return saleOrderId
if next_val == cur_val2
current_no_present(next_val2, cur_val2)
end
end
def self.update_seed(model, current, inc)
cur_val = 0
next_val = 0
nex = current + inc
update_sql = "update seed_generators set current= #{current}, next= #{nex} where model='#{model}';";
select_sql = "select * from seed_generators where model='#{model}';"
update_result = ActiveRecord::Base.connection.execute(update_sql);
Rails.logger.debug "SeedGenerator -> " + update_result.to_s
select_result = ActiveRecord::Base.connection.execute(select_sql);
select_result.each do |row|
p row[3]
cur_val = row [3]
next_val = row[4]
end
return cur_val, next_val
end
end