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
1507ea8c
Commit
1507ea8c
authored
Jan 09, 2020
by
宋毅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tj
parent
d9ccae62
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
igirl-channel/app/base/api/impl/action/receiveData.js
+1
-1
igirl-channel/app/base/api/impl/action/tmOrder.js
+5
-5
No files found.
igirl-channel/app/base/api/impl/action/receiveData.js
View file @
1507ea8c
...
...
@@ -29,7 +29,7 @@ class ReceiveDataAPI extends APIBase {
if
(
!
pobj
.
actionType
)
{
return
system
.
getResult
(
null
,
"actionType参数不能为空"
);
}
var
result
=
await
this
.
opActionProcess
(
pobj
.
actionProcess
,
pobj
.
actionType
,
pobj
.
actionBody
,
req
);
var
result
=
await
this
.
opActionProcess
(
pobj
.
actionProcess
,
pobj
.
actionType
,
pobj
.
actionBody
,
pobj
,
req
);
// var result = null;
// switch (pobj.actionProcess) {
// case "jd"://京东
...
...
igirl-channel/app/base/api/impl/action/tmOrder.js
View file @
1507ea8c
...
...
@@ -30,7 +30,7 @@ class TmOrderAPI extends APIBase {
if
(
!
pobj
.
actionType
)
{
return
system
.
getResult
(
null
,
"actionType参数不能为空"
);
}
var
result
=
await
this
.
opActionProcess
(
pobj
.
actionProcess
,
pobj
.
actionType
,
pobj
.
actionBody
,
req
);
var
result
=
await
this
.
opActionProcess
(
pobj
.
actionProcess
,
pobj
.
actionType
,
pobj
.
actionBody
,
pobj
,
req
);
// var result = null;
// switch (pobj.actionProcess) {
// case "jd"://京东
...
...
@@ -229,20 +229,20 @@ class TmOrderAPI extends APIBase {
break
;
case
"getCAProductDetail"
:
//根据渠道产品码获取产品详情 ---应用中心
// opResult = await this.appProductSve.findByChannelItemCode(action_body);
pobj
[
"app"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
pobj
[
"app"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
opResult
=
await
this
.
appProductSve
.
getProductDetailByCode
(
pobj
);
break
;
case
"getCAProductListByTypeOneCode"
:
//获取产品列表(根据产品一类编码获取) ---应用中心
// opResult = await this.appProductSve.findByProductOneTypeCode(action_body);
pobj
[
"app"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
opResult
=
await
this
.
appProductSve
.
findByTypeOneCode
(
pobj
);
break
;
case
"getCAProductListByTypeCode"
:
//获取产品列表(根据父类产品编码获取) ---应用中心
// opResult = await this.appProductSve.findByProductTypeCode(action_body);
pobj
[
"app"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
pobj
[
"appInfo"
]
=
req
.
appInfo
;
opResult
=
await
this
.
appProductSve
.
findByTypeCode
(
pobj
);
break
;
case
"subGsbOrderInfo"
:
//提交公司宝订单信息
...
...
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