Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
周伟奇
/
bmw-ocr
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
95966861
authored
2020-11-09 22:57:13 +0800
by
周伟奇
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix bug
1 parent
f5ed232c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
src/apps/doc/consts.py
src/apps/doc/ocr/wb.py
src/apps/doc/consts.py
View file @
9596686
...
...
@@ -897,7 +897,9 @@ LICENSE_CLASSIFY_SET_1 = {IC_CLASSIFY, VAT_CLASSIFY, MVC_CLASSIFY, MVI_CLASSIFY}
LICENSE_CLASSIFY_SET_2
=
{
BL_CLASSIFY
,
UCI_CLASSIFY
,
EEP_CLASSIFY
,
DL_CLASSIFY
,
PP_CLASSIFY
,
BC_CLASSIFY
}
MS_CLASSIFY
=
21
MS_ERROR_COL
=
(
5
,
6
)
WECHART_CLASSIFY
=
12
WECHART_ERROR_COL
=
(
1
,
2
)
WECHART_HEADERS_MAPPING
=
copy
.
deepcopy
(
HEADERS_MAPPING
)
WECHART_HEADERS_MAPPING
.
update
(
{
...
...
src/apps/doc/ocr/wb.py
View file @
9596686
...
...
@@ -357,9 +357,9 @@ class BSWorkbook(Workbook):
for
row_value
in
ws
.
iter_rows
(
min_row
=
part
[
1
],
max_row
=
part
[
2
],
values_only
=
True
):
if
any
(
row_value
):
if
classify
==
consts
.
WECHART_CLASSIFY
:
row_value
=
self
.
wechart_func
(
row_value
,
1
,
2
)
row_value
=
self
.
wechart_func
(
row_value
,
*
consts
.
WECHART_ERROR_COL
)
elif
classify
==
consts
.
MS_CLASSIFY
:
row_value
=
self
.
wechart_func
(
row_value
,
5
,
6
)
row_value
=
self
.
wechart_func
(
row_value
,
*
consts
.
MS_ERROR_COL
)
new_ws
.
append
(
row_value
)
# 3.2.提取信息、高亮
amount_mapping
=
{}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment