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
ce9fe6a2
Commit
ce9fe6a2
authored
Jan 16, 2020
by
孙亚楠
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dd
parent
77789350
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
12 deletions
+13
-12
xggsve-order/app/base/api/impl/op/action.js
+11
-10
xggsve-order/app/base/db/impl/order/oorderdeliverDao.js
+2
-2
No files found.
xggsve-order/app/base/api/impl/op/action.js
View file @
ce9fe6a2
...
...
@@ -93,6 +93,16 @@ class ActionAPI extends APIBase {
case
"signing"
:
opResult
=
await
this
.
obusinessmenSve
.
signing
(
action_body
);
break
;
// 统计数据
// case "statTransData":
// opResult = await this.oorderSve.apiStatTransData(action_body);
// break;
// case "statBusinessData":
// opResult = await this.iborderSve.apiStatBusinessData(action_body);
// break;
// case "statDeliverData":
// opResult = await this.oorderSve.apiStatDeliverData(action_body);
// break;
//******************************************************************** */
...
...
@@ -218,16 +228,7 @@ class ActionAPI extends APIBase {
// opResult = await this.businessmenSve.apiCompleteMapByCreditCodes(action_body);
// break;
//
// // 统计数据
// case "statTransData":
// opResult = await this.iborderSve.apiStatTransData(action_body);
// break;
// case "statBusinessData":
// opResult = await this.iborderSve.apiStatBusinessData(action_body);
// break;
// case "statDeliverData":
// opResult = await this.iborderdeliverSve.apiStatDeliverData(action_body);
// break;
default
:
opResult
=
system
.
getResult
(
null
,
"action_type参数错误"
);
...
...
xggsve-order/app/base/db/impl/order/oorderdeliverDao.js
View file @
ce9fe6a2
...
...
@@ -48,7 +48,7 @@ class OorderdeliverDao extends Dao {
if
(
!
ids
||
ids
.
length
==
0
)
{
return
[];
}
let
sql
=
`SELECT * FROM o_order_deliver WHERE
deliver_
id in (:deliverIdList)`
;
let
sql
=
`SELECT * FROM o_order_deliver WHERE id in (:deliverIdList)`
;
return
await
this
.
customQuery
(
sql
,
{
deliverIdList
:
ids
});
}
...
...
@@ -56,7 +56,7 @@ class OorderdeliverDao extends Dao {
let
list
=
await
this
.
listByIds
(
params
);
var
result
=
{};
for
(
let
item
of
list
)
{
result
[
item
.
deliver_
id
]
=
item
;
result
[
item
.
id
]
=
item
;
}
return
result
;
}
...
...
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