mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-14 05:05:55 +08:00
16 lines
398 B
Ruby
16 lines
398 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Api
|
||
|
module V1
|
||
|
class TaskInventoryItemSerializer < InventoryItemSerializer
|
||
|
attribute :stock_consumption, if: -> { object.repository_stock_cell.present? }
|
||
|
|
||
|
def stock_consumption
|
||
|
object.my_module_repository_rows
|
||
|
.find_by(my_module: instance_options[:my_module])
|
||
|
.stock_consumption
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|