mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-15 17:44:46 +08:00
Fix import of stock units [SCI-10893]
This commit is contained in:
parent
69165c96a6
commit
9403b4fd67
1 changed files with 8 additions and 1 deletions
|
@ -227,7 +227,14 @@ module RepositoryImportParser
|
|||
if repository_cell.present?
|
||||
case cell_value
|
||||
when RepositoryStockValue
|
||||
repository_cell.value.update_data!(cell_value, @user, preview: @preview)
|
||||
repository_cell.value.update_data!(
|
||||
{
|
||||
amount: cell_value.amount,
|
||||
unit_item_id: cell_value.repository_stock_unit_item_id
|
||||
},
|
||||
@user,
|
||||
preview: @preview
|
||||
)
|
||||
when RepositoryListValue
|
||||
repository_list_item_id = cell_value[:repository_list_item_id]
|
||||
repository_cell.value.update_data!(repository_list_item_id, @user, preview: @preview)
|
||||
|
|
Loading…
Add table
Reference in a new issue