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
22f495d3
authored
2022-11-28 18:57:39 +0800
by
王聪
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
pre settlement 接口增加fsm 字段
1 parent
e1b816c0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
src/apps/doc/views.py
src/apps/doc/views.py
View file @
22f495d
...
...
@@ -244,6 +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
),
'isAutoSettlement'
:
fields
.
Boolean
(
required
=
False
),
'individualCusInfo'
:
fields
.
List
(
fields
.
Nested
(
se_individual_args
),
...
...
@@ -813,6 +816,11 @@ class SECompareView(GenericView, PreSEHandler):
uniq_seq
=
content
.
get
(
'uniqSeq'
)
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
)
# 存库, 用于银行卡比对
try
:
bank_class
=
HILbankVerification
if
business_type
in
consts
.
HIL_SET
else
AFCbankVerification
...
...
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