Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
simple_controller
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open-source
simple_controller
Commits
638b5eaf
Commit
638b5eaf
authored
Dec 10, 2021
by
Ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add import exchange
parent
86dba883
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
0 deletions
+15
-0
importable.rb
lib/simple_controller/importable.rb
+15
-0
No files found.
lib/simple_controller/importable.rb
View file @
638b5eaf
module
SimpleController::Importable
module
SimpleController::Importable
rescue_from
TalltyImportExport
::
Import
::
RecordNotFountError
do
|
e
|
render
json:
{
error:
e
.
message
},
status:
422
end
def
upload_excel
def
upload_excel
excel
=
importable_class
.
import_excel_klass
.
new
excel
=
importable_class
.
import_excel_klass
.
new
excel
.
load
(
params
[
:file
])
excel
.
load
(
params
[
:file
])
...
@@ -26,4 +30,15 @@ module SimpleController::Importable
...
@@ -26,4 +30,15 @@ module SimpleController::Importable
response
=
importable_class
.
import_xlsx
(
xlsx_file
,
collection
,
**
params
.
to_unsafe_h
.
symbolize_keys
)
response
=
importable_class
.
import_xlsx
(
xlsx_file
,
collection
,
**
params
.
to_unsafe_h
.
symbolize_keys
)
render
json:
response
,
status:
201
render
json:
response
,
status:
201
end
end
# 用 文件 交换信息
def
exchange
xlsx_file
=
params
[
:file
]
||
importable_class
.
import_excel_klass
.
new
(
params
[
:uid
])
resource_ids
=
importable_class
.
exchange_to_ids
(
xlsx_file
,
collection
,
**
params
.
to_unsafe_h
.
symbolize_keys
)
if
params
[
:return_ids
]
render
json:
{
ids:
resource_ids
},
status:
200
else
respond_with
(
collection
.
where
(
id:
resource_ids
),
{
template:
"
#{
self
.
class
.
view_path
}
/index"
})
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment