Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zhichan
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
蒋勇
zhichan
Commits
9506a7b8
Commit
9506a7b8
authored
Feb 29, 2020
by
王昆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gsb
parent
61ebcf44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
bpo-web/app/base/controller/impl/esettleCtl.js
+10
-0
bpo-web/app/base/service/impl/esettleSve.js
+7
-0
No files found.
bpo-web/app/base/controller/impl/esettleCtl.js
View file @
9506a7b8
...
@@ -295,6 +295,16 @@ class EsettleCtl extends CtlBase {
...
@@ -295,6 +295,16 @@ class EsettleCtl extends CtlBase {
params
.
companyNames
=
nameList
;
params
.
companyNames
=
nameList
;
var
page
=
await
this
.
service
.
settlePage
(
params
);
var
page
=
await
this
.
service
.
settlePage
(
params
);
if
(
page
.
rows
)
{
for
(
let
row
of
page
.
rows
)
{
row
.
bankno
=
row
.
bank_no
;
if
(
row
.
bank_no
)
{
if
(
row
.
bank_no
>
4
)
{
row
.
bank_no
=
"************"
+
row
.
bank_no
.
substring
(
row
.
bank_no
.
length
-
4
);
}
}
}
}
return
system
.
getResult2
(
page
);
return
system
.
getResult2
(
page
);
}
catch
(
e
)
{
}
catch
(
e
)
{
console
.
log
(
e
);
console
.
log
(
e
);
...
...
bpo-web/app/base/service/impl/esettleSve.js
View file @
9506a7b8
...
@@ -451,6 +451,13 @@ class EsettleService extends ServiceBase {
...
@@ -451,6 +451,13 @@ class EsettleService extends ServiceBase {
if
(
item
.
pay_complete_time
)
{
if
(
item
.
pay_complete_time
)
{
item
.
pay_complete_time
=
moment
(
item
.
pay_complete_time
).
subtract
(
8
,
"hours"
).
format
(
"YYYY-MM-DD HH:mm"
);
item
.
pay_complete_time
=
moment
(
item
.
pay_complete_time
).
subtract
(
8
,
"hours"
).
format
(
"YYYY-MM-DD HH:mm"
);
}
}
item
.
idno
=
item
.
id_no
;
if
(
item
.
id_no
)
{
let
id_no_show
=
item
.
id_no
.
substring
(
item
.
id_no
.
length
-
4
);
item
.
id_no
=
"**************"
+
id_no_show
;
}
}
}
}
else
{
}
else
{
list
=
[]
list
=
[]
...
...
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