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
297f47e6
authored
2022-11-29 14:14:54 +0800
by
王聪
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
pre settlement 接口增加fsm 字段
1 parent
22f495d3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
src/apps/doc/views.py
src/apps/doc/views.py
View file @
297f47e
...
...
@@ -244,9 +244,9 @@ se_compare_content = {
'customerType'
:
fields
.
Str
(
required
=
True
,
validate
=
validate
.
OneOf
(
consts
.
CUSTOMER_TYPE
)),
"firstSubmmisonDate"
:
CustomDate
(
required
=
True
),
'propertyDocumentPolicy'
:
fields
.
Str
(
required
=
False
,
validate
=
validate
.
Length
(
max
=
16
)),
'fsmFlag'
:
fields
.
Int
(
required
=
False
),
'fsmSpecialCar'
:
fields
.
Str
(
required
=
False
),
'fsmBestPrice'
:
CustomDecimal
(
required
=
False
),
'fsmFlag'
:
fields
.
Boolean
(
required
=
False
),
'fsmSpecialCar'
:
fields
.
Boolean
(
required
=
False
),
'fsmBestPrice'
:
fields
.
Boolean
(
required
=
False
),
'isAutoSettlement'
:
fields
.
Boolean
(
required
=
False
),
'individualCusInfo'
:
fields
.
List
(
fields
.
Nested
(
se_individual_args
),
...
...
@@ -817,9 +817,9 @@ class SECompareView(GenericView, PreSEHandler):
bank_verify
=
content
.
get
(
'bankInfo'
,
{})
.
get
(
'bankVerificationStatus'
,
''
)
# fsm
fsm_flag
=
content
.
get
(
'fsmFlag'
,
0
)
fsm_special_car
=
content
.
get
(
'fsmSpecialCar'
,
''
)
fsm_best_price
=
content
.
get
(
'fsmBestPrice'
,
0
)
fsm_flag
=
content
.
get
(
'fsmFlag'
,
False
)
fsm_special_car
=
content
.
get
(
'fsmSpecialCar'
,
False
)
fsm_best_price
=
content
.
get
(
'fsmBestPrice'
,
False
)
# 存库, 用于银行卡比对
try
:
...
...
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