5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'app/jobs/spree/promotion_code_batch_job.rb', line 5
def perform(promotion_code_batch)
PromotionCode::BatchBuilder.new(
promotion_code_batch
).build_promotion_codes
if promotion_code_batch.email?
Spree::PromotionCodeBatchMailer
.promotion_code_batch_finished(promotion_code_batch)
.deliver_now
end
rescue => e
if promotion_code_batch.email?
Spree::PromotionCodeBatchMailer
.promotion_code_batch_errored(promotion_code_batch)
.deliver_now
end
raise e
end
|