This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def self.total pricing_rules | |
items = BasketRow.all | |
gruppen = items.group_by(&:product_id) | |
output_array = [] | |
gruppen.each do |row| | |
row_hash = Hash.new(0) | |
row_hash[:product_id] = row.first |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HardWorker | |
include Sidekiq::Worker | |
include Sidetiq::Schedulable | |
recurrence do | |
hourly.minute_of_hour(21, 22, 23, 24, 25, 26, 27, 28, 29, 30) | |
end | |
def perform | |
#self.class.perform_in(2.minutes) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HardWorker | |
include Sidekiq::Worker | |
include Sidetiq::Schedulable | |
recurrence do | |
hourly(1) | |
end | |
def perform | |
uu = User.new |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def svernut dimensions, resources | |
gruppen = self.group_by{|e|[ dimensions.map{|dim| e.send(dim)} ]} | |
output_array = [] | |
gruppen.each do |row| | |
row_hash = Hash.new(0) | |
dimensions.map{|dim| row_hash[dim] = row.second.first.send(dim) } | |
row.second.each do |elem| | |
resources.each do |res| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ProjectsController < ApplicationController | |
def index | |
get_index_records | |
if current_user.role.name == "expert" | |
@tiles = get_user_tiles | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unkas@unkas-pc:~/WORK/RAILS/ERP$ git push heroku master | |
Counting objects: 27, done. | |
Delta compression using up to 4 threads. | |
Compressing objects: 100% (27/27), done. | |
Writing objects: 100% (27/27), 3.85 KiB | 0 bytes/s, done. | |
Total 27 (delta 18), reused 0 (delta 0) | |
remote: Compressing source files... done. | |
remote: Building source: | |
remote: | |
remote: -----> Ruby app detected |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SimpleMailer#just_email: processed outbound mail in 153.0ms | |
Sent mail to [email protected] (7.1ms) | |
Date: Sun, 11 Sep 2016 21:59:30 +0300 | |
From: [email protected] | |
To: [email protected] | |
Message-ID: <[email protected]> | |
Subject: Sample Email | |
Mime-Version: 1.0 | |
Content-Type: text/html; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case | |
#binding.pry | |
when ([1, 2].include? cd.doctype) && (current_user.role_id == 1) && (cd.buysell == "buyer") | |
true | |
when ([1, 2].include? cd.doctype) && (current_user.role_id == 2) && (cd.buysell == "seller") | |
true | |
when ([3, 4].include? cd.doctype) && (current_user.role_id == 3) | |
true | |
else | |
false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".buhs").on "change paste keyup", (e) -> | |
thistable = this.parentElement.parentElement.parentElement.parentElement.parentElement.parentElement | |
caseid = $(thistable).find('#case_id')[0].value | |
buysell = $(thistable).find('#buysell')[0].value | |
varcursum = $(this)[0].value | |
$.ajax '/render_alert_text', | |
type: 'GET' | |
data: {case_id: caseid, buysell: buysell, varcursum: varcursum } | |
dataType: 'text' | |
success: (data, textStatus, jqXHR) -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CasesController < ApplicationController | |
def index | |
@cases = Case.all | |
end | |
def show | |
@case = Case.find(params[:id]) | |
@casepos_b = CasePosition.where(case_id: params[:id], buysell: "buyer") | |
@casepos_s = CasePosition.where(case_id: params[:id], buysell: "seller") | |
@casedoc_b = CaseDoc.where(case_id: params[:id], buysell: "buyer").order(:doctype) |