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
92299ebd
Commit
92299ebd
authored
Mar 02, 2021
by
任晓松
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
2c6387eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
4 deletions
+10
-4
center-order/app/base/service/impl/dbcorder/orderinfoSve.js
+5
-2
center-order/app/base/service/impl/dbneed/needinfoSve.js
+5
-2
No files found.
center-order/app/base/service/impl/dbcorder/orderinfoSve.js
View file @
92299ebd
...
...
@@ -2187,8 +2187,11 @@ class OrderInfoService extends ServiceBase {
personMobile:"联系人电话",
price:"8.80" //价格 ps: 订单会有这个字段
}*/
let
sql
=
'select channelOrderNo from c_order_info where uapp_id = 53'
;
let
ret
=
await
this
.
customQuery
(
sql
);
let
sql
=
'select channelOrderNo from c_order_info where uapp_id = :uapp_id'
;
let
whereParam
=
{
uapp_id
:
uapp_id
}
let
ret
=
await
this
.
customQuery
(
sql
,
whereParam
);
let
existIds
=
ret
.
map
(
item
=>
{
return
item
.
channelOrderNo
;
})
...
...
center-order/app/base/service/impl/dbneed/needinfoSve.js
View file @
92299ebd
...
...
@@ -372,8 +372,11 @@ class NeedinfoService extends ServiceBase {
let
needsArr
=
[];
let
arr
=
pobj
.
actionBody
.
needsArr
;
let
uapp_id
=
pobj
.
actionBody
.
uapp_id
;
let
sql
=
'select channelNeedNo from n_need_info where uapp_id = 53'
;
let
ret
=
await
this
.
customQuery
(
sql
);
let
sql
=
'select channelNeedNo from n_need_info where uapp_id = :uapp_id'
;
let
whereParam
=
{
uapp_id
:
uapp_id
}
let
ret
=
await
this
.
customQuery
(
sql
,
whereParam
);
let
existIds
=
ret
.
map
(
item
=>
{
return
item
.
channelNeedNo
;
})
...
...
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