Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tallty_import_export
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
tallty_import_export
Commits
fff7e592
Commit
fff7e592
authored
Nov 21, 2020
by
Ivan Lan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add excel pagination
parent
0c4c5f80
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
1 deletion
+37
-1
excel.rb
lib/tallty_import_export/excel.rb
+20
-0
import.rb
lib/tallty_import_export/import.rb
+5
-1
importable.rb
lib/tallty_import_export/importable.rb
+4
-0
excel_spec.rb
spec/excel_spec.rb
+8
-0
No files found.
lib/tallty_import_export/excel.rb
View file @
fff7e592
...
...
@@ -46,6 +46,10 @@ module TalltyImportExport
cache
.
all
end
def
records_pagination
page:
1
,
per_page:
15
Pagination
.
new
(
rows
,
page:
page
,
per_page:
per_page
)
end
class
Rows
<
Array
# excel_hash { key => excel name }
def
each_with_excel_hash
excel_hash
...
...
@@ -59,5 +63,21 @@ module TalltyImportExport
end
end
end
class
Pagination
<
Array
attr_reader
:current_page
,
:total_pages
def
initialize
ary
,
page:
,
per_page:
@raw_ary
=
ary
@current_page
=
page
@total_pages
=
(
@raw_ary
.
count
/
per_page
.
to_f
).
ceil
parsed_ary
=
@raw_ary
[(
page
-
1
)
*
per_page
...
(
page
)
*
per_page
]
super
(
parsed_ary
)
end
def
count
@raw_ary
.
count
end
end
end
end
lib/tallty_import_export/import.rb
View file @
fff7e592
...
...
@@ -28,7 +28,7 @@ module TalltyImportExport
h
end
if
TalltyImportExport
::
E
xcel
===
xlsx_file
if
tallty_e
xcel
===
xlsx_file
xlsx_file
.
rows
.
each_with_excel_hash
(
excel_hash
)
do
|
line_info
|
process_line_info
(
line_info
,
associations
)
end
...
...
@@ -44,6 +44,10 @@ module TalltyImportExport
end
end
def
tallty_excel
TalltyImportExport
::
Excel
end
def
process_line_info
line_info
,
associations
# 转换处理导入的数据格式
line_info
=
convert_data
(
line_info
)
...
...
lib/tallty_import_export/importable.rb
View file @
fff7e592
...
...
@@ -16,6 +16,10 @@ module TalltyImportExport
def
import_xlsx
*
args
import_instance
.
import_xlsx
(
*
args
)
end
def
import_excel_klass
import_instance
.
tallty_excel
end
end
end
end
spec/excel_spec.rb
View file @
fff7e592
...
...
@@ -6,4 +6,12 @@ RSpec.describe TalltyImportExport::Excel do
expect
(
@excel
.
titles
).
to
eq
([
"名称"
,
"学号"
,
"副学号"
,
"meta字段1"
,
"meta字段2"
,
"累加值"
])
expect
(
@excel
.
rows
[
0
]).
to
eq
({
"名称"
=>
1
,
"学号"
=>
20070101
,
"副学号"
=>
1
,
"meta字段1"
=>
"meta1"
,
"meta字段2"
=>
"metaA"
,
"累加值"
=>
1
})
end
it
'Excel::Pagination'
do
pagination
=
TalltyImportExport
::
Excel
::
Pagination
.
new
([
1
,
2
,
3
,
4
,
5
,
6
],
page:
2
,
per_page:
2
)
expect
(
pagination
.
count
).
to
eq
(
6
)
expect
(
pagination
.
current_page
).
to
eq
(
2
)
expect
(
pagination
.
total_pages
).
to
eq
(
3
)
expect
(
pagination
).
to
eq
([
3
,
4
])
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