Class: Report::ItemMovedToScrap::ItemMovedToScrapReport
- Inherits:
-
Object
- Object
- Report::ItemMovedToScrap::ItemMovedToScrapReport
- Defined in:
- app/services/report/item_moved_to_scrap/item_moved_to_scrap_report.rb
Overview
Service object: item moved to scrap report.
Defined Under Namespace
Classes: Result
Class Method Summary collapse
Class Method Details
.result_report(options = {}) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'app/services/report/item_moved_to_scrap/item_moved_to_scrap_report.rb', line 10 def self.result_report( = {}) start_time = [:period1_gteq] end_time = [:period1_lteq] [:sku_ids].shift(1) safe_sku_ids = [:sku_ids].filter_map { |e| Integer(e, exception: false) } groupings = [:groupings].filter_map(&:presence) grouping_ids = [] if groupings.present? groupings.each do |grouping| ProductLine.all.map { |pl| grouping_ids << pl.id if pl..split('>').first.strip == grouping } end end safe_grouping_ids = grouping_ids.filter_map { |e| Integer(e, exception: false) } [:supplier_ids].shift(1) safe_supplier_ids = [:supplier_ids].filter_map { |e| Integer(e, exception: false) } [:company_ids].shift(1) if [:company_ids][0] == "" safe_company_id = Integer([:company_ids][0], exception: false) conn = ActiveRecord::Base.lease_connection where_sku = safe_sku_ids.any? ? " and le.item_id in (#{safe_sku_ids.join(',')})" : "" where_grouping = safe_grouping_ids.any? ? " and pl.id in (#{safe_grouping_ids.join(',')})" : "" where_supplier = safe_supplier_ids.any? ? " and sp.supplier_id in (#{safe_supplier_ids.join(',')})" : "" where_company = safe_company_id ? " and le.store_id = #{safe_company_id}" : "" sql = ActiveRecord::Base.sanitize_sql_array([ "select distinct trim(split_part(lineage_expanded,'>',1)) as grouping, case when trim(split_part(lineage_expanded,'>',2)) = '' then 'N/A' else trim(split_part(lineage_expanded,'>',2)) end as sub_grouping, pt.full_name as supplier,sku, case when le.store_id = 1 then 'WarmlyYours USA' else 'WarmlyYours CAN' end as store, ri.returned_reason,r.rma_number,sum(quantity) as quantity from item_ledger_entries le inner join items it on le.item_id = it.id inner join product_lines pl on it.primary_product_line_id = pl.id inner join supplier_items sp on it.id = sp.item_id inner join parties pt on sp.supplier_id = pt.id inner join rma_items ri on le.rma_item_id = ri.id inner join rmas r on ri.rma_id = r.id where location = 'SCRAP' and quantity > 0 and category = 'RMA_RECEIPT' #{where_sku} #{where_grouping} #{where_supplier} #{where_company} and le.gl_date between ? and ? group by trim(split_part(lineage_expanded,'>',1)),case when trim(split_part(lineage_expanded,'>',2)) = '' then 'N/A' else trim(split_part(lineage_expanded,'>',2)) end,pt.full_name,sku,store_id,ri.returned_reason,r.rma_number order by 1,2", start_time, end_time ]) result = conn.execute(sql) result_data = result.to_a.map { |r| Report::ItemMovedToScrap::ItemMovedScrapResult.new(r) } Result.new(success: true, data: result_data) end |