chore: remove old code
This commit is contained in:
parent
a10a59b265
commit
2745be5672
2 changed files with 0 additions and 42 deletions
|
@ -1,12 +1,4 @@
|
||||||
class BillSignatureService
|
class BillSignatureService
|
||||||
def self.grouped_unsigned_operation_until(date)
|
|
||||||
date = date.in_time_zone
|
|
||||||
unsigned_operations = DossierOperationLog
|
|
||||||
.where(bill_signature: nil)
|
|
||||||
.where('executed_at < ?', date)
|
|
||||||
unsigned_operations.group_by { |e| e.executed_at.to_date }
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.sign_operations(operations, day)
|
def self.sign_operations(operations, day)
|
||||||
return unless Certigna::API.enabled?
|
return unless Certigna::API.enabled?
|
||||||
bill = BillSignature.build_with_operations(operations, day)
|
bill = BillSignature.build_with_operations(operations, day)
|
||||||
|
|
|
@ -1,38 +1,4 @@
|
||||||
describe BillSignatureService do
|
describe BillSignatureService do
|
||||||
describe ".grouped_unsigned_operation_until" do
|
|
||||||
subject { BillSignatureService.grouped_unsigned_operation_until(date).length }
|
|
||||||
|
|
||||||
let(:date) { Time.zone.now.beginning_of_day }
|
|
||||||
|
|
||||||
context "when operations of several days need to be signed" do
|
|
||||||
before do
|
|
||||||
create :dossier_operation_log, executed_at: 3.days.ago
|
|
||||||
create :dossier_operation_log, executed_at: 2.days.ago
|
|
||||||
create :dossier_operation_log, executed_at: 1.day.ago
|
|
||||||
end
|
|
||||||
|
|
||||||
it { is_expected.to eq 3 }
|
|
||||||
end
|
|
||||||
|
|
||||||
context "when operations on a single day need to be signed" do
|
|
||||||
before do
|
|
||||||
create :dossier_operation_log, executed_at: 1.day.ago
|
|
||||||
create :dossier_operation_log, executed_at: 1.day.ago
|
|
||||||
end
|
|
||||||
|
|
||||||
it { is_expected.to eq 1 }
|
|
||||||
end
|
|
||||||
|
|
||||||
context "when there are no operations to be signed" do
|
|
||||||
before do
|
|
||||||
create :dossier_operation_log, created_at: 1.day.ago, bill_signature: build(:bill_signature, :with_signature, :with_serialized)
|
|
||||||
create :dossier_operation_log, created_at: 1.day.from_now
|
|
||||||
end
|
|
||||||
|
|
||||||
it { is_expected.to eq 0 }
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
describe ".sign_operations" do
|
describe ".sign_operations" do
|
||||||
let(:date) { Date.today }
|
let(:date) { Date.today }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue