mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-11 05:54:15 +01:00
26 lines
775 B
Ruby
26 lines
775 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :fablab do
|
|
namespace :setup do
|
|
desc 'assign all footprints to existing Invoice records'
|
|
task chain_invoices_records: :environment do
|
|
raise "Footprints were already generated, won't regenerate" if Invoice.where.not(footprint: nil).count.positive?
|
|
|
|
Invoice.order(:created_at).all.each do |i|
|
|
i.chain_record
|
|
i.save!
|
|
end
|
|
end
|
|
|
|
desc 'assign all footprints to existing InvoiceItem records'
|
|
task chain_invoices_items_records: :environment do
|
|
raise "Footprints were already generated, won't regenerate" if InvoiceItem.where.not(footprint: nil).count.positive?
|
|
|
|
InvoiceItem.order(:created_at).all.each do |i|
|
|
i.chain_record
|
|
i.save!
|
|
end
|
|
end
|
|
end
|
|
end
|